Имеется Ubuntu сервер. В нем установлено два сетевых адаптера (enp3s0 и enp4s0).
Первый подключен к роутеру с выходом в интернет, второй - в сеть без выхода в интернет.
Какие настройки задать, чтобы по умолчанию сервер ломился в интернет через enp3s0?
# 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
iface enp3s0 inet static
address 192.168.1.252
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4
auto enp3s0
# The slave network interface
iface enp4s0 inet static
address 10.44.243.252
netmask 255.255.255.240
gateway 10.44.243.254
dns-nameservers 10.44.243.254
auto enp4s0
allow-hotplug enp4s0