
ip-address
List of commands for ip-address:
-
ip-address:tldr:05f62 ip-address: Display information about a specific network interface.$ ip address show dev ${eth0}try on your machineexplain this command
-
ip-address:tldr:2863b ip-address: Add an IP address to a network interface.$ ip address add ${ip_address} dev ${eth0}try on your machineexplain this command
-
ip-address:tldr:50d7e ip-address: List network interfaces and their associated IP addresses.$ ip addresstry on your machineexplain this command
-
ip-address:tldr:5191a ip-address: Delete all IP addresses in a given scope from a network interface.$ ip address flush dev ${eth0} scope ${select}try on your machineexplain this command
-
ip-address:tldr:74a9c ip-address: Remove an IP address from a network interface.$ ip address delete ${ip_address} dev ${eth0}try on your machineexplain this command
-
ip-address:tldr:773cf ip-address: Filter to show only active network interfaces.$ ip address show uptry on your machineexplain this command