系统相关
首页 > 系统相关> > Linux下使用ip netns命令进行网口的隔离和配置ip地址

Linux下使用ip netns命令进行网口的隔离和配置ip地址

作者:互联网

1. 添加隔离标记符:

ip netns add fd

2. 将指定网卡放入隔离中:

ip link set eth1 netns fd

3. 在隔离环境下执行命令:

ip netns exec fd ifconfig eth1 down

ip netns exec fd ifconfig eth1 up

ip netns exec fd ip addr add 192.168.1.2/24 dev eth1

4. 有多个网口时,可以将两对网口直连,配置同网段ip,执行ping操作,验证隔离网口ip配置是否成功:

ping -I eth2 192.168.1.2

标签:隔离,ip,网口,fd,Linux,netns,eth1
来源: https://www.cnblogs.com/frisk/p/11569167.html