此VPN能很好的封装数据,使一些网络层的数据能在其他的网络协议中传输。
但是此VPN有一个缺点便是没有好的加密机制。
配置方法:
拓扑:PC - RA - RB - PC
ROUTER - A
Interface s0/1
ip add 192.168.1.1 255.255.255.0
no shutdown
Interface Tunnel0
ip add 1.1.1.1 255.255.255.0
no shutdown
tunnel source s0/1
tunnel destination 192.168.1.2
tunnel key 123 此密码可不设置
ROUTER - B
Interface s0/2
ip add 192.168.1.2 255.255.255.0
no shutdown
Interface Tunnel0
ip add 1.1.1.2 255.255.255.0
no shutdown
tunnel source s0/2
tunnel destination 192.168.1.1
tunnel key 123
因为数据默认不会从Tunnel隧道走,所以要在两个路由器分别添加一条默认路由。
ip route 0.0.0.0 0.0.0.0 tunnel 0
使用PC PING PC即可通信。
如需查看数据是否从隧道通过,在路由器特权模式下:
debug tunnel event
使用路由器内网地址PING对端任意地址即可看到Tunnel口发送和接收的数据。
时间: 2024-10-10 21:14:51