mirror of https://github.com/CrimsonTome/tldr.git
24 lines
446 B
Markdown
24 lines
446 B
Markdown
# ifconfig
|
||
|
||
> Configurateur des interfaces réseau.
|
||
|
||
- Affiche les paramètres de réseau d'un adaptateur ethernet :
|
||
|
||
`ifconfig {{eth0}}`
|
||
|
||
- Affiche les détails de toutes les interfaces, y compris les interfaces désactivées :
|
||
|
||
`ifconfig -a`
|
||
|
||
- Désactive l'interface eth0 :
|
||
|
||
`ifconfig {{eth0}} down`
|
||
|
||
- Active l'interface eth0 :
|
||
|
||
`ifconfig {{eth0}} up`
|
||
|
||
- Assigne une adresse IP à l'interface eth0 :
|
||
|
||
`ifconfig {{eth0}} {{addresse_ip}}`
|