| Mostra Todas as configurações | ifconfig |
| Mostra as configurações da eth0 | ifconfig eth0 |
| Adicionar este ip | ifconfig eth0 192.168.1.2 |
| Adicionar este ip/sub mascara | ifconfig eth0 192.168.1.2 netmask 255.255.255.0 |
| Adicionar gateway: padrão | route add default gw 192.168.1.1 |
| Adicionar ips múltiplos | ifconfig eth0:0 192.168.1.2 |
| Adicionar ip secundário | ifconfig eth0:1 192.168.1.3 |
| Desabilitar a rede | ifconfig eth0 down |
| Habilitar a rede | ifconfig eth0 up |
| Ver tabela de roteamento | route “or” route -n |
| Ver cache do arp | arp “or” arp -n |
| Teste resposta | ping -c 3 192.168.1.1 |
| Traçar Rota do IP | traceroute <endereço> |
| Traçar Path | tracepath <endereço> |
| Teste DNS | host <endereço> |
| Teste Avançado do DNS | dig <endereço> |
| Teste reverso DNS | host <ip> |
| Teste avançado reverso DNS | dig -x <ip> |