#int tunnel 1 #tunnel mode gre ip #tunnel destination 100.100.210.1 #tunnel source gigabitEthernet 0/0 #ip address 1.1.1.2 255.255.255.252 #ip route 192.168.0.0 255.255.0.0 1.1.1.1
时间: 2024-04-19 10:26:22 浏览: 188
ensp-gre实验 tunnel 0/0/0
这是一系列的网络配置命令。首先,`int tunnel 1`命令进入隧道1的配置模式。`tunnel mode gre ip`命令设置隧道为GRE(Generic Routing Encapsulation)模式,并使用IP协议封装。`tunnel destination`命令指定了隧道的目标地址为100.100.210.1。`tunnel source gigabitEthernet 0/0`命令指定了隧道的源接口为GigabitEthernet 0/0。接下来,`ip address`命令为隧道接口配置了IP地址1.1.1.2/30。最后,`ip route`命令设置了一个静态路由,将目的网络192.168.0.0/16的流量发送到隧道接口1.1.1.1。
阅读全文