IPv6: Cisco: BGP enabling feature: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs) No edit summary |
Onnowpurbo (talk | contribs) No edit summary |
||
| Line 16: | Line 16: | ||
enable | |||
configure terminal | |||
ipv6 unicast-routing | |||
interface ethernet1/0 | |||
ip address 192.168.99.1 255.255.255.0 | |||
ipv6 address 2001:1::1/64 | |||
no shutdown | |||
exit | |||
interface ethernet1/1 | |||
ip address 192.168.10.1 255.255.255.0 | |||
ipv6 address 2001:10::1/64 | |||
no shutdown | |||
exit | |||
end | |||
configure terminal | |||
router bgp 10 | |||
! no bgp default ipv4-unicast | |||
bgp router-id 192.168.99.1 | |||
network 192.168.10.0 mask 255.255.255.0 | |||
neighbor 2001:1::2 remote-as 20 | |||
address-family ipv6 unicast | |||
network 2001:10::/64 | |||
neighbor 2001:1::2 activate | |||
end | |||
Latest revision as of 04:55, 14 January 2019
enable configure terminal router bgp as-number no bgp default ipv4-unicast bgp router-id ip-address
enable
configure terminal
router bgp as-number
neighbor {ip-address | ipv6-address [%] | peer-group-name} remote-as autonomous-system-number [alternate-as autonomous-system-number ...]
address-family ipv6 [unicast | multicast]
neighbor {ip-address | peer-group-name | ipv6-address %} activate
enable
configure terminal
ipv6 unicast-routing
interface ethernet1/0
ip address 192.168.99.1 255.255.255.0
ipv6 address 2001:1::1/64
no shutdown
exit
interface ethernet1/1
ip address 192.168.10.1 255.255.255.0
ipv6 address 2001:10::1/64
no shutdown
exit
end
configure terminal
router bgp 10
! no bgp default ipv4-unicast
bgp router-id 192.168.99.1
network 192.168.10.0 mask 255.255.255.0
neighbor 2001:1::2 remote-as 20
address-family ipv6 unicast
network 2001:10::/64
neighbor 2001:1::2 activate
end