Добавление дополнительного IP адреса Debian10

Для добавления дополнитлеьного IP адреса делаем следующее: Открываем файл /etc/network/interfaces, с помощью команды:

nano /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
allow-hotplug eno1
iface eno1 inet static
	address 81.16.141.213/24
	gateway 81.16.141.1
	# dns-* options are implemented by the resolvconf package, if installed
	dns-nameservers 8.8.8.8
	dns-search com

Где eno1 — это существующий интерфейс.

Для добавления новго IP адреса меняем содержимое файла на следующее:

# 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
allow-hotplug eno1
iface eno1 inet static
	address 81.16.141.213/24
	gateway 81.16.141.1
	# dns-* options are implemented by the resolvconf package, if installed
	dns-nameservers 8.8.8.8
	dns-search com
#Additional IP
auto eno2
iface eno2 inet static
        address 193.56.186.103
        dns-nameservers 8.8.8.8
        dns-search com

Т.е. добавляем блок Additional IP.

Я назвал интерфейс eno2, Вы можете назвать по-своему.

В строке «address 193.56.186.103» указываете свой дополнительный IP адрес. Если шлюз у адресов один и тот же, то в gateway указывать не нужно, т.к. это вызовет ошибку.

Сохранение файла «Ctrl+O» и выход «Ctrl+X».

Далее остается только поднять интерфейс, это можно сделать с помощью команды:

ifup eno2

Проверяем:

ifconfig

Добавить комментарий