Qual é a rota dentro de uma rede local?

1

O endereço IP do meu wlan1 é 192.168.1.3 .

$ netstat -r
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
default         192.168.1.1     0.0.0.0         UG        0 0          0 wlan1
192.168.1.0     *               255.255.255.0   U         0 0          0 wlan1

A segunda entrada na tabela significa que, se o destino estiver na mesma rede local que wlan1 , o datagrama não será encaminhado para um gateway ( * for Gateway )?

Qual é a rota para um datagrama de wlan1 para um endereço IP em 192.168.1.0/24 ?

O que significa UG em Flags ?

    
por Tim 24.10.2015 / 19:12

1 resposta

1

Você está correto em dizer que a entrada * na coluna Gateway significa que o pacote é mantido na rede local.

Na coluna Flags , o U significa que a rota está ativa, enquanto o G significa que a rota é para um gateway.

Outras opções que podem aparecer na coluna Flags são:

U : This flag signifies that the route is up
G : This flag signifies that the route is to a gateway. If this flag is not present then we can say that the route is to a directly connected destination
H : This flag signifies that the route is to a host which means that the destination is a complete host address. If this flag is not present then it can be assumed that the route is to a network and destination would be a network address.
D : This flag signifies that this route is created by a redirect.
M : This flag signifies that this route is modified by a redirect.

Fonte: link

    
por 24.10.2015 / 23:28

Tags