Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| technik:proxmox:evpn-test [27.04.2024 - 19:41] – angelegt nrb | technik:proxmox:evpn-test [27.04.2024 - 19:44] (aktuell) – nrb | ||
|---|---|---|---|
| Zeile 66: | Zeile 66: | ||
| snat 1 | snat 1 | ||
| </ | </ | ||
| + | |||
| + | ===== FRR ===== | ||
| + | |||
| + | In / | ||
| + | |||
| + | ===== BGP-Router ===== | ||
| + | |||
| + | < | ||
| + | protocol bgp pvetest01 { | ||
| + | local 10.99.42.104 as 64512; | ||
| + | neighbor 10.99.42.101 as 65100; | ||
| + | hold time 90; # Default is 240 | ||
| + | |||
| + | ipv4 { | ||
| + | import all; | ||
| + | export none; | ||
| + | }; | ||
| + | |||
| + | ipv6 { | ||
| + | import all; | ||
| + | export none; | ||
| + | }; | ||
| + | } | ||
| + | |||
| + | # BGP example, explicit name ' | ||
| + | protocol bgp pvetest02 { | ||
| + | local 10.99.42.104 as 64512; | ||
| + | neighbor 10.99.42.102 as 65200; | ||
| + | hold time 90; # Default is 240 | ||
| + | |||
| + | ipv4 { | ||
| + | import all; | ||
| + | export none; | ||
| + | }; | ||
| + | |||
| + | ipv6 { | ||
| + | import all; | ||
| + | export none; | ||
| + | }; | ||
| + | } | ||
| + | </ | ||
| + | |||