1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 19:19:44 +01:00

ip address: add page (#3930)

This commit is contained in:
Starbeamrainbowlabs 2020-03-27 13:37:59 +00:00 committed by GitHub
parent 72114be857
commit a687c64e3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
pages/linux/ip-address.md Normal file
View file

@ -0,0 +1,27 @@
# ip address
> IP Address management subcommand.
- List network interfaces and their associated IP addresses:
`ip address`
- Filter to show only active network interfaces:
`ip address show up`
- Display information about a specific network interface:
`ip address show dev {{network_interface}}`
- Add an IP address to a network interface:
`ip address add {{ip_address}} dev {{network_interface}}`
- Remove an IP address from a network interface:
`ip address delete {{ip_address}} dev {{network_interface}}`
- Delete all IP addresses in a given scope from a network interface:
`ip address flush dev {{network_interface}} scope {{global|host|link}}`