1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/ifconfig.md
2016-10-12 16:58:04 +01:00

363 B

ifconfig

Network Interface Configurator.

  • 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}}