Archivi tag: networking

IPv4 CIDR chart

Classless Inter-Domain Routing (CIDR) is a method for allocating IP addresses and IP routing. The Internet Engineering Task Force introduced CIDR in 1993 to replace the previous addressing architecture of classful network design in the Internet. Its goal was to slow the growth of routing tables on routers across the Internet, and to help slow the rapid exhaustion of IPv4 addresses.

IP addresses are described as consisting of two groups of bits in the address: the most significant bits are the network prefix, which identifies a whole network or subnet, and the least significant set forms the host identifier, which specifies a particular interface of a host on that network. This division is used as the basis of traffic routing between IP networks and for address allocation policies.

Come cercare la posizione geografica di un indirizzo IP dalla riga di comando

Se si desidera cercare la posizione geografica di un indirizzo IP esistono diversi servizi online, come ad esempio Geo IP Tool. Tra questi è possibile provare il servizio ipinfo.io. A differenza di altri, ipinfo.io fornisce API di geolocalizzazione basate su JSON, quindi puoi facilmente cercare la geolocalizzazione dalla riga di comando, usando strumenti come curl.

Per esempio:

$ curl ipinfo.io/216.58.205.163

{
"ip": "216.58.205.163",
"hostname": "mil04s28-in-f3.1e100.net",
"city": "Mountain View",
"region": "California",
"country": "US",
"loc": "37.4192,-122.0570",
"postal": "94043",
"org": "AS15169 Google LLC"
}

Speedtest a riga di comando

In OS X è possibile eseguire un semplice test di velocità della propria linea dati in download digitando da Terminale il comando:

$ curl -o /dev/null http://speedtest.wdc01.softlayer.com/downloads/test10.zip

Per rendere il tutto più semplice possiamo creare un alias, editando il proprio file .bashrc e aggiungere la riga che segue:

alias speedtest='curl -o /dev/null http://speedtest.wdc01.softlayer.com/downloads/test10.zip'

Così sarà sufficiente digitare al prompt semplicemente:

$ speedtest

 

Verifica delle porte in ascolto

Diversamente dall’esempio con nc, utilizzato per verificare se una data porta è aperta o chiusa, il seguente comando emesso dalla console, che fa uso del comando nmap, determina quali sono le porte in ascolto dalla rete per collegamenti TCP:

#  nmap -sT -O localhost

L’output fornito mostra l’elenco delle porte e la tipologia del servizio offerto da ciascuna.