hi i wanted to monitor tcp connections on specific ports so i created one ssh script which i kept in /var/prtg/scripts
scripts contents as follows
- !/bin/bash netstat -anp |egrep '(8081|8082|8083|8885)' |grep ESTABLISHED | awk '{print $1,$4,$5}'
which gives me error Response not wellformed: IP :PORT IP:PORT (code: PE132) i believe value:message is some setting is missing, i downt know to put where exactly or how can i get output in PRTG so that i can keep monitoring for the TCP Connections. Thanks in advance
Add comment