首页 > 学院 > 网络通信 > 正文

IPv6 over an IPv4 Tunnel over MPLS

2019-11-04 23:55:13
字体:
来源:转载
供稿:网友

IPv6 over an IPv4 Tunnel over MPLS

这个方法是在《Deploy ipv6 Network》中看到的,有个问题,当2个CE都是在as 10中的话,那么因为bgp的soo特性路由是不能正常被加入bgp路由表的。在ipv4中可以通过as-override来解决,但是ipv6中根本没这个参数,暂时还不知道如何解决。
R1

hostname R1
!
ipv6 unicast-routing
!
interface Loopback0
ip address 1.1.1.1 255.255.255.255
ipv6 address FC00:1::1/128
ipv6 enable
!
interface Ethernet1/2
no ip address
duplex full
ipv6 address FC00:12::1/32
ipv6 enable
!
router bgp 10
no synchronization
bgp log-neighbor-changes
neighbor FC00:12::2 remote-as 100
neighbor FC00:12::2 update-source Ethernet1/2
no auto-summary
!
address-family ipv6
neighbor FC00:12::2 activate
network FC00:1::1/128
exit-address-family

R2
hostname R2
!
ip cef
!
ipv6 unicast-routing
mpls label PRotocol ldp
!
interface Loopback0
ip address 2.2.2.2 255.255.255.255
!
interface Tunnel0
no ip address
ipv6 address FC00:24::2/32
ipv6 enable
tunnel source 2.2.2.2
tunnel destination 4.4.4.4
tunnel mode ipv6ip
!
interface Ethernet1/1
no ip address
duplex full
ipv6 address FC00:12::2/32
ipv6 enable
!
interface Ethernet1/3
ip address 192.168.23.2 255.255.255.0
duplex full
mpls ip
!
router ospf 100
router-id 2.2.2.2
log-adjacency-changes
redistribute connected subnets
redistribute static subnets
network 192.168.0.0 0.0.255.255 area 0
!
router bgp 100
bgp router-id 2.2.2.2
bgp log-neighbor-changes
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback0
neighbor FC00:12::1 remote-as 10
neighbor FC00:12::1 update-source Ethernet1/1
neighbor FC00:24::4 remote-as 100
neighbor FC00:24::4 update-source Tunnel0
!
address-family ipv4
neighbor 4.4.4.4 activate
neighbor 4.4.4.4 send-community both
no neighbor FC00:12::1 activate
no neighbor FC00:24::4 activate
no auto-summary
no synchronization
exit-address-family
!
address-family vpnv4
neighbor 4.4.4.4 activate
neighbor 4.4.4.4 send-community both
exit-address-family
!
address-family ipv6
neighbor FC00:12::1 activate
neighbor FC00:12::1 default-originate
neighbor FC00:24::4 activate
exit-address-family
!
ipv6 route ::/0 Tunnel0
!
mpls ldp router-id Loopback0
QQread.com 推出Windows2003教程 win2003安装介绍 win2003网络优化 win2003使用技巧 win2003系统故障 服务器配置 专家答疑


更多的请看:http://www.qqread.com/windows/2003/index.Html

R3
hostname R3
!
ip cef
!
mpls label protocol ldp
!
interface Loopback0
ip address 3.3.3.3 255.255.255.255
!
interface Ethernet1/2
ip address 192.168.23.3 255.255.255.0
duplex full
mpls ip
!
interface Ethernet1/4
ip address 192.168.34.3 255.255.255.0
duplex full
mpls ip  
!
router ospf 100
router-id 3.3.3.3
log-adjacency-changes
redistribute connected subnets
redistribute static subnets
network 192.168.0.0 0.0.255.255 area 0
!
mpls ldp router-id Loopback0

R4
hostname R4
!
ip cef
!
ipv6 unicast-routing
mpls label protocol ldp
!
interface Loopback0
ip address 4.4.4.4 255.255.255.255
!
interface Tunnel0
no ip address
ipv6 address FC00:24::4/32
ipv6 enable
tunnel source 4.4.4.4
tunnel destination 2.2.2.2
tunnel mode ipv6ip
!
interface Ethernet1/3
ip address 192.168.34.4 255.255.255.0
duplex full
mpls ip
!
interface Ethernet1/5
no ip address
duplex full
ipv6 address FC00:45::4/32
ipv6 enable
!
router ospf 100
router-id 4.4.4.4
log-adjacency-changes
redistribute connected subnets
redistribute static subnets
network 192.168.0.0 0.0.255.255 area 0
!
router bgp 100
no synchronization
bgp router-id 4.4.4.4
bgp log-neighbor-changes
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback0
neighbor 2.2.2.2 send-community both
neighbor FC00:24::2 remote-as 100
neighbor FC00:24::2 update-source Tunnel0
neighbor FC00:45::5 remote-as 11
neighbor FC00:45::5 update-source Ethernet1/5
no auto-summary
!        
address-family vpnv4
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
exit-address-family
!
address-family ipv6
neighbor FC00:24::2 activate
neighbor FC00:45::5 activate
neighbor FC00:45::5 default-originate
no synchronization
exit-address-family
!
ipv6 route ::/0 Tunnel0
!
mpls ldp router-id Loopback0

R5
hostname R5
!
ipv6 unicast-routing
!
interface Loopback0
ip address 5.5.5.5 255.255.255.255
ipv6 address FC00:5::5/128
ipv6 enable
!
interface Ethernet1/4
no ip address
duplex full
ipv6 address FC00:45::5/32
ipv6 enable
!
router bgp 11
no synchronization
bgp log-neighbor-changes
neighbor FC00:45::4 remote-as 100
neighbor FC00:45::4 update-source Ethernet1/4
no auto-summary
!
address-family ipv6
neighbor FC00:45::4 activate
network FC00:5::5/128
exit-address-family



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表