У меня есть сервер убунту. Мне нужно использовать eth0, eth1, подключив два кабеля LAN. Редактирую сетевой интерфейс vi /etc/network/interface
. eth0 работает нормально, но доза eth1 не работает. В чем моя проблема?
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 292.16.1.201
netmask 255.255.255.0
network 10.1.1.0
broadcast 10.1.1.255
gateway 292.16.1.16
# dns-* options are implemented by the resolvconf package, if installed
dns-search quran.medu.ir
auto eth1
iface eth1 inet static
address 42.1.1.201
netmask 255.255.255.0
getway 42.1.1.16
В определении eth1 у вас есть плохое слово: getway
.
И BTW: вы можете использовать только один шлюз по умолчанию для каждой системы, тогда я советую вам удалить всю строку с помощью getway
.