隧道6in4 和隧道6to4(GNS3)
隧道6in4实验配置
拓扑图
|
Device |
Interface |
IP Address(IPv6) |
|
R1 |
F 0/0 |
10.1.81.1 |
|
F 0/1 |
2001:db8:cafe:81::10 |
|
|
R2 |
F 0/0 |
10.81.1.2 |
|
F 0/1 |
172.81.1.2 |
|
|
R3 |
F 0/0 |
172.81.1.3 |
|
F 0/1 |
2001:DB8:ACE:81::20 |
|
|
R4 |
F 0/0 |
2001:db8:cafe:81::40 |
|
R5 |
F 0/0 |
2001:DB8:ACE:81::50 |
手工隧道是双向点到点隧道,但两台边界路由器之间的纯IPv4网络不必是点到点网络,且IPv4网络一定要ping通,手工隧道可以用静态路由或者动态路由,我这里使用ospf动态路由配置。
R1与R3同理
R1(config)#int f 0/0
R1(config-if)#ip add 10.81.1.1 255.255.255.0
R1(config-if)#ip ospf 1 area 0
R1(config-if)#no shut
R1(config-if)#int lo0
R1(config-if)#ip add 1.1.1.1 255.255.255.255
R1(config-if)#ip ospf 1 area 0
R1(config-if)#ex
R1(config)#router ospf 1
R1(config-rtr)#router-id 1.1.1.1
R1(config-rtr)#network 1.1.1.1 0.0.0.0 area 0
R1(config-rtr)#network 10.81.1.0 0.0.0.255 area 0
R2(config)#int f 0/0
R2(config-if)#ip add 10.81.1.2 255.255.255.0
R2(config-if)#ip ospf 1 area 0
R2(config-if)#no shut
R2(config-if)#int f 0/1
R2(config-if)#ip add 172.81.1.2 255.255.255.0
R2(config-if)#ip ospf 1 area 0
R2(config-if)#no shut
R2(config-if)#int lo0
R2(config-if)#ip add 2.2.2.2 255.255.255.255
R2(config-if)#ip ospf 1 area 0
R2(config-if)#ex
R2(config)#router ospf 1
R2(config-rtr)#router-id 2.2.2.2
R2(config-rtr)#network 2.2.2.2 0.0.0.0 area 0
R2(config-rtr)#network 10.81.1.0 0.0.0.255 area 0
R2(config-rtr)#network 172.81.1.0 0.0.0.255 area 0
查看R1路由表,验证ospf是否配置成功

Ospf配置完成后去边界路由配置隧道
R1与R3同理
R1(config)#ipv6 unicast-routing
R1(config)#int f 0/1
R1(config-if)#ipv6 enable
R1(config-if)#ipv6 add 2001:db8:café:81::10/64
R1(config-if)#no shut
R1(config-if)#int tunnel 0
R1(config-if)#ipv6 enable
R1(config-if)#tunnel source f 0/0
R1(config-if)#tunnel mode ipv6ip
R1(config-if)#tunnel destination 172.81.1.3
R1(config-if)#exit
R1(config)#ipv6 route 2001:db8:cafe::/48 tunnel 0
配置完R3后试ping R1 f0/1接口

最后配置R4(R5同理)
R4(config)#ipv6 unicast-routing
R4(config)#int f 0/0
R4(config-if)#ipv6 enable
R4(config-if)#ipv6 add 2001:db8:cafe:81::40/64
R4(config-if)#no shut
R4(config-if)#ex
R4(config)#ipv6 route ::0/0 2001:db8:café:81::10
配置完R5后,从R4ping到 R5

从R5 ping 到 R4

