; Gedächnisstüze, brauch ich bestimmt nie wieder aber man hats mal aufgeschrieben ; Wir wollen vom Gateway (bert) 192.168.0.1 auf (ernie) 192.168.0.200 switchen. witchdoc@oskar:~$ netstat -r Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface localnet * 255.255.255.0 U 40 0 0 eth0 default bert.home.lan 0.0.0.0 UG 40 0 0 eth0 ; default route und Gateway löschen. # route del default gw 192.168.0.1 netmask 0.0.0.0 witchdoc@oskar:~$ netstat -r Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface localnet * 255.255.255.0 U 40 0 0 eth0 ; neue default route einfügen und Gateway hinzutun #route add default gw 192.168.0.200 netmask 0.0.0.0 ; Kontrolle obs geklappt hat. witchdoc@oskar:~$ netstat -r Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface localnet * 255.255.255.0 U 40 0 0 eth0 default ernie.home.lan 0.0.0.0 UG 40 0 0 eth0 fertig!