博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从IPV4到IPV6之手工隧道
阅读量:6811 次
发布时间:2019-06-26

本文共 1093 字,大约阅读时间需要 3 分钟。

实验目的:

通过本实验了解两个IPV6网络穿越IPV4网络的过程

实验拓扑:

实验说明:

R1--R2之间是IPV4骨干网,R3要通过IPV4骨干网和R4通信。

配置:

R1:

ipv6 unicast-routing
interface Tunnel1
 no ip address
 ipv6 address 2003::1/64
 ipv6 ospf 100 area 0
 tunnel source FastEthernet0/0
 tunnel destination 192.168.12.2
 tunnel mode ipv6ip
interface FastEthernet0/0
 ip address 192.168.12.1 255.255.255.0
interface FastEthernet0/1
 ipv6 address 2001::1/64
 ipv6 ospf 100 area 0
!
ipv6 router ospf 100
 router-id 1.1.1.1
R2:
ipv6 unicast-routing
interface Tunnel2
 no ip address
 ipv6 address 2003::2/64
 ipv6 ospf 100 area 0
 tunnel source FastEthernet0/0
 tunnel destination 192.168.12.1
 tunnel mode ipv6ip

interface FastEthernet0/0

 ip address 192.168.12.2 255.255.255.0
interface FastEthernet0/1
 ipv6 address 2000::2/64
 ipv6 ospf 100 area 0

ipv6 router ospf 100

 router-id 2.2.2.2
R3:
ipv6 unicast-routing
interface FastEthernet0/1
 ipv6 address 2001::3/64
 ipv6 ospf 100 area 0
ipv6 router ospf 100
 router-id 3.3.3.3
R4:
ipv6 unicast-routing
interface FastEthernet0/1
 ipv6 address 2000::4/64
 ipv6 ospf 100 area 0
ipv6 router ospf 100
 router-id 4.4.4.4

分析:

通过在R1--R2间抓包分析

 

验证:

 

 

转载地址:http://qcwzl.baihongyu.com/

你可能感兴趣的文章
C# 合并及拆分Word文档
查看>>
Liferay中actionURL能够执行后台方法 ,但是页面不跳转问题解决方案
查看>>
libyuv 编译for ios
查看>>
加密安装Kali Linux条件
查看>>
关于Cocos2d-x中UI按钮的定义
查看>>
IPTables系列:如何配置Ubuntu 14.04中的IPTables防火墙
查看>>
swift:自定义UICollectionViewFlowLayout
查看>>
转】MYSQL性能调优与架构设计之select count(*)的思考
查看>>
MFC Initinstance中DoModal()返回-1
查看>>
抢红包的红包生成算法
查看>>
1 构建Mysql+heartbeat+DRBD+LVS集群应用系统系列之DRBD的搭建
查看>>
升级到 PHP-7 遇到的坑 及 经验分享
查看>>
Android 关于ListView中adapter调用notifyDataSetChanged无效的原因
查看>>
redis哨兵配置
查看>>
VC++/MFC 最常用宏和指令
查看>>
外国javascript资源搜索
查看>>
DataTable中数据针对某列数据去重
查看>>
ASP.NET MVC防范CSRF最佳实践
查看>>
[LintCode] Max Points on a Line 共线点个数
查看>>
GIt的基本知识
查看>>