0

I have access to a server via its local IP (I use putty) and I know the server has a static IP, how can I found its static(fix) IP? Its OS is CentOS.

Handsome Nerd
  • 107
  • 10

2 Answers2

3

Enter ifconfig at the command line.

xofer
  • 3,052
  • 12
  • 19
  • Note that ifconfig will show the actual IP address assigned to the network interface, where the external sources listed in comments/answers will show the IP as it appears to, er, those external sources. This may be different in some situations, so check both. – xofer Nov 27 '12 at 18:35
1

For example:

links -dump http://whatismyip.com | egrep "([0-9]+.){3}"

Of course you can use another site, but this is one of most popular.

Tomasz Olszewski
  • 868
  • 9
  • 20