dhcpcd는 정적 구성 파일을 사용할 때에도 IP 주소를 쿼리합니까?

dhcpcd는 정적 구성 파일을 사용할 때에도 IP 주소를 쿼리합니까?

상황은 다음과 같습니다. Raspberry Pi를 구성했습니다./etc/dhcpcd.conf고정 IP 주소가 있는 고정 구성 파일을 사용하려면 파일을 사용하세요.

# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.

# Allow users of this group to interact with dhcpcd via the control socket.
#controlgroup wheel

# Inform the DHCP server of our hostname for DDNS.
alarm_host

# Use the hardware address of the interface for the Client ID.
#clientid
# or
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
# Some non-RFC compliant DHCP servers do not reply with this set.
# In this case, comment out duid and enable clientid above.
duid

# Persist interface configuration when dhcpcd exits.
persistent

# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit

# A list of options to request from the DHCP server.
option domain_name, domain_search, host_name
option classless_static_routes
# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu

# Most distributions have NTP support.
#option ntp_servers

# A ServerID is required by RFC2131.
require dhcp_server_identifier

# Generate SLAAC address using the Hardware Address of the interface
#slaac hwaddr
# OR generate Stable Private IPv6 Addresses based from the DUID
slaac private
noipv4ll

interface eth0
static ip_address=172.16.30.90/16
static routers=172.16.10.254
static domain_name_servers=8.8.8.8 8.8.4.4

그러나 eth0에서 실제 활성 경로를 확인하면 다음과 같은 결과가 나타납니다.

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether dc:a6:32:3a:e8:94 brd ff:ff:ff:ff:ff:ff
    inet 172.16.1.89/16 brd 172.16.255.255 scope global dynamic eth0
       valid_lft 680785sec preferred_lft 680785sec
    inet 172.16.30.90/16 brd 172.16.255.255 scope global secondary noprefixroute eth0
       valid_lft forever preferred_lft forever
    inet6 fe80::6610:ec0c:c173:16c2/64 scope link 
       valid_lft forever preferred_lft forever

인터페이스에 대해 정적 구성 파일을 설정했는데도 dhcpcd가 IP 주소를 요청하는 이유를 모르겠습니다. 아마도 뭔가를 놓친 것 같지만 무엇인지 모르겠습니다. 이것을 어떻게 피할 수 있습니까?

저는 Raspberry Pi 4에서 Arch Linux를 사용하고 있습니다.

답변1

이러한 상황에 직면한 사람은 여기를 참조하십시오. https://wiki.archlinux.org/title/Dhcpcd#Running

dhcpcd.service를 비활성화하고 필요한 인터페이스에 대해 활성화해야 합니다(예:[이메일 보호됨]). 이렇게 하면 트릭을 수행할 수 있습니다.

sudo systemctl disable --now dhcpcd.service
#sudo systemctl enable --now [email protected]
sudo ip link set eth0 down
sudo ip link set eth0 up

ps: 개인적으로 Arch ARM에 대해 논의하고 armv7과 armv8(aarch64) 사이에서 어떤 버전을 실행하고 있는지 알아보고 싶습니다. ;)

관련 정보