Skip to content

Instantly share code, notes, and snippets.

@s4l1h
Created December 20, 2012 16:21
Show Gist options
  • Save s4l1h/4346365 to your computer and use it in GitHub Desktop.
Save s4l1h/4346365 to your computer and use it in GitHub Desktop.
Sunucunun 80 portuna istek gönderen unique ip adres sayısını gösterir.
#/bin/sh
netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1|wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment