码迷,mamicode.com
首页 > 其他好文 > 详细

docker网络名称空间---模拟网桥

时间:2018-11-12 18:34:33      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:ttl   add   设备   虚拟   网桥   config   dock   模拟   icmp   

#添加网络名称空间
ip netns add r1
ip netns add r2

#添加一对虚拟网卡
ip link add name veth1.1 type veth peer name veth1.2

#把设备和网络名称空间关联起来
ip link set dev veth1.1 netns r1 #把其中一端挪到网络名字空间里, 一个设备只能属于一个名称空间

#改个网卡名字
ip netns exec r1 ip link set dev veth1.1 name eth0

#激活宿主机这一端
ifconfig veth1.2 10.1.0.1/24 up

#激活另一端
ip netns exec r1 ifconfig eth0 10.1.0.2/24 up

#成功ping通
[root@test ~]# ping 10.1.0.2
PING 10.1.0.2 (10.1.0.2) 56(84) bytes of data.
64 bytes from 10.1.0.2: icmp_seq=1 ttl=64 time=0.017 ms

docker网络名称空间---模拟网桥

标签:ttl   add   设备   虚拟   网桥   config   dock   模拟   icmp   

原文地址:http://blog.51cto.com/peitianwang/2315971

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!