隧道配置完成。
6to4隧道配置
拓扑图
|
Device |
Interface |
IP Address(IPv6) |
|
R1 |
F 0/0 |
172.10.81.1 |
|
F 0/1 |
2002:AC0A:5101::1 |
|
|
R2 |
F 0/0 |
10.81.1.1 |
|
F 0/1 |
2002:A01:5101::1 |
|
|
R3 |
F 0/0 |
218.224.81.1 |
|
F 0/1 |
2002:DAE0:5101::1 |
|
|
R4 |
F 0/0 |
172.10.81.4 |
|
F 0/1 |
10.1.81.4 |
|
|
F 1/0 |
218.224.81.4 |
|
|
R5 |
F 0/0 |
2002:AC0A:5101::5 |
|
R6 |
F 0/0 |
2002:A01:5101::6 |
|
R5 |
F 0/0 |
2002:DAE0:5101::7 |
6to4隧道内部路由只能配置静态路由
R1(config)#int f 0/0
R1(config-if)#ip add 172.10.81.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#ex
R1(config)#ip route 10.1.81.0 255.255.255.0 172.10.81.4
R1(config)#ip route 218.224.81.0 255.255.255.0 172.10.81.4
R2(config)#int f 0/0
R2(config-if)#ip add 10.1.81.1 255.255.255.0
R2(config-if)#no shut
R2(config-if)#ex
R2(config)#ip route 172.10.81.0 255.255.255.0 10.1.81.4
R2(config)#ip route 218.224.81.0 255.255.255.0 10.1.81.4
R3(config)#int f 0/0
R3(config-if)#ip add 218.224.81.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#ex
R3(config)#ip route 10.1.81.0 255.255.255.0 218.224.81.4
R3(config)#ip route 172.10.81.0 255.255.255.0 218.224.81.4
R4(config)#int f 0/0
R4(config-if)#ip add 172.10.81.4 255.255.255.0
R4(config-if)#no shut
R4(config-if)#int f 0/1
R4(config-if)#ip add 10.1.81.4 255.255.255.0
R4(config-if)#no shut
R4(config-if)#int f 1/0
R4(config-if)#ip add 218.224.81.4 255.255.255.0
R4(config-if)#no shut
静态路由配置完成,show路由表验证

试从R1ping到R3、R4

继续配置隧道
R2、R3配置与R1同理
R1(config)#ipv6 unicast-routing
R1(config)#int f 0/1
R1(config-if)#ipv6 enable
R1(config-if)#ipv6 add 2002:ac0a:5101::1/48
R1(config-if)#no shut
R1(config-if)#int tunnel 0
R1(config-if)#ipv6 enable
R1(config-if)#tunnel source f 0/0
R1(config-if)#tunnel mode ipv6ip 6to 4
R1(config-if)#exit
R1(config)#ipv6 route 2002::/16 tunnel 0
配置完后从R1ping到R2、R3

最后配置R5(R6、R7同理)
R5(config)#ipv6 unicast-routing
R5(config)#int f 0/0
R5(config-if)#ipv6 enable
R5(config-if)#ipv6 add 2002:ac0a:5101::5/48
R5(config-if)#no shut
R5(config-if)#ex
R5(config)#ipv6 route ::0/0 2002:ac0a:5101::1
配置完成R6、R7后,试从R5ping 通 R6、R7

