mirror of https://github.com/CrimsonTome/tldr.git
25 lines
443 B
Markdown
25 lines
443 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 addresse IP à l'interface eth0 :
|
|
|
|
`ifconfig {{eth0}} {{addresse_ip}}`
|