Difference between revisions of "IPv6: Cisco: BGP enabling feature"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
Onnowpurbo (talk | contribs)  | 
				Onnowpurbo (talk | contribs)   | 
				||
| 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 11: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