Selaa lähdekoodia

ip address: add page (#3930)

Starbeamrainbowlabs 5 vuotta sitten
vanhempi
commit
a687c64e3f
1 muutettua tiedostoa jossa 27 lisäystä ja 0 poistoa
  1. 27 0
      pages/linux/ip-address.md

+ 27 - 0
pages/linux/ip-address.md

@@ -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}}`