centos7 네트워크 카드 이름 변경

4000 단어
centos7 기본 서버 네트워크 카드 이름, 다음 그림:
[root@localhost ~]# ifconfig 
ens33: flags=4163  mtu 1500
        inet 192.168.0.160  netmask 255.255.255.0  broadcast 192.168.0.255
        inet6 fe80::250:56ff:fe37:a950  prefixlen 64  scopeid 0x20
        ether 00:50:56:37:a9:50  txqueuelen 1000  (Ethernet)
        RX packets 335  bytes 33930 (33.1 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 210  bytes 23175 (22.6 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10
        loop  txqueuelen 1  (Local Loopback)
        RX packets 24  bytes 2920 (2.8 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 24  bytes 2920 (2.8 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

linux 네트워크 카드 이름을 수정하는 것은 전통적인 eth로 시작합니다. 다음 그림은 다음과 같습니다.
[root@localhost ~]# ifconfig 
eth0: flags=4163  mtu 1500
        inet 192.168.0.112  netmask 255.255.255.0  broadcast 192.168.0.255
        inet6 fe80::20c:29ff:fe4b:66b  prefixlen 64  scopeid 0x20
        ether 00:0c:29:4b:06:6b  txqueuelen 1000  (Ethernet)
        RX packets 71  bytes 7624 (7.4 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 63  bytes 8717 (8.5 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10
        loop  txqueuelen 1  (Local Loopback)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

  
네트워크 카드 이름을 수정하는 방법은 다음과 같습니다.
첫 번째 단계:/etc/sysconfig/grub 파일을 편집하고 두 번째 줄quit 뒤에 다음 코드를 추가합니다.
net.ifnames=0  biosdevname=0
[root@localhost ~]# cat /etc/sysconfig/grub 
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet net.ifnames = 0 biosdevname = 0 "
GRUB_DISABLE_RECOVERY="true" 

2단계: 명령 실행,grub2-mkconfig-o/boot/grub2/grub.cfg, 새로운 grub를 생산합니다.cfg 파일.
[root@localhost ~]#grub2-mkconfig -o /boot/grub2/grub.cfg

3단계: 네트워크 카드 구성 파일 수정
[root@localhost ~]# cd  /etc/sysconfig/network-scripts/
[root@localhost ~]# mv  ifcfg-ens33  ifcfg-eth0 
DEVICE=eth0
[root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 
DEVICE=eth0
IPADDR=192.168.0.112
PREFIX=24
BROADCAST=192.168.0.255
ONBOOT=yes
NAME=eth0

4단계: 서버 재시작
[root@localhost ~]#reboot
[root@localhost ~]# ifconfig 
eth0: flags=4163  mtu 1500
        inet 192.168.0.112  netmask 255.255.255.0  broadcast 192.168.0.255
        inet6 fe80::20c:29ff:fe4b:66b  prefixlen 64  scopeid 0x20
        ether 00:0c:29:4b:06:6b  txqueuelen 1000  (Ethernet)
        RX packets 243  bytes 21680 (21.1 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 165  bytes 20161 (19.6 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10
        loop  txqueuelen 1  (Local Loopback)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

  
Install CentOS 7을 선택하여 리턴하지 말고 Tab 키를 눌러 줄 끝에 다음 인자net을 추가합니다.ifnames=0biosdevname=0 다음 단계로 돌아가면 시스템 설치가 끝난 후 기본 네트워크 카드 이름은 eth 모드입니다

좋은 웹페이지 즐겨찾기