Не получается настроить route. Есть 2 карточки eth1 и ra0. ra0 - карточка WiFi которая всегда в сети. Хочется сделать так - интернет по ra0, по eth1 - локальная сеть, однако не получилось настроить. После включения кабеля, сразу пропадает интернет на компьютере.
До подключения eth1
root@GreenEye:/home/usr# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.1.0 * 255.255.255.0 U 2 0 0 ra0 default 192.168.1.1 0.0.0.0 UG 0 0 0 ra0
После подключения
root@GreenEye:/home/usr# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.1.0 * 255.255.255.0 U 2 0 0 ra0 192.168.0.0 * 255.255.255.0 U 1 0 0 eth1 default 192.168.0.1 0.0.0.0 UG 0 0 0 eth1
По совету, который нашел в поиске сделал такой /etc/network/interfaces root@GreenEye:/home/usr# cat /etc/network/interfaces # 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
iface ra0 inet dhcp up ifmetric eth0 30
iface eth1 inet dhcp up ifmetric eth1 20
iface eth1 inet dhcp up ifmetric eth0 10
# The primary network interface #allow-hotplug ra0 #allow-hotplug eth0 #NetworkManager#iface eth0 inet dhcp
Как установить нужные приоритеты на сетевые карты?