find own ip address linux code example
Example 1: display ip address linux
#private ip
hostname -I
or
ifconfig
or
ip addr show
#public ip
curl ifconfig.me
Example 2: how to find public ip address in linux
$ wget -qO- http://ipecho.net/plain | xargs echo
$ wget -qO - icanhazip.com
120.88.41.175
Example 3: show ip address linux
$ hostname -I
Example 4: linux check ip address command
ifconfig -a
Example 5: get ip address linux
curl ifconfig.me