Blog:http://www.simlinux.com
许多系统管理员仍然使用ifconfig、route、arp、netstat 命令组合来管理和排错网络配置,这些命令有net-tools包提供,但在Arch Linux、Centos7/RHEL7等发行版里面已经使用iproute2替代了net-toolsiproute2是另外一个网络配置工具,用来取代net-tools的功能;
net-tools访问和修改网络配置是通过procfs(/proc)和ioctl系统调用来完成的,而iproute2是通过netlink socket方式与内核通信;重要的是,iproute2发展一直很好:
https://www.kernel.org/pub/linux/utils/net/iproute2/
下面是net-tools和iproute2的使用对比:
使用net-tools: $ ifconfig -a 使用iproute2: $ ip link show
使用net-tools: $ sudo ifconfig eth2 up $ sudo ifconfig eth2 down 使用iproute2: $ sudo ip link set down eth2 $ sudo ip link set up eth2
使用net-tools: $ sudo ifconfig eth2 10.0.0.1/24 使用iproute2: $ sudo ip addr add 10.0.0.1/24 dev eth2 使用net-tools配置多IP: $ sudo ifconfig eth0:1 192.168.10.10 netmask 255.255.255.0 up $ sudo ifconfig eth0:2 192.168.10.15 netmask 255.255.255.0 up 使用iproute2配置多IP: $ sudo ip addr add 10.0.0.1/24 broadcast 10.0.0.255 dev eth2 $ sudo ip addr add 10.0.0.2/24 broadcast 10.0.0.255 dev eth2 $ sudo ip addr add 10.0.0.3/24 broadcast 10.0.0.255 dev eth2 查看eth0的IP地址 $sudo ip addr list dev eth0
使用net-tools: $ sudo ifconfig eth2 0 使用iproute2: $ sudo ip addr del 10.0.0.1/24 dev eth2
使用net-tools: $ ifconfig eth2 使用iproute2: $ ip addr show dev eth2 如果是网卡绑定了多IP的话,iproute2能显示所有的地址,而net-tools只能显示一个
使用net-tools: $ sudo ifconfig eth2 inet6 add 2002:0db5:0:f102::1/64 $ sudo ifconfig eth2 inet6 add 2003:0db5:0:f102::1/64 使用iproute2: $ sudo ip -6 addr add 2002:0db5:0:f102::1/64 dev eth2 $ sudo ip -6 addr add 2003:0db5:0:f102::1/64 dev eth2
使用net-tools: $ ifconfig eth2 使用iproute2: $ ip -6 addr show dev eth2
使用net-tools: $ sudo ifconfig eth2 inet6 del 2002:0db5:0:f102::1/64 使用iproute2: $ sudo ip -6 addr del 2002:0db5:0:f102::1/64 dev eth2
使用net-tools: $ sudo ifconfig eth2 hw ether 08:00:27:75:2a:66 使用iproute2: $ sudo ip link set dev eth2 address 08:00:27:75:2a:67
使用net-tools: $route -n $ netstat -rn 使用iproute2: $ ip route show
使用net-tools: $ sudo route add default gw 192.168.1.2 eth0 $ sudo route del default gw 192.168.1.1 eth0 使用iproute2: $ sudo ip route add default via 192.168.1.2 dev eth0 $ sudo ip route replace default via 192.168.1.2 dev eth0
使用net-tools: $ sudo route add default gw 192.168.1.2 eth0 $ sudo route del default gw 192.168.1.1 eth0 使用iproute2: $ sudo ip route add default via 192.168.1.2 dev eth0 $ sudo ip route replace default via 192.168.1.2 dev eth0
使用net-tools: $ netstat $ netstat -l 使用iproute2: $ ss $ ss -l
使用net-tools: $ arp -an 使用iproute2: $ ip neigh
使用net-tools: $ sudo arp -s 192.168.1.100 00:0c:29:c0:5a:ef $ sudo arp -d 192.168.1.100 使用iproute2: $ sudo ip neigh add 192.168.1.100 lladdr 00:0c:29:c0:5a:ef dev eth0 $ sudo ip neigh del 192.168.1.100 dev eth0
使用net-tools: $ sudo ipmaddr add 33:44:00:00:00:01 dev eth0 $ sudo ipmaddr del 33:44:00:00:00:01 dev eth0 $ ipmaddr show dev eth0 $ netstat -g 使用iproute2: $ sudo ip maddr add 33:44:00:00:00:01 dev eth0 $ sudo ip maddr del 33:44:00:00:00:01 dev eth0 $ ip maddr list dev eth0
参考文档:
iproute2 HowTo http://www.policyrouting.org/iproute2.doc.html
iproute2 man http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2/
RTnetlink http://www.man7.org/linux/man-pages/man7/rtnetlink.7.html
Netlink http://www.man7.org/linux/man-pages/man7/netlink.7.html
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。