Debian 11 dhcp는 여러 인터페이스에 IP를 할당합니다.

Debian 11 dhcp는 여러 인터페이스에 IP를 할당합니다.

광섬유에 연결된 여러 인터페이스(예: eth0 및 ensp1)가 있는 서버가 있습니다. 이 두 연결은 이 시스템이 여러 작업에서 사용되고 원격이므로 하나의 인터페이스를 물리적으로 연결 해제할 수 없기 때문에 필요합니다.

Debian 11을 설치하려고 하는데 설치 중에 eth0에 수동으로 IP 주소를 제공하려고 해도 다른 인터페이스가 다른 IP 주소를 얻는다는 것을 발견했습니다. 또한 시스템을 다시 시작하면 eth0의 IP 주소가 변경됩니다.

update-rc.d -f dhcp 제거를 시도했지만 목표를 달성하지 못했습니다.

답변1

구성해야 합니다./etc/network/interfaces

구성 예:

# for loopback
auto lo
iface lo inet loopback

# dhcp for eth0
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp

# you can do the same for ensp1
auto ensp1
allow-hotplug ensp1
iface ensp1 inet dhcp

# manual ip for eth0
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0

# YOU CAN ADD MORE IP'S TO THE INTERFACES WITH eth0:0, eth0:1 eth0:2, etc..
# more than one ip for eth0
auto eth0:0
allow-hotplug eth0:0
iface eth0:0 inet static
address 10.0.0.100
netmask 255.255.0.0

# You can do the same for ensp1
auto ensp1
allow-hotplug ensp1
iface ensp1 inet static
address 192.178.178.10
netmask 255.255.255.0

# You can do the same for ensp1:0
auto ensp1:0
allow-hotplug ensp1:0
iface ensp1:0 inet static
address 10.10.10.10
netmask 255.255.0.0

한 머신에서는 1개의 인터페이스에 DHCP와 3개의 고정 IP를 사용합니다.

# You can add also a nameserver for eth0, ensp1:0, etc..,
# but i prefer the nameserver in /etc/resolve.conf

auto ensp1:0
allow-hotplug ensp1:0
iface ensp1:0 inet static
address 10.10.10.10
netmask 255.255.0.0
dns-nameserver 10.10.x.x
dns-nameservers 8.8.8.8
nameserver x.x.x.x

nameserver편집을 위해/etc/resolve.conf

nameserver 192.168.x.x # local `
nameserver 8.8.8.8     # google 
nameserver x.x.x.x     # whatever`

(DNS) 이름 서버 정의, resolv.conf 구성 파일

인터페이스 파일에서 해결 옵션을 변경한 후 resolv.conf를 새로 고치는 방법은 무엇입니까?

편집 후 재부팅하고 네트워크 상태를 확인할 수 있습니다.

systemctl restart networking

또는

systemctl restart networking.service

또는

/etc/init.d/networking restart

상태

systemctl status networking.service

/etc/netwotk/interfaces귀하의 요구 에 적합

필요하신 분들은 이 포스팅을 읽어보세요인터페이스의 추가 정보:

네트워크 장치/인터페이스 정보

데비안 네트워크 구성 확인:

데비안 네트워크 구성

관련 정보