vote up 0 vote down star

When I type ifconfig, I see that my server has an new ip address each day. The ip addresses belong to a set of ip addresses.
How do I find out all the ip addresses of my server?

flag
Do you mean ip addresses which could be designated to your server or ip addresses available on your server? – Artem Barger May 26 at 19:04
This belongs on serverfault. What I think you are looking for is the DHCP server configuration so you can know the entire range of addresses that can potentially be assigned to your server. I don't know if there is any way to find this out, short of asking the DHCP admin. – Eddie May 26 at 19:08

5 Answers

vote up 2 vote down

I'm assuming you mean your server's IP address is assigned dynamically each day, and you want to know the pool of possible addresses your server can have. In that case, you can contact whoever is managing the DHCP server that assigns addresses in your network (or your ISP if the server is directly connected to the internet). If you want to know all the IPs your server has had int he past, you can put Lennart's answer in a cronjob.

ifconfig | grep inet | awk '{print $2}' >> .iplog

Or some such thing.

link|flag
vote up 2 vote down

Ask the people who adminster the dhcp server which assigns addresses to your server, it's the only way to know for sure.

You can relatively safely assume that your ipaddress always will be within ip-address binary-and netmask, there's however no guarantee of this behaviour, and chances are that the dhcp-servers address pool will be a subset of ipaddress & netmask.

Now, extrapolating, if you want to find out all the possible ip-addresses for your server because you want to be able to find it even after it has changed it's ip-address, I'd suggest checking out one of the dynamic dns providers on the internet.

link|flag
vote up 1 vote down

Or

# ip addr show

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 1000
    link/ether 00:0c:29:cc:ae:67 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.123/24 brd 192.168.0.255 scope global eth0
    inet6 fe80::20c:29ff:fecc:ae67/64 scope link
       valid_lft forever preferred_lft forever
link|flag
vote up 0 vote down

A very simple way that prints all your IPv4 and IPv6 addresses:

ifconfig | grep inet | awk '{print $2}'
link|flag
vote up 0 vote down

or:

#!/usr/bin/env bash

OS=`uname`
case $OS in
   Linux) IP=`ifconfig  | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'`;;
   Darwin|FreeBSD|OpenBSD) IP=`ifconfig  | grep -E 'inet.[0-9]' | grep -v '127.0.0.1' | awk '{ print $2}'` ;;
   SunOS) IP=`ifconfig -a | grep inet | grep -v '127.0.0.1' | awk '{ print $2} '` ;;
   *) IP="Unknown";;
esac
echo "$IP"

found here.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.