DHCP로 구성된 eth0과 고정 IP 주소로 구성된 eth1의 두 가지 인터페이스가있는 Ubuntu 16.04 시스템이 있습니다.
/ etc / network / interfaces 파일에는 다음 구성이 있습니다
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
# The Secondary network interface
auto eth1
iface eth1 inet static
address 10.10.1.10
netmask 255.255.255.0
dns-nameservers 74.82.42.42 4.2.2.2
## Virtual Interfaces for virtual hosts
auto eth1:11
iface eth1:11 inet static
address 10.10.1.11
netmask 255.255.255.0
auto eth1:12
iface eth1:12 inet static
address 10.10.1.12
netmask 255.255.255.0
auto eth1:13
iface eth1:13 inet static
address 10.10.1.13
netmask 255.255.255.0
문제는 eth0 링크에서 DHCP 서버를 사용할 수 없거나 eth0 링크가 다운 된 경우 시스템이 5 분 동안 정지되어 부팅 프로세스가 상당히 느려진다는 것입니다.
violet@ubuntu-xenial:~$ systemd-analyze blame
5min 241ms networking.service
1.529s nmbd.service
1.524s winbind.service
/etc/systemd/system/network-online.target.wants/networking.service 파일에서 시간을 줄여 네트워크 서비스를 기다리지 않고 시스템을 더 빨리 부팅 할 수 있지만 eth1에서 가상 인터페이스를로드하지 못합니다.
eth0 인터페이스에서 전체 네트워크 구성없이 시스템을 부팅하고 eth1에서 모든 정적 네트워크 구성을 계속로드 할 수있는 더 확실한 방법이 있습니까?