O que a máscara 0.0.0.0 significa quando é atribuída a uma interface de rede?

2

Suponha que eu use ifconfig ou algum comando similar para configurar minha interface de rede, e eu atribuo 0.0.0.0 ao parâmetro mask. Tem um significado especial? Quais implicações isso poderia ter?

    
por dario_ramos 03.07.2011 / 23:44

2 respostas

4

0.0.0.0 geralmente significa que a interface de rede não está vinculada a nenhuma rede, nem mesmo as solicitações de localhost serão confirmadas. Se alguma coisa é uma forma de o sistema operacional apresentar a interface como disponível, mas inativa e não roteada.

    
por 03.07.2011 / 23:48
3

De ArsTechnica :

Think of a subnet mask as a filter for outbound traffic. The subnet mask helps the IP protocol decide which is local "LAN" traffic and what traffic needs to be forwarded to a router.

In effect a 0.0.0.0 subnet mask would make it so all outbound traffic is 'local' and nothing will ever be forwarded to a router. This configuration should work fine if there is no router (aka Default Gateway) on the network.

If you do need to route you can always add static routes on the house by using the ROUTE ADD command (Windows, other OS's should have the same/similar command).

Neste caso (com algumas edições por brevidade). Posso adicionar uma máscara de rede / 0 ou 0.0.0.0 a uma interface e ela funcionará em loopback e link-local:

root@host:/tmp# ip addr add 10.0.0.0/0 dev eth0
root@host:/tmp# ip addr show
root@host:/tmp# ip a s
1: lo: <LOOPBACK,UP,LOWER_UP> ...
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> ...
    link/ether fe:dc:ba:98:76:54 brd ff:ff:ff:ff:ff:ff
    inet 10.0.0.0/0 scope global eth0
       valid_lft forever preferred_lft forever
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> ...
    link/ether 01:23:45:67:89:ab brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.5/24 brd 192.168.1.255 scope global wlan0
       valid_lft forever preferred_lft forever
    inet6 fe80::226:c6ff:fe4b:e38e/64 scope link 
       valid_lft forever preferred_lft forever
root@host:/tmp# ping 10.0.0.0
PING 10.0.0.0 (10.0.0.0) 56(84) bytes of data.
64 bytes from 10.0.0.0: icmp_seq=1 ttl=64 time=0.033 ms
64 bytes from 10.0.0.0: icmp_seq=2 ttl=64 time=0.036 ms
^C
--- 10.0.0.0 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 999ms
rtt min/avg/max/mdev = 0.033/0.034/0.036/0.006 ms
    
por 16.11.2014 / 20:52