2020-10-22 00:37:18 +01:00
|
|
|
# ifconfig
|
|
|
|
|
|
|
|
> Configurateur des interfaces réseau.
|
2021-10-07 08:37:39 +01:00
|
|
|
> Plus d'informations : <https://net-tools.sourceforge.io/man/ifconfig.8.html>.
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Affiche les paramètres de réseau d'un adaptateur ethernet :
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2020-10-22 04:26:43 +01:00
|
|
|
`ifconfig {{eth0}}`
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Affiche les détails de toutes les interfaces, y compris les interfaces désactivées :
|
2020-10-22 00:37:18 +01:00
|
|
|
|
|
|
|
`ifconfig -a`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Désactive l'interface eth0 :
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2020-10-22 04:26:55 +01:00
|
|
|
`ifconfig {{eth0}} down`
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Active l'interface eth0 :
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2020-10-22 04:27:02 +01:00
|
|
|
`ifconfig {{eth0}} up`
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Assigne une adresse IP à l'interface eth0 :
|
2020-10-22 00:37:18 +01:00
|
|
|
|
2020-10-22 04:27:08 +01:00
|
|
|
`ifconfig {{eth0}} {{addresse_ip}}`
|