实验要求
在R2和R3上配置GRE,在公网上建立一条数据通道,使用这条数据通道进行数据传输。
实验预览图
实验分析
先对R2、R3、R1配置端口IP,在R2、R3分别配置环回0、配置缺省指向运营商ISP、创建隧道接口并进行配置,最后将隧道接口的路由补上。
实验过程:
在R2上配置:
配置端口ip:
[r2]int GigabitEthernet 0/0/0
[r2-GigabitEthernet0/0/0]ip address 12.0.0.1 24
配置环回0:
[r2-LoopBack0]ip address 192.168.1.1 24
添加缺省路由指向ISP:
[r2]ip route-static 0.0.0.0 0 12.0.0.2
配置隧道接口:
[r2]interface Tunnel 0/0/0
[r2-Tunnel0/0/0]ip address 192.168.3.1 24---配置接口ip
[r2-Tunnel0/0/0]tunnel-protocol gre----定义封装方式
[r2-Tunnel0/0/0]source 12.0.0.1----定义封装内容
[r2-Tunnel0/0/0]destination 23.0.0.2
补充路由信息:
[r2]ip route-static 192.168.2.0 24 192.168.3.2
在R1上配置:
配置端口ip:
[r1]interface GigabitEthernet 0/0/0
[r1-GigabitEthernet0/0/0]ip address 12.0.0.2 24
配置端口ip:
[r1]interface GigabitEthernet 0/0/1
[r1-GigabitEthernet0/0/1]ip address 23.0.0.1 24
在R3上配置:
配置端口ip:
[r3]interface GigabitEthernet 0/0/0
[r3-GigabitEthernet0/0/0]ip address 23.0.0.2 24
配置环回0:
[r3-LoopBack0]ip address 192.168.2.1 24
添加缺省路由指向ISP:
[r3]ip route-static 0.0.0.0 0 23.0.0.1
配置隧道接口:
[r3]interface Tunnel 0/0/0
[r3-Tunnel0/0/0]ip address 192.168.3.2 24---配置接口ip
[r3-Tunnel0/0/0]tunnel-protocol gre----定义封装方式
[r3-Tunnel0/0/0]source 23.0.0.2----定义封装内容
[r3-Tunnel0/0/0]destination 12.0.0.1
补充路由信息:
[r3]ip route-static 192.168.1.0 24 192.168.3.1