1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ifconfig.md
2024-11-01 23:36:20 +05:30

24 lines
485 B
Markdown

# ifconfig
> Network Interface Configurator.
> More information: <https://net-tools.sourceforge.io/man/ifconfig.8.html>.
- View network settings of an interface:
`ifconfig {{interface_name}}`
- Display details of all interfaces, including disabled interfaces:
`ifconfig -a`
- Disable an interface:
`ifconfig {{interface_name}} down`
- Enable an interface:
`ifconfig {{interface_name}} up`
- Assign an IP address to an interface:
`ifconfig {{interface_name}} {{ip_address}}`