diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | scripts/netstat-out.sh | 10 |
2 files changed, 11 insertions, 0 deletions
@@ -1 +1,2 @@ +security/* example.conf diff --git a/scripts/netstat-out.sh b/scripts/netstat-out.sh new file mode 100755 index 0000000..57fcc28 --- /dev/null +++ b/scripts/netstat-out.sh @@ -0,0 +1,10 @@ +#! /bin/bash + +# Finish later... By app first. Than destinations. Separate firefox, chromium, etc.? What else? +query="" +for port in `netstat -ntup | tail -n +3 | grep -v "127.0.0.1" | awk -e '{print $4}' | rev | cut -d ':' -f 1 | rev | sort -n | uniq`; do + [ $port -gt 32768 ] && continue; + [ -z "$query" ] && query="sport = :$port" || query="$query or sport = :$port" +done + +eval /sbin/ss -nrtu state established "'( $query ) '" | tail -n +2 | grep -v localhost | awk -F'[:\t ]+' -e '$6 != $4 { print $6, $5 }' |