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