标签:方式 tun 安装 建立 route add 主机 inf link mod
自动调整弹性技术资源的大小,以满足业务需求的变化
实现自动化资源调配。
GRE(Generic Routing Encapsulation,通用路由封装)协议,把两个不同vpc网络通过建立一条虚拟隧道的方式连接在一起。
主机C命令:
modprobe ip_gre #安装gre模块
ip tunnel add tun1 mode gre remote 39.104.109.250(远端公网地址) local #增加隧道172.16.0.2(本机内网ip)
ip link set tun1 up #激活隧道
ip add 192.168.1.2(本地隧道地址) peer 192.168.1.1(远端隧道地址) dev tun1 #配置隧道地址
ip route add 172.31.0.0/24(远端vpc地址) #配置路由
标签:方式 tun 安装 建立 route add 主机 inf link mod
原文地址:https://www.cnblogs.com/lemanlai/p/12489825.html