centos7版本的系統(tǒng)拓萌,發(fā)現(xiàn)默認(rèn)的網(wǎng)卡名字有點(diǎn)怪碍沐,為了便于管理辙浑,修改一下激涤。
1)編輯網(wǎng)卡信息
[root@rstx-214 ~]# cd /etc/sysconfig/network-scripts/ #進(jìn)入網(wǎng)卡目錄
[root@rstx-214 network-scripts]# mv ifcfg-eno16777728 ifcfg-eth0 #將默認(rèn)的網(wǎng)卡名eno16777728改為eth0
[root@rstx-214 network-scripts]# cat ifcfg-eth0 #編輯網(wǎng)卡信息
TYPE=Ethernet
BOOTPROTO=static
DEFROUTE=yes
PEERDNS=yes
PEERROUTES=yes
IPV4_FAILURE_FATAL=no
NAME=eth0 #name修改為eth0
ONBOOT=yes
IPADDR=192.168.1.214
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=223.5.5.5
2)修改grub
[root@rstx-214 ~]# cat /etc/sysconfig/grub #編輯內(nèi)核信息,添加紅色字段的
GRUB_TIMEOUT=5
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=autorhgb net.ifnames=0 biosdevname=0 quiet"
GRUB_DISABLE_RECOVERY="true"
生成啟動(dòng)菜單
[root@rstx-214 ~]# grub2-mkconfig -o /boot/grub2/grub.cfg
Generatinggrub configuration file ...
Foundlinux image: /boot/vmlinuz-3.10.0-229.el7.x86_64
Foundinitrd image: /boot/initramfs-3.10.0-229.el7.x86_64.img
Foundlinux image: /boot/vmlinuz-0-rescue-1100f7e6c97d4afaad2e396403ba7f61
Foundinitrd image: /boot/initramfs-0-rescue-1100f7e6c97d4afaad2e396403ba7f61.img
Done
也可以在開機(jī)啟動(dòng)加載安裝系統(tǒng)界面設(shè)置。
3)驗(yàn)證是否修改成功
[root@rstx-214 ~]# reboot #必須重啟系統(tǒng)生效
[root@rstx-214 ~]# yum install net-tools #默認(rèn)centos7不支持ifconfig 需要看裝net-tools包
[root@rstx-214 ~]# ifconfig eth0 #在次查看網(wǎng)卡信息
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.214 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fdc3:8811:1412:0:2e0:4cff:fe25:e423 prefixlen 64 scopeid 0x0<global>
inet6 fe80::2e0:4cff:fe25:e423 prefixlen 64 scopeid 0x20<link>
ether 00:e0:4c:25:e4:23 txqueuelen 1000 (Ethernet)
RX packets 13487 bytes 1093943 (1.0 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3256 bytes 306491 (299.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
centos7啟動(dòng)網(wǎng)卡服務(wù)報(bào)錯(cuò)“RTNETLINK answers: File exists”的解決方法
[root@localhost network-scripts]# service NetworkManager stop
Starting network (via systemctl): Job for network.service failed because the control process exited with error code. See "systemctl status network.service" and "journalctl -xe" for details.
[root@localhost network-scripts]# systemctl status network.service
?.network.service - LSB: Bring up/down networking
Loaded: loaded (/etc/rc.d/init.d/network)
Active: failed (Result: exit-code) since Mon 2017-03-20 18:41:03 CST; 3min 49s ago
Docs: man:systemd-sysv-generator(8)
Process: 18880 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=1/FAILURE)
Mar 20 18:41:03 localhost.localdomain network[18880]: RTNETLINK answers: File exists
Mar 20 18:41:03 localhost.localdomain network[18880]: RTNETLINK answers: File exists
Mar 20 18:41:03 localhost.localdomain network[18880]: RTNETLINK answers: File exists
Mar 20 18:41:03 localhost.localdomain network[18880]: RTNETLINK answers: File exists
Mar 20 18:41:03 localhost.localdomain network[18880]: RTNETLINK answers: File exists
Mar 20 18:41:03 localhost.localdomain network[18880]: RTNETLINK answers: File exists
Mar 20 18:41:03 localhost.localdomain systemd[1]: network.service: control process exited, code=exited status=1
Mar 20 18:41:03 localhost.localdomain systemd[1]: Failed to start LSB: Bring up/down networking.
Mar 20 18:41:03 localhost.localdomain systemd[1]: Unit network.service entered failed state.
Mar 20 18:41:03 localhost.localdomain systemd[1]: network.service failed.
原因分析和解決:
在centos下出現(xiàn)該故障的原因是啟動(dòng)網(wǎng)絡(luò)的兩個(gè)服務(wù)/etc/init.d/network 和 /etc/init.d/NetworkManager有沖突判呕。
從根本上說是NetworkMaganager(NM)的帶來的沖突倦踢,停用NetworkManager即可解決。重啟即可侠草。
[root@localhost network-scripts]# service NetworkManager stop
Redirecting to /bin/systemctl stop NetworkManager.service
[root@localhost network-scripts]# systemctl start network.service