show ip address
ip address show
show mac address
ip link show
or 1st 2 lines of ip address show
how to turn off a network interface
sudo ip link set linkName down
linkName will be the network interface name for example enp0s3. It can be found by running ip address show
how to add an ip address to a network interface
sudo ip addr add 192.168.1.10/24 enp0s3
how to remove an ip address from a network interface
sudo ip addr delete 192.168.1.10/24 enp0s3