Unix/Linux : Use netstat to find out IP addresses served by your website server
Problem :
You want to know if the real-time connection information served by Google Analytics is accurate and you need to compare with your web server's log. Perhaps, you just want to find out which IP addresses are being served by your website server. How to that in Unix or Linux ?
Solution :
Instead of relying on monitoring log files with tail -f
command. You can get real time information on the IP addresses currently being served by your web server.
Use the netstat -tn 2 > /dev/null
command to get the Active Internet connections information.
For example :
$>netstat -tn 2>/dev/null
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 162.243.5.230:443 113.102.185.8:55315 SYN_RECV
tcp 0 0 10.128.221.78:34371 10.128.148.90:3306 TIME_WAIT
tcp 0 0 127.0.0.1:9000 127.0.0.1:37494 TIME_WAIT
tcp 0 0 127.0.0.1:9000 127.0.0.1:37496 TIME_WAIT
tcp 0 0 162.243.5.230:443 212.33.233.43:54942 ESTABLISHED
tcp 0 0 162.243.5.230:443 212.33.233.43:54951 ESTABLISHED
tcp 0 0 10.128.221.78:34373 10.128.148.90:3306 TIME_WAIT
tcp 0 0 162.243.5.230:443 113.102.185.8:55314 ESTABLISHED
tcp 0 0 162.243.5.230:443 212.33.233.43:54944 ESTABLISHED
However, we need to filter out the connections that are connected to port 80(http) or 443(SSL - https connection). This can be done easily by piping the result from netstat
to grep
command. Change grep to :80 if your web server is not serving via https/SSL.
$> netstat -tn 2>/dev/null | grep :443
tcp 0 0 162.243.5.230:443 113.102.185.8:55315 SYN_RECV
tcp 0 0 162.243.5.230:443 212.33.233.43:54942 ESTABLISHED
tcp 0 0 162.243.5.230:443 212.33.233.43:54951 ESTABLISHED
tcp 0 0 162.243.5.230:443 113.102.185.8:55314 ESTABLISHED
tcp 0 0 162.243.5.230:443 212.33.233.43:54944 ESTABLISHED
Hope this system administration tip helps!
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+4.5k MariaDB/MySQL : Form select statement or search query with Chinese characters
+15k Golang : Find location by IP address and display with Google Map
+8.8k nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
+18.2k Golang : Example for RSA package functions
+11.3k CodeIgniter : Import Linkedin data
+19.6k Golang : How to get time from unix nano example
+5.8k Javascript : Get operating system and browser information
+4.5k Linux/MacOSX : How to symlink a file?
+22.6k Golang : Gorilla mux routing example
+11.7k Golang : Sort and reverse sort a slice of runes
+13.9k Elastic Search : Mapping date format and sort by date
+7.9k Golang : Auto-generate reply email with text/template package