How to retrieve the IP address under Linux ?
For private ip address
reference: 3 Easy Ways to Find IP address in Linux
To show the interfaces of the system :
ip address show
lo is the loopback address. In general, it’s 127.0.0.1/8.
To filter a device :
ip address show dev eth1
The IPv4 addres...
learnlinux.hashnode.dev1 min read