xxxxxxxxxx
# show IP address of current linux machine
ip addr show
xxxxxxxxxx
#private ip
hostname -I
or
ifconfig
or
ip addr show
#public ip
curl ifconfig.me
xxxxxxxxxx
# private
interface="lo"
ip addr | grep "inet\b" | grep "\b${interface}.*$" | awk '{gsub(/\/.+/,"",$2); print $2}'
# public
curl ifconfig.me
xxxxxxxxxx
# The following commands allow you to get ip address in Linux. Open a terminal. Type any of the following command. Press Enter. The Ip address is next to inet.
ip address
ip address show eth0
ifconfig -a
ifconfig eth0
ip route
ip route show dev eth0
ip addr
ip addr show
ifconfig -a
ip route
xxxxxxxxxx
ip addr
ip addr show eth0
ifconfig -a
ifconfig eth0
ip route
ip route show dev eth0
xxxxxxxxxx
ip addr show | grep inet | grep -v inet6 | awk '{print $2}' | cut -d '/' -f 1