科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网网络频道隧道模式下IPv6穿越IPv4网络的技术分析与实现 (2)

隧道模式下IPv6穿越IPv4网络的技术分析与实现 (2)

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

IPv6/IPv4 隧道技术的目的是利用现有的IPv4设施来为IPv6主机服务,使得各个分散的IPv6“孤岛”可以跨越IPv4网络相互通信。在IPv6封包通过 IPv4网络时,无论哪种隧道机制都是使用了一个“封包——拆包”过程,即处于发送端的隧道端点将该IPv6封包封装在IPv4包中,将此IPv6包视为 IPv4的负载数据,

来源:论坛整理 2008年11月6日

关键字: 路由器 路由交换 网络技术

  • 评论
  • 分享微博
  • 分享邮件
 在R2、R4上启用静态路由,使网络连同

    router2(config)#ip route 3.3.3.0 255.255.255.0 2.2.2.2

    router4(config)#ip route 2.2.2.0 255.255.255.0 3.3.3.2


    ping一下

    router2#ping 3.3.3.1

    Type escape sequence to abort.

    Sending 5, 100-byte ICMP Echos to 3.3.3.1, timeout is 2 seconds:

    !!!!!

    router4#ping 2.2.2.1

    Type escape sequence to abort.

    Sending 5, 100-byte ICMP Echos to 2.2.2.1, timeout is 2 seconds:

    !!!!!

    呵呵 都通了!

 

    好了,现在开始打隧道了

    分别在R2、R4上

    router2(config)#interface tunnel 0

    router2(config-if)#no ip address

    router2(config-if)#ipv6 address 2001:250:803:1::1/64

    router2(config-if)#tunnel source 2.2.2.1 (R2 e0/1)

    router2(config-if)#tunnel destination 3.3.3.1 (R4 e0/0)

    router2(config-if)#tunnel mode ipv6ip

 

    router4(config)#interface tunnel 1

    router4(config-if)#no ip address

    router4(config-if)#ipv6 address 2001:250:803:1::2/64

    router4(config-if)#tunnel source 3.3.3.1  (R4 e0/0)

    router4(config-if)#tunnel destination 2.2.2.1  (R2 e0/1)

    router4(config-if)#tunnel mode ipv6ip

 

    验证一下

    router2#ping 2001:250:803:1::2

 

    Type escape sequence to abort.

    Sending 5, 100-byte ICMP Echos to 2001:250:803:1::2, timeout is 2 seconds:

    !!!!!

    Success rate is 100 percent (5/5), round-trip min/avg/max = 52/223/376 ms

    router4#ping 2001:250:803:1::1

 

    Type escape sequence to abort.

    Sending 5, 100-byte ICMP Echos to 2001:250:803:1::1, timeout is 2 seconds:

    !!!!!

    Success rate is 100 percent (5/5), round-trip min/avg/max = 52/205/396 ms

    Ok 了

 

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章