MSR系列路由器GRE隧道基础配置
一、组网需求:
Router A 、Router B两台路由器通过公网用GRE实现私网互通。
设备清单:MSR系列路由器2台
二、组网图:
三、配置步骤:
Router A 配置 |
# interface LoopBack1 ip address # interface GigabitEthernet0/0 port link-mode route ip address # //创建GRE隧道,指定封装后的源地址和目的地址 interface Tunnel0 ip address 192.168.0.2 255.255.255.0 source destination # //通过tunnel访问对端私网的路由 ip route-static # |
Router B 配置 |
# interface Ethernet0/0 port link-mode route ip address # interface
LoopBack1 ip address # //创建GRE隧道,指定封装后的源地址和目的地址 interface Tunnel0 ip address 192.168.0.1 255.255.255.0 source destination # //通过tunnel访问对端私网的路由 ip route-static # |
四、配置关键点:
1)两端的隧道地址要处于同一网段;
2)不要忘记配置通过tunnel访问对方私网的路由。