IP Protocol

From Alessandro's Wiki
Revision as of 18:51, 20 January 2007 by Xunil (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  • Classi di Reti inet4
/8      /255.0.0.0              16,777,215      Chiamata classe A
/16     /255.255.0.0            65,535          Chiamata classe B
/17     /255.255.128.0          32,767
/18     /255.255.192.0          16,383
/19     /255.255.224.0          8,191
/20     /255.255.240.0          4,095
/21     /255.255.248.0          2,047
/22     /255.255.252.0          1,023
/23     /255.255.254.0          511
/24     /255.255.255.0          255             Chiamata classe C
/25     /255.255.255.128        127
/26     /255.255.255.192        63
/27     /255.255.255.224        31
/28     /255.255.255.240        15
/29     /255.255.255.248        7
/30     /255.255.255.252        3
  • pingare tutti gli ip di una rete classe A 192.168.1.255
for a in `seq 1 254`; do echo -n -e "\r   $a   ";ping -c1 192.168.1.$a|grep "bytes from "; done