mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 12:41:53 +00:00
30 lines
532 B
Plaintext
30 lines
532 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# ifconfig
|
|
|
|
> Network Interface Configurator.
|
|
> More information: <https://net-tools.sourceforge.io/man/ifconfig.8.html>.
|
|
|
|
- View network settings of an Ethernet adapter:
|
|
|
|
`ifconfig eth0`
|
|
|
|
- Display details of all interfaces, including disabled interfaces:
|
|
|
|
`ifconfig -a`
|
|
|
|
- Disable eth0 interface:
|
|
|
|
`ifconfig eth0 down`
|
|
|
|
- Enable eth0 interface:
|
|
|
|
`ifconfig eth0 up`
|
|
|
|
- Assign IP address to eth0 interface:
|
|
|
|
`ifconfig eth0 {{ip_address}}`
|