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
+12.4k Golang : Print UTF-8 fonts on image example
+4.7k Mac OSX : Get disk partitions' size, type and name
+5.2k Golang : Display packages names during compilation
+20.3k Golang : Convert seconds to human readable time format example
+7.5k Golang : Convert source code to assembly language
+8.2k Golang : Append and add item in slice
+7.6k Golang : How to handle file size larger than available memory panic issue
+42.1k Golang : How do I convert int to uint8?
+6.1k Golang : Function as an argument type example
+10.3k Golang : How to tokenize source code with text/scanner package?
+11.2k How to test Facebook App on localhost ?
+8.4k Golang : Auto-generate reply email with text/template package