ip route add 192.168.1.0/24 dev tunnel0 “` 2. GRE隧道(gre) 使用GRE隧道可以在两个网络间传输封装后的数据包。 示例: “` # 创建一个GRE隧道,将本地网络172.16.1.0/24和远程网络192.168.1.0/24连接起来 ip tunnel add tunnel0 mode gre remote 192.168.1.1 local 172.16.1.1 ttl 255 ip link set t...
tunnel source e1/0(指定公网的外出接口作为隧道源地址) tunnel mode gre multipoint(指定隧道的类型为多点GRE) tunnel key 验证密码(为数字,双方必须匹配,验证为可选项) 2)NHRP协议的配置 R1(config-if)#ip nhrp map multicast(支持组播及广播) dynamic (客户端地址采用动态解析) R1(config-if)#ip nhrp netwo...
GRE 模式配置和ipip基本一致,修改模式为gre即可。 SIT 模式用于封装ipv6数据包 host A: 外网IP: 10.10.10.10 内网网卡:1.1.1.1 host B: 外网IP: 20.20.20.20 内网网卡:2.2.2.2 hostA配置: /sbin/modprobe ipip(名称) /sbin/iptunnel add lxT mode ipip local 10.10.10.10 remote 20.20.20.20 ttl 64 /sb...
config t ip route 0.0.0.0 0.0.0.0 200.2.2.1 int g0/2 no sh ip add 200.2.2.2 255.255.255.252 exit int f0/1 no sh ip add 172.16.2.1 255.255.255.0 exit int tunnel 0 no sh ip add 10.10.10.2 255.255.255.0 tunnel source 200.2.2.2 tunnel destination 100.1.1.1 tunnel mode gre ip exit ip...
ip tunnel add tunnel0 mode gre remote172.16.4.116 local 172.16.4.121 ttl 255 ip link set tunnel0 up mtu 1400 ip addr add 10.0.1.1/30dev tunnel0 ip route add 192.168.20.0/24 dev tunnel0 在G2上 创建tunnel0 insmod /lib/modules/2.6.32-5-686/kernel/net/ipv4/ip_gre.ko ...
GRE原理 隧道 A协议 B协议 A协议 例如:IPX 例如:IP 例如:IPX 注:A、B协议可以是相同或不同的协议 •GRE(GenericRoutingEncapsulation):通用路由封装协议。•GRE是VPN的第三层隧道协议,采用了隧道(Tunnel)技术。•Tunnel是虚拟的点对点连接,即点对点连接的虚拟接口。GRE-3 封装过程 IP头数据 网络层 ...
因为是通过GRE隧道互通的,因此除了基础路由以外,还需要有隧道的路由。
ip address 10.10.10.253 255.255.255.252 tunnel source 1.1.1.1 tunnel destination 2.2.2.2 tunnel mode ipip If we need GRE/IpSec better to use VTI tunnel. VTI is indusrty standart and all vendors support it. lunar_rover Level 1 08-30-2018 03:47 AM Not sure if this answers...
我想使用 tunnel(gre),于是在本机上(ubuntu)输入命令:> sudo ip tunnel add tun0 mode gre local 192.168.1.3 remote 192.168.1.250 ttl 255add tunnel gre0 failed: No such device我到网上搜了一下,似乎是gre模块的问题,于是按照网上的信息排查,如下:> lsmod | grep gre没有输出> lsmod | grep ip_gre...
让tunnel状态为Up的条件有3个:(1)配置了tunnel接口的IP地址;(2)配置了源地址和目的地址;(3)源和目的地址之间要有可达的路由。