Unverified Commit a127c4f8 authored by Niccolò Maggioni's avatar Niccolò Maggioni
Browse files

'ip' command compatibility and much quicker external IP detection

parent 192de6bc
...@@ -140,12 +140,16 @@ d0() { ...@@ -140,12 +140,16 @@ d0() {
# gather external ip address # gather external ip address
geteip() { geteip() {
curl http://ifconfig.me echo "$(curl -s -S http://ipecho.net/plain)"
} }
# determine local IP address # determine local IP address
getip() { getip() {
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}' if [ "$(which ip)" != "" ]; then
ip addr | grep "inet " | grep -v '127.0.0.1' | awk '{print $2}'
else
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'
fi
} }
# Clear zombie processes # Clear zombie processes
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment