Difference between revisions of "IPv6: Cisco: BGP enabling feature"

From OnnoWiki
Jump to navigation Jump to search
(Created page with " enable configure terminal router bgp as-number no bgp default ipv4-unicast bgp router-id ip-address ==Pranala Menarik== * TCP/IP: Advanced Routing * Quag...")
 
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
 
   bgp router-id ip-address
 
   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
  
  

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 


Pranala Menarik