f250695f4c31186973abb569bfbdd396730d3435
howto/vyos1.4.x.md
| ... | ... | @@ -195,15 +195,9 @@ MP-BGP peerings over IPv6 are recommended on DN42. |
| 195 | 195 | ``` |
| 196 | 196 | # For these examples, your peer's link-local address is fe80::4242 |
| 197 | 197 | |
| 198 | -set protocols bgp neighbor fe80::4242 interface v6only remote-as '4242424242' |
|
| 199 | -set protocols bgp neighbor fe80::4242 remote-as '4242424242' |
|
| 200 | -set protocols bgp neighbor fe80::4242 interface source-interface 'wg4242424242' |
|
| 201 | 198 | set protocols bgp neighbor fe80::4242 update-source 'wg4242424242' |
| 202 | 199 | set protocols bgp neighbor fe80::4242 description 'FriendlyNet' |
| 203 | 200 | |
| 204 | -# Set the RFC 9234 role to "peer". |
|
| 205 | -set protocols bgp neighbor fe80::4242 local-role peer |
|
| 206 | - |
|
| 207 | 201 | set protocols bgp neighbor fe80::4242 capability extended-nexthop |
| 208 | 202 | |
| 209 | 203 | set protocols bgp neighbor fe80::4242 address-family ipv4-unicast |
| ... | ... | @@ -213,8 +207,6 @@ set protocols bgp neighbor fe80::4242 address-family ipv6-unicast |
| 213 | 207 | #### Option 2: BGP (no Multi Protocol) - no Extended Next-Hop |
| 214 | 208 | ``` |
| 215 | 209 | # First, we set the ipv6 part. |
| 216 | -set protocols bgp neighbor fe80::4242 interface remote-as '4242424242' |
|
| 217 | -set protocols bgp neighbor fe80::4242 interface source-interface 'wg4242424242' |
|
| 218 | 210 | set protocols bgp neighbor fe80::4242 remote-as '4242424242' |
| 219 | 211 | set protocols bgp neighbor fe80::4242 address-family ipv6-unicast |
| 220 | 212 | set protocols bgp neighbor fe80::4242 description 'FriendlyNet' |
| ... | ... | @@ -265,7 +257,6 @@ Setting up peer-groups might help standardize multiple peerings: |
| 265 | 257 | set protocols bgp peer-group dn42 address-family ipv4-unicast |
| 266 | 258 | set protocols bgp peer-group dn42 address-family ipv6-unicast |
| 267 | 259 | set protocols bgp peer-group dn42 capability extended-nexthop |
| 268 | -set protocols bgp peer-group dn42 local-role peer |
|
| 269 | 260 | |
| 270 | 261 | set protocols bgp neighbor fe80::4242 peer-group dn42 |
| 271 | 262 |