Files
tldr/pages.fr/common/ifconfig.md
lincc 03e2e3389e ifconfig: add more information link (#6218)
Co-authored-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>
Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
2021-07-12 12:21:22 +05:30

25 lines
525 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ifconfig
> Configurateur des interfaces réseau.
> Plus d'informations: <https://net-tools.sourceforge.io/man/ifconfig.8.html>.
- 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}}`