summaryrefslogtreecommitdiffstats
path: root/scripts/netstat-out.sh
blob: 57fcc28d8c14ddf65b66bc6379f2983046c537ea (plain)
1
2
3
4
5
6
7
8
9
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 }'