![netctl: 인터페이스를 시작한 후 몇 초 후에 고정 IP 구성이 자동으로 손실됩니다.](https://rvso.com/image/1628416/netctl%3A%20%EC%9D%B8%ED%84%B0%ED%8E%98%EC%9D%B4%EC%8A%A4%EB%A5%BC%20%EC%8B%9C%EC%9E%91%ED%95%9C%20%ED%9B%84%20%EB%AA%87%20%EC%B4%88%20%ED%9B%84%EC%97%90%20%EA%B3%A0%EC%A0%95%20IP%20%EA%B5%AC%EC%84%B1%EC%9D%B4%20%EC%9E%90%EB%8F%99%EC%9C%BC%EB%A1%9C%20%EC%86%90%EC%8B%A4%EB%90%A9%EB%8B%88%EB%8B%A4..png)
Hyper-V의 Arch Linux에서 netctl을 사용하고 있습니다. 두 개의 이더넷 인터페이스 eth0과 eth1이 있습니다.
IP 구성:
- eth0: dhcp(자동 구성, netctl 관련 없음)
- eth1: netctl 프로필을 사용하는 고정 IP(10.10.10.1/8)
- dhcpcd가 시작 시 설치 및 활성화됨
- NetworkManager가 시작 시 설치 및 활성화됨
eth1 netctl 프로필(/etc/netctl/sth1static):
Description='Static IP config for eth1'
Interface=eth1
Connection=ethernet
IP=static
Address=('10.10.10.1/8')
Gateway='10.10.10.2'
DNS=('10.10.10.2')
인터페이스를 시작하려면 다음과 같이 하십시오.
# netctl stop eth1static
# ip link set eth1 down
# # netctl start eth1static
# # netctl enable eth1static
위 단계를 수행한 후 1ip a fe80:` 기반 IPv6 주소만 사용하여 인터페이스에 적용된 고정 IP 구성을 볼 수 . Also I am able to ping the guest interface from my host OS successfully. However after a minute or so, I see the interface lose its configuration and gets a
있으며 핑 작동이 중지됩니다... 재부팅 후에도 IP 구성이 표시되지 않습니다. 다른 인터페이스(eth0)는 정상적으로 작동합니다.
누구든지 무엇이 잘못되고 해결 방법을 제안할 수 있습니까?