Image

지식 기반 → Linux Debian 11에서 여러 IP로 네트워크 설정하기

[가상 서버]
출판 날짜: 09.10.2023

기본적으로 ISO 이미지에서 Linux Debian 11을 설치할 때 네트워크 인터페이스에 IP 주소 1개를 할당하는 데 사용할 수 있는 필드가 있습니다. 이 네트워크 인터페이스에 IP 주소를 여러 개 더 추가해야 하는 경우 다음 구성을 사용하십시오:

vi /etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto ens3
iface ens3 inet static
	address 89.111.186.200
	netmask 255.255.255.0
	broadcast +
	up route -A inet add 89.111.186.1 dev ens3
	up route -A inet add default gw 89.111.186.1 dev ens3

auto ens3:1
iface ens3:1 inet static
	address 89.111.186.201
	netmask 255.255.255.0
	broadcast +

auto ens3:2
iface ens3:2 inet static
	address 89.111.186.202
	netmask 255.255.255.0
	broadcast +

auto ens3:3
iface ens3:3 inet static
	address 89.111.186.203
	netmask 255.255.255.0
	broadcast +

iface ens3 inet6 manual
	pre-down ip -6 addr flush dev ens3 scope global || :

변경한 후에는 네트워크 서비스를 다시 시작해야 합니다:

/etc/init.d/networking restart

DNS 서버가 파일에 지정되어 있습니다:

vi /etc/resolv.conf

nameserver 8.8.8.8
nameserver 8.8.4.4




No Comments Yet