ip address linux code example

Example 1: get public ip linux

curl ifconfig.me

Example 2: display ip address linux

#private ip
hostname -I
or
ifconfig
or
ip addr show

#public ip
curl ifconfig.me

Example 3: show ip address linux

$ hostname -I

Example 4: linux check ip address command

ifconfig -a

Example 5: new ip linux

Get new ip from DHCP (If not working, check your connection to router)
//Release ip
sudo dhclient -r [Interface name](optional)

//Renew ip
sudo dhclient [Interface name](optional)