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 모드입니다
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.