Linux: Route

In linux il comando route visualizza e consente di modificare la tabella di routing.

linux-logo
Per visualizzare il contenuto della tabella si usa semplicemente il comando

# route

Kernel IP routing table
Destination     Gateway                    Genmask         Flags Metric     Ref    Use    Iface
192.168.5.0                 *               255.255.255.0           U              0         0        0    eth0
link-local                      *                    255.255.0.0            U     1002         0        0    eth0
default        192.168.5.1                           0.0.0.0         UG            0          0        0    eth0

Per aggiungere un percorso:

# route add -net 10.10.10.0/24 gw 192.168.0.1

Per cancellare un percorso:

# route del -net 10.10.10.0/24 gw 192.168.0.1

Per aggiungere un gateway di default:

# route add default gw 192.168.0.1

Lascia il tuo commento