아치에서 네트워크 인터페이스(WiFi/이더넷)의 이름을 영구적으로 설정하는 방법

아치에서 네트워크 인터페이스(WiFi/이더넷)의 이름을 영구적으로 설정하는 방법

재부팅할 때마다 네트워크 카드(Wi-Fi/이더넷)에 따라 이름이 바뀌는 것 같습니다...

답변1

사용 udev. Gentoo와 다른 많은 배포판에서는 자동으로 수행되지만 빠른 솔루션을 원한다면 다음을 기반으로 구축할 수 있습니다.

# This file was automatically generated by the /lib64/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.

# PCI device 0x8086:0x10f5 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC_ADDRESS>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x8086:0x4236 (iwlagn)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC_ADDRESS>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"

구성 을 변경했습니까 udev?

관련 정보