1、配置IP
2、R1、R2 配置nat,代理内网地址通过G0/0/0口上外网
acl 2000
rule permit source any
quit
#
int G0/0/0
ip addr 100.1.1.1 24
nat outbound 2000
#
3、R1、R2 配置默认出口路由G0/0/0,这一步做完,PC1和PC2就可以通过代理上网了,测试一下
ip route-static 0.0.0.0 0.0.0.0 100.1.1.2
4、R1、R2 配置GRE隧道,配置 IP 地址,指定隧道协议,指定源目地址
interface Tunnel0/0/0
ip address 10.1.3.1 255.255.255.252
tunnel-protocol gre
source 100.1.1.1
destination 10.1.3.2
#
5、这时观察隧道,发现接口起来,但协议未起来,原因是未指定隧道地址的路由,通过默认路由出去了,但公网上没有隧道地址
ip route-static 10.1.3.0 255.255.255.252 Tunnel 0/0/0
在两端的 PC 上 ping 对方的 IP,发现通的?