良许Linux教程网 干货合集 运维必看-GRE隧道配置实践!

运维必看-GRE隧道配置实践!

为了实现公司内网与机房服务器之间使用内网IP进行通信的需求,采用了Linux的IP gre隧道技术。这种技术使得公司内部可以通过直接连接的方式,访问机房服务器。

image-20230815212837872
image-20230815212837872

从拓扑图可以观察到,在公司和机房的服务器上分别存在内网IP和外部IP。gre隧道的原理是将两台服务器的外部IP进行绑定,在这两个外部IP之间建立一条名为tunnel2的隧道。对于服务器来说,tunnel2就像是一个网络接口,直接连接到隧道的另一端。

在此基础上,我们给tunnel2配置了一个新的IP段:172.16.33.1/2。

具体配置

218.188.152.11:

开启路由转发,加载gre协议模块

# echo 1 > /proc/sys/net/ipv4/ip_forward# modprobe ip_gre

创建隧道tunnel2,添加一虚拟网段172.16.33.0/24

# ip tunnel add tunnel2 mode gre local 218.188.152.11 remote 144.22.1.176 ttl 255 dev eth1#

 ip addr add 172.16.33.2 dev tunnel2 

peer 172.16.33.1/32# ip link set dev tunnel2 up

添加一条路由到通过隧道到机房内网的路由

# ip route add 10.65.3.0/24 dev tunnel2

144.22.1.176:

开启路由转发,加载gre协议模块

# echo 1 > /proc/sys/net/ipv4/ip_forward# modprobe ip_gre

创建隧道tunnel2,添加一虚拟网段172.16.33.0/24

# ip tunnel add tunnel2 mode gre local 144.22.1.176 remote 218.188.152.11 ttl 255 dev em1# 

ip addr add 172.16.33.1 dev tunnel2 

peer 172.16.33.2/32# ip link set dev tunnel2 up

添加一条路由到通过隧道到公司内网的路由

# ip route add 192.168.1.0/24 dev tunnel2

查看路由

218.188.152.11:# netstat -nrKernel IP routing tableDestination     Gateway         Genmask         Flags   MSS Window 
 irtt 

Iface172.16.33.1     0.0.0.0         255.255.255.255 UH        0 0         
 0 tunnel2192.168.1.0     0.0.0.0    

255.255.255.0   U         0 0          0 eth010.65.3.0       0.0.0.0       
  255.255.255.0   U         0 0          0 

tunnel20.0.0.0         xx.xx.xx.xx    0.0.0.0         UG        0 0       
   0 eth0

内网服务器多了172.16.33.1,10.65.3.0/24的两条路由,网关为gre隧道,通过隧道到达机房服务器。

144.22.1.176:# netstat -nrKernel IP routing tableDestination     Gateway         Genmask     
    Flags   MSS Window  irtt 

Iface172.16.33.2     0.0.0.0         255.255.255.255 UH        0 0        
  0 tunnel2192.168.1.0     0.0.0.0    

255.255.255.0   U         0 0          0 tunnel210.65.3.0       0.0.0.0     
    255.255.255.0   U         0 0          0 

em20.0.0.0         xx.xx.xx.xx    0.0.0.0         UG        0 0       
   0 em1

机房服务器多了172.16.33.2,192.168.1.0/24的两条路由,网关为gre隧道,通过隧道到达机房服务器。

测试网络连通:

218.188.152.11:

# ping 172.16.33.2PING 172.16.33.2 (172.16.33.2) 56(84) bytes of data.64 bytes from 
172.16.33.2: icmp_seq=1 ttl=64 time=0.048 

ms64 bytes from 172.16.33.2: icmp_seq=2 ttl=64 time=0.059 ms— 172.16.33.2 ping statistics —

2 packets transmitted, 2 received, 0% 

packet loss, time 1021msrtt min/avg/max/mdev = 0.048/0.053/0.059/0.009 

ms———————————————# ping 10.65.3.194PING 10.65.3.194 

(10.65.3.194) 56(84) bytes of data.64 bytes from 10.65.3.194: icmp_seq=1 ttl=64 


time=7.96 ms64 bytes from 10.65.3.194: 

icmp_seq=2 ttl=64 time=7.63 ms— 10.65.3.194 ping statistics —

2 packets transmitted, 2 received, 0% packet loss, time 1100msrtt 

min/avg/max/mdev = 7.638/7.799/7.960/0.161 ms

公司服务器可以直接ping通对端机房服务器的gre ip以及内网IP。

144.22.1.176:# ping 172.16.33.1PING 172.16.33.1 (172.16.33.1) 56(84) bytes of data.64 
bytes from 172.16.33.1: icmp_seq=1 ttl=64 

time=0.018 ms64 bytes from 172.16.33.1: icmp_seq=2 ttl=64 time=0.016 ms— 172.16.33.1 
ping statistics —2 packets transmitted, 2 

received, 0% packet loss, time 1274msrtt min/avg/max/mdev = 0.016/0.017/0.018/0.001
 ms———————————————# ping 192.168.1.254PING 

192.168.1.254 (192.168.1.254) 56(84) bytes of data.64 bytes from 192.168.1.254:

 icmp_seq=1 ttl=64 time=7.81 ms64 bytes from 

192.168.1.254: icmp_seq=2 ttl=64 time=7.97 ms— 192.168.1.254 ping statistics —

2 packets transmitted, 2 received, 0% packet loss,

time 1232msrtt min/avg/max/mdev = 7.810/7.894/7.978/0.084 ms

反过来,机房服务器也可以直接ping通对端公司服务器的gre ip以及内网IP。

小结

实现本文中的场景的方法绝不止今天说的这一种,还可以是VPN、SSH隧道等。总之,在运维童鞋的手里,没有啥不可能的,要上天绝不入地~o(∩_∩)o 哈哈,你说呢?

以上就是良许教程网为各位朋友分享的Linu系统相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你 !

137e00002230ad9f26e78-265x300
本文由 良许Linux教程网 发布,可自由转载、引用,但需署名作者且注明文章出处。如转载至微信公众号,请在文末添加作者公众号二维码。
良许

作者: 良许

良许,世界500强企业Linux开发工程师,公众号【良许Linux】的作者,全网拥有超30W粉丝。个人标签:创业者,CSDN学院讲师,副业达人,流量玩家,摄影爱好者。
上一篇
下一篇

发表评论

联系我们

联系我们

公众号:良许Linux

在线咨询: QQ交谈

邮箱: yychuyu@163.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部