GRE VPN——配置实验

1,按照图示配置IP地址

r1:

r2:

r3:

2,在R1和R3配置默认路由使公网区域互通

R1\]ip route-static 0.0.0.0 0 100.1.1.2 R3\]ip route-static 0.0.0.0 0 100.2.2.2 ### 3,在R1和R3上配置GRE VPN,使两端私网能够互相访问,Tunnel口IP地址如图,隧道双up: [R1-Tunnel0/0/0]tunnel-protocol gre [R1-Tunnel0/0/0]source 100.1.1.1 [R1-Tunnel0/0/0]destination 100.2.2.3 [R3-Tunnel0/0/0]tunnel-protocol gre [R3-Tunnel0/0/0]source 100.2.2.3 [R3-Tunnel0/0/0]destination 100.1.1.1 ping -a 192.168.3.1 192.168.3.3 PING 192.168.3.3: 56 data bytes, press CTRL_C to break Request time out Reply from 192.168.3.3: bytes=56 Sequence=2 ttl=255 time=40 ms Reply from 192.168.3.3: bytes=56 Sequence=3 ttl=255 time=30 ms Reply from 192.168.3.3: bytes=56 Sequence=4 ttl=255 time=30 ms Reply from 192.168.3.3: bytes=56 Sequence=5 ttl=255 time=20 ms --- 192.168.3.3 ping statistics --- 5 packet(s) transmitted 4 packet(s) received 20.00% packet loss round-trip min/avg/max = 20/30/40 ms ### 4,在R1和R3上配置RIPV2来传递两端私网路由 \[R1\]ip route-static 192.168.2.0 24 192.168.3.3 \[R3\]ip route-static 192.168.1.0 24 192.168.3.1 ping 192.168.1.1 PING 192.168.1.1: 56 data bytes, press CTRL_C to break Request time out Reply from 192.168.1.1: bytes=56 Sequence=2 ttl=127 time=20 ms Reply from 192.168.1.1: bytes=56 Sequence=3 ttl=127 time=30 ms Reply from 192.168.1.1: bytes=56 Sequence=4 ttl=127 time=30 ms Reply from 192.168.1.1: bytes=56 Sequence=5 ttl=127 time=20 ms --- 192.168.1.1 ping statistics --- 5 packet(s) transmitted 4 packet(s) received 20.00% packet loss round-trip min/avg/max = 20/25/30 ms

相关推荐
fruge5 小时前
Ubuntu服务器已下载Nginx安装包的安装指南
服务器·nginx·ubuntu
Do_GH5 小时前
【Linux】07.Ubuntu开发环境部署
linux·运维·ubuntu
勤源科技5 小时前
全链路智能运维中的实时流处理架构与状态管理技术
运维·架构
tryCbest6 小时前
Linux使用Docker部署项目后期更新
linux·运维·docker
孤独得猿6 小时前
聊天室项目开发——etcd的安装和使用
linux·服务器·c++·etcd
楚韵天工6 小时前
宠物服务平台(程序+文档)
java·网络·数据库·spring cloud·编辑器·intellij-idea·宠物
竹等寒7 小时前
Linux-网络安全私房菜(二)
linux·服务器·web安全
早睡冠军候选人7 小时前
Ansible学习----Ansible Playbook
运维·服务器·学习·云原生·容器·ansible
sulikey7 小时前
从实验出发深入理解Linux目录权限:r、w、x分别控制什么?能否进入目录到底由谁决定?
linux·运维·服务器·ubuntu·centos
疯狂吧小飞牛8 小时前
ip rule 策略路由
linux·网络·tcp/ip·运维开发