Муторно конечно но как вариант пойдёт.
даем команду route
смотри:
[root@video ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 10 0 0 eth0
172.24.0.0 192.168.1.1 255.255.0.0 UG 10 0 0 eth0
172.25.0.0 192.168.1.1 255.255.0.0 UG 10 0 0 eth0
link-local * 255.255.0.0 U 10 0 0 eth0
195.34.0.0 192.168.1.1 255.255.0.0 UG 10 0 0 eth0
default 192.168.1.1 0.0.0.0 UG 10 0 0 eth0
Удаляем ДЕФАЛТ:
[root@video ~]# route delete -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.1.1 dev eth0Смотрим - ДЕФАЛТА нет:
[root@video ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 10 0 0 eth0
172.24.0.0 192.168.1.1 255.255.0.0 UG 10 0 0 eth0
172.25.0.0 192.168.1.1 255.255.0.0 UG 10 0 0 eth0
link-local * 255.255.0.0 U 10 0 0 eth0
195.34.0.0 192.168.1.1 255.255.0.0 UG 10 0 0 eth0 назад вернем
route add -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.1.1 dev eth0Это все без перезагрузки...