溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

IPV4和IPV6之間相互通信

發(fā)布時間:2020-09-09 18:11:45 來源:網(wǎng)絡(luò) 閱讀:486 作者:gouzhongxing 欄目:安全技術(shù)

網(wǎng)絡(luò)拓?fù)洌?/p>

IPV4和IPV6之間相互通信 

 

R1:  
ipv6 unicast-routing                                ===========開啟ipv6

int f0/0  
ip address 192.168.12.1 255.255.255.0    
no shutdown    
interface Loopback0    
ipv6 address 2012:2012::1/64 
ip route 192.168.23.0 255.255.255.0 192.168.12.2    ============配置靜態(tài)路由

R2:

interface FastEthernet0/0  
ip address 192.168.12.2 255.255.255.0    
interface FastEthernet0/1    
ip address 192.168.23.2 255.255.255.0

R3:

ipv6 unicast-routing                            ===============開啟ipv6  
interface FastEthernet0/1    
ip address 192.168.23.3 255.255.255.0    
interface Loopback0    
ipv6 address 2014:2014::3/64

ip route 192.168.12.0 255.255.255.0 192.168.23.2  =============配置靜態(tài)路由

測試:

R1#ping 192.168.23.3

Type escape sequence to abort.  
Sending 5, 100-byte ICMP Echos to 192.168.23.3, timeout is 2 seconds:    
!!!!!    
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/56/76 ms    
R1#

R3#ping 192.168.12.1

Type escape sequence to abort.  
Sending 5, 100-byte ICMP Echos to 192.168.12.1, timeout is 2 seconds:    
!!!!!    
Success rate is 100 percent (5/5), round-trip min/avg/max = 36/65/132 ms    
R3#

配置tunnel隧道

R1:  
ipv6 router ospf 1            ==========啟用OSPFV3    
router-id 1.1.1.1             ==========必須手動配置router-id

interface Tunnel1  
no ip address    
ipv6 address 2001::1/64    
ipv6 ospf 1 area 0    
tunnel source 192.168.12.1    
tunnel destination 192.168.23.3    
tunnel mode ipv6ip    
!

interface Loopback0  
ipv6 ospf 1 area 0

R3:  
ipv6 router ospf 1    
router-id 3.3.3.3

interface Tunnel1  
no ip address    
ipv6 address 2001::2/64    
ipv6 ospf 1 area 0    
tunnel source 192.168.23.3    
tunnel destination 192.168.12.1    
tunnel mode ipv6ip    
!    
interface Loopback0    
ipv6 ospf 1 area 0

測試:

R1#ping 2014:2014::3 source 2012:2012::1

Type escape sequence to abort.  
Sending 5, 100-byte ICMP Echos to 2014:2014::3, timeout is 2 seconds:    
Packet sent with a source address of 2012:2012::1    
!!!!!    
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/64/100 ms    
R1#

R3#ping 2012:2012::1 source 2014:2014::3

Type escape sequence to abort.  
Sending 5, 100-byte ICMP Echos to 2012:2012::1, timeout is 2 seconds:    
Packet sent with a source address of 2014:2014::3    
!!!!!    
Success rate is 100 percent (5/5), round-trip min/avg/max = 36/59/104 ms    
R3#

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI