2020-10-22 02:37:18 +03:00
|
|
|
# ifconfig
|
|
|
|
|
|
|
|
> Configurateur des interfaces réseau.
|
|
|
|
|
2020-10-22 02:41:12 +03:00
|
|
|
- Affiche les paramètres de réseau d'un adaptateur ethernet :
|
2020-10-22 02:37:18 +03:00
|
|
|
|
2020-10-22 06:26:43 +03:00
|
|
|
`ifconfig {{eth0}}`
|
2020-10-22 02:37:18 +03:00
|
|
|
|
|
|
|
- Affiche les détails de toutes les interfaces, y compris les interfaces
|
2020-10-22 02:41:12 +03:00
|
|
|
désactivées :
|
2020-10-22 02:37:18 +03:00
|
|
|
|
|
|
|
`ifconfig -a`
|
|
|
|
|
2020-10-22 02:41:12 +03:00
|
|
|
- Désactive l'interface eth0 :
|
2020-10-22 02:37:18 +03:00
|
|
|
|
2020-10-22 06:26:55 +03:00
|
|
|
`ifconfig {{eth0}} down`
|
2020-10-22 02:37:18 +03:00
|
|
|
|
2020-10-22 02:41:12 +03:00
|
|
|
- Active l'interface eth0 :
|
2020-10-22 02:37:18 +03:00
|
|
|
|
2020-10-22 06:27:02 +03:00
|
|
|
`ifconfig {{eth0}} up`
|
2020-10-22 02:37:18 +03:00
|
|
|
|
2020-10-22 02:41:12 +03:00
|
|
|
- Assigne une addresse IP à l'interface eth0 :
|
2020-10-22 02:37:18 +03:00
|
|
|
|
|
|
|
`ifconfig eth0 {{addresse_ip}}`
|