...
Info |
---|
For IPv6 BGP configuration, the following command must be configured to enable the IPv6 address family capability and exchange of information specific to an IPv6 address family with a BGP neighbor. set protocols bgp [vrf <vrf-name>] {neighbor <ip>| peer-group <peer-group> |interface <interface>} {ipv6-unicast|ipv6-labeled-unicast} activate true |
Configuring a BGP Router ID
...
Code Block |
---|
admin@XorPlus# set protocols bgp peer-group Leaf1 admin@XorPlus# set protocols bgp neighborpeer-group leaf1Leaf1 remote-as external admin@XorPlus# set protocols bgp neighbor 10.10.0.1 peer-group Leaf1 admin@XorPlus# set protocols bgp neighbor 10.10.0.12 peer-group Leaf1 admin@XorPlus# commit |
...
BGP cannot discover routes and needs to import routes such as IGP routes into BGP routing tables so that the imported routes can be transmitted within an AS or between ASs. BGP imports routes in either redistribute or network mode.
Info | ||
---|---|---|
| ||
If you do not want to control the route exchanging via use BGP policies, you need to disable feature ebgp-requires-policy manually, or the route cannot be correctly exchanged. For details about ebgp-requires-policy, see page Configuring ebgp-requires-policy. |
Redistribute Mode
In redistribute mode, BGP imports IGP routes, including RIP, OSPF, and IS-IS routes, into BGP routing tables based on protocol type. To ensure the validity of imported IGP routes, BGP can also import static routes and direct routes in redistribute mode.
...