一.基本配置
cnetos6及之前版本,网卡名默认eth系列.网卡名及对应mac保存在 /etc/udev/rules.d/70-persistent-net.rules 文件中
修改此文件后需要重启或重新安装网卡驱动生效:
查看驱动: ethtool -i eth0 或 dmesg |grep -i eth0
卸载驱动: modprobe -r e1000 或 rmmod e1000
装载驱动: modprobe e1000
临时修改网卡名称: ①ip link set eth0 down
②ip link set eth0 name test
③ip link set test up
1.ifconfig
基于net-tools包,老牌工具,不推荐使用,老牌运维人员常用,建议掌握.