mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-15 04:50:40 +03:00
24 lines
447 B
Markdown
24 lines
447 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}}`
|