6to4隧道实验完成
隧道6in4 和隧道6to4(GNS3)的更多相关文章
- labview 移位寄存器、隧道、索引隧道的区别
Lab view区别:移位寄存器.隧道.索引隧道 最近研究Lab view的时候发现移位寄存器和隧道的功能非常相似但是又有区别 外部数据进入循环体是通过隧道进入的,有几种方式: 图1:For 循环结构 ...
- 内网安全---隐藏通信隧道基础&&网络通信隧道之一ICMP隧道
一,隐藏通信隧道基础知识 在完成信息收集之后,我们要判断流量是否出的去.进的来.隐藏通信隧道技术常用于在受限的网络环境中追踪数据流向和在非受信任的网络中实现安全的数据传输. 1.常见的隧道: .网络层 ...
- 绕过边界防火墙之ICMP隧道、HTTP隧道、UDP隧道
一.ICMP隧道 背景:已经通过某种手段拿到了园区网A主机的控制权,但是边界防火墙只放行该主机向外的ICMP流量,此时怎样才能让A主机和公网主机C建立TCP连接呢? 方案:将TCP包内容包裹在ICMP ...
- 在 Windows 7 中禁用IPv6协议/IPv6隧道
How to disable certain Internet Protocol version 6 (IPv6) components in Windows Vista, Windows 7 and ...
- Windows下使用Xshell建立反向隧道
反向隧道是一个进行内网穿透的简单而有用的方法.在Linux下通过OpenSSH和AutoSSH可以很容易地建立稳定的反向隧道.但是在Windows下,还能看到有人特意装个Cygwin来运行这些工具…… ...
- [置顶] lvs-tun隧道模式搭建
一.lvs直接路由原理 由于图片还要一张一张上传,可以到下面网站下载我的word版本: http://download.csdn.net/user/y0908105023 补充基础知识: OSI(Op ...
- 调试利器:SSH隧道
欢迎大家前往腾讯云社区,获取更多腾讯海量技术实践干货哦~ 本文作者:ivweb 吴浩麟 原文出处:IVWEB社区 未经同意,禁止转载 在开发微信公众号或小程序的时候,由于微信平台规则的限制,部分接口需 ...
- Linux ipip隧道及实现
一.IP隧道技术 IP隧道技术:是路由器把一种网络层协议封装到另一个协议中以跨过网络传送到另一个路由器的处理过程.IP 隧道(IP tunneling)是将一个IP报文封装在另一个IP报文的技术,这可 ...
- 内部办公网与IDC机房的GRE隧道配置实践
背景 公司内网与机房服务器为了实现用内网IP通信的功能,故使用了linux的IP gre隧道的方式.使得公司内部可以直接通过路由直连的方式访问机房服务器. 拓扑图如下: 注:拓扑中的外网IP为虚构的I ...
随机推荐
- Linux(Manjaro) -Docker 安装及基本配置
Linux(Manjaro) -Docker 安装及基本配置 基本安装 # Pacman 安装 Docker sudo pacman -S docker # 启动docker服务 sudo syste ...
- Win7下emacs简单配置
;;win7下.emacs在C:\Users\用户名\AppData\Roaming目录下 在.emacs文件中添加 ;; cancel welcome page取消欢迎界面(setq inhibit ...
- 《单元测试之道Java版》的读书笔记
总览 第2章 首个单元测试 第3章 使用JUnit编写测试 3.1 构建单元测试 3.2 JUnit的各种断言 3.3 JUnit框架 4. 测试什么? 5.CORRECT(正确的)边界条件 6.使用 ...
- HTML基础-------最初概念以及相关语法
HTML概念以及相关语法 HTML HTML是一种类似于(c,java,c++)之类的语言,他是用来描述网页的一种语言.通过各种标签所代表的语义来构建出一个网页,再通过浏览器的渲染功能来实现该网页的各 ...
- python接口自动化-json数据处理
前言 有些post的请求参数是json格式的,需要导入json模块进行处理,json是一种数据交换格式,独立于编程语言 一般常见的接口返回数据也是json格式的,我们在做判断的时候,往往只需要提取其中 ...
- 转://MySQL客户端工具的选择
先说我的选择:SQLyog. 尝试的客户端:Toad for MySQL.MySQL-Front.Navicat for MySQL.SQLyog. 官方下载链接: Toad for MySQL:ht ...
- DirectX11 With Windows SDK--10 摄像机类
前言 DirectX11 With Windows SDK完整目录:http://www.cnblogs.com/X-Jun/p/9028764.html 由于考虑后续的项目需要有一个比较好的演示环境 ...
- open-vm-tools与VMware Tools
安装VMware Tools经常会出现兼容性不好,系统之间复制文件失灵,并且安装时提示建议使用open-vm-tools,于是放弃vmware-tools的安装,尝试使用open-vm-tools o ...
- C#导出Excel表格方法
using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using NPOI.SS.Formula.Functions; using System.Re ...
- Ubuntu安装Navicat 12 for MySQL
环境准备 要想运行Navicat,必须先安装Wine,这个可以使用下面的命令来安装Wine: ubuntu@ubuntu ~ $ sudo apt-get install wine-stable 安装 ...