From: Siraaj Khandkar Date: Sun, 1 Nov 2020 20:01:14 +0000 (-0500) Subject: Add net reporting on UDP servers and ESTABLISHED conns X-Git-Url: https://git.xandkar.net/?p=khome.git;a=commitdiff_plain;h=857e80acff709b05a4f4c2ade3911df7593c0ec8 Add net reporting on UDP servers and ESTABLISHED conns --- diff --git a/home/lib/login_functions.sh b/home/lib/login_functions.sh index a497cbc..51bc7f5 100644 --- a/home/lib/login_functions.sh +++ b/home/lib/login_functions.sh @@ -455,7 +455,7 @@ motd() { echo echo 'Network' - echo "${indent_unit}interfaces:" + echo "${indent_unit}if" (ifconfig; iwconfig) 2> /dev/null \ | awk ' /^[^ ]/ { @@ -499,12 +499,32 @@ motd() { | indent "${indent_unit}${indent_unit}" # WARN: ensure: $USER ALL=(ALL) NOPASSWD:/bin/netstat - echo "${indent_unit}TCP servers" + + echo "${indent_unit}-->" + + printf '%sUDP: ' "${indent_unit}${indent_unit}" + sudo -n netstat -ulnp \ + | awk 'NR > 2 {print $6}' \ + | awk -F/ '{print $2}' \ + | sort -u \ + | xargs \ + | column -t + + printf '%sTCP: ' "${indent_unit}${indent_unit}" sudo -n netstat -tlnp \ | awk 'NR > 2 {print $7}' \ | awk -F/ '{print $2}' \ | sort -u \ | xargs \ - | column -t \ - | indent "${indent_unit}${indent_unit}" + | column -t + + echo "${indent_unit}<->" + + printf '%sTCP: ' "${indent_unit}${indent_unit}" + sudo -n netstat -tnp \ + | awk 'NR > 2 && $6 == "ESTABLISHED" {print $7}' \ + | awk -F/ '{print $2}' \ + | sort -u \ + | xargs \ + | column -t }