방금 Ubuntu 17.10 서버를 설치했으며 설치 중에 IP 주소가 할당되었습니다 192.168.50.84
.
192.168.50.107
이제 DHCP 서버에 IP 주소를 예약했습니다 .
구성은 netplan
놀라웠고 제 생각에는 /etc/network/interfaces
훨씬 더 의미가 있었습니다.
서버가 재부팅될 때마다 IP 주소를 으로 설정 192.168.50.84
하고 DHCP에 IP 주소를 요청하지 않는 것 같습니다.
실행하면:
sudo dhclient -r; sudo dhclient
서버는 192.168.50.107
DHCP로부터 의도한 IP 주소( )를 가져옵니다.
그렇다면 에 무슨 문제가 있나요 netplan
? 부팅하거나 네트워크를 다시 시작할 때 IP 주소를 묻지 않는 이유는 무엇입니까? 부팅할 때마다 로그에 다음 줄이 표시됩니다.Mar 6 18:48:08 blues-web-proxy systemd-networkd[723]: eth0: DHCPv4 address 192.168.50.84/24 via 192.168.50.140
답장을 보내주셔서 감사합니다.
우리는 어떤 구성도 하지 않았습니다. 설치 프로세스에서는 프록시 서버를 사용해야 하는지 여부만 물었고, 아니요라고 대답했습니다.
/etc/netplan/01-netcfg.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: yes
/etc/네트워크/인터페이스
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# Generated by debian-installer.
# The loopback interface
auto lo
iface lo inet loopback
/etc/호스트
127.0.0.1 localhost
127.0.1.1 blues-web-proxy.bluescreen.local blues-web-proxy
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
답변1
가능한 netplan은 구성 방법에 따라 일부 잘못된 설정을 남겼습니다. /etc/network/interfaces, /etc/hostname 및 /etc/hosts와 같은 "고정 IP" 설정에 대한 일반적인 의심을 확인하십시오.