其他分享
首页 > 其他分享> > 网桥VXLAN服务

网桥VXLAN服务

作者:互联网

题目

配置

appsrv

# 添加 vxlan100 接口
ip link add vxlan100 type vxlan id 100 dstport 4789 remote 192.168.100.200 local 192.168.100.100 dev ens33
# 配置vxlan接口地址并激活
ip addr add 172.16.1.1/24 dev vxlan100
ip link set vxlan100 up

storagesrv

# 添加 vxlan100 接口
ip link add vxlan100 type vxlan id 100 dstport 4789 remote 192.168.100.100 local 192.168.100.200 dev ens33
# 配置vxlan接口地址并激活
ip addr add 172.16.1.2/24 dev vxlan100
ip link set vxlan100 up

测试

image

标签:服务,vxlan100,ip,192.168,网桥,VXLAN,link,vxlan
来源: https://www.cnblogs.com/frost-descent/p/16663031.html