Hello guys,<br><br>I have created a script to list connected users:<br>You can add it to Nagios if you want to know connected users.<br><br>grep -v &quot;Open\|ROUT\|GLO\|Max\|Up\|Common\|END\|^1&quot; /var/open/packt.status | cut -f1 -d, | fmt -u -w200<br>
<br>Look that you can extract more fields just changing -f1 to for example, -f1,2,3.<br>But for nagios you are limited to a maximun number of chars... I don&#39;t remember how much...<br><br>Good luck<br><br><br>