-
Por favor, faça apenas uma pergunta por vez. Uma pessoa útil pode saber uma resposta, mas hesite em responder por não conhecer a outra. Eu queria que este fosse o item 0, para corresponder à pergunta
-
Leia
man man
, que diz, em parte:A manual page consists of several sections. Conventional section names include NAME, SYNOPSIS, CONFIGURATION, DESCRIPTION, OPTIONS, EXIT STATUS, RETURN VALUE, ERRORS, ENVIRONMENT, FILES, VERSIONS, CONFORMING TO, NOTES, BUGS, EXAMPLE, AUTHORS, and SEE ALSO. The following conventions apply to the SYNOPSIS section and can be used as a guide in other sections. bold text type exactly as shown. italic text replace with appropriate argument. [-abc] any or all arguments within [ ] are optional. -a|-b options delimited by | cannot be used together. argument ... argument is repeatable. [expression] ... entire expression within [ ] is repeatable. Exact rendering may vary depending on the output device. For instance, man will usually not be able to render italics when running in a terminal, and will typically use underlined or coloured text instead.
-
Para ver se seu sistema acha que ele tem interfaces de rede em funcionamento:
ifconfig -a
, verifique os valoresUP
,inet addr:
einet6 addr:
reasonable; para ver mais alguns valores,sudo ifconfig -a
Para ver se seu sistema sabe para onde enviar os pacotes, ip route
e verifique se a rota default via
existe e menciona o endereço IP da interface "direita" de ifconfig -a
;
Para ver todos os sistemas no mesmo link Ethernet do seu sistema: arp -an
. Você deve ver pelo menos o endereço IP da rota default
e pode ver outros IPs.
Para outras informações de rede (estatísticas, contagens, etc.), consulte man 5 proc
(a /proc/net
part e man netstat
.