Changeset 589
- Timestamp:
- 12/19/10 15:31:56 (17 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/nightwing-wa/nightwing/www/cgi-bin/clients.html
r587 r589 35 35 <h2>Client Information</h2> 36 36 <ul> 37 <li><b>Currently authenticated Clients in Public AP:</b> $( a=`ndsctl status | grep "Current clients" | awk '{ print $3 }'`; if [ $a -gt 0 ]; then echo $a; else echo "0"; fi )</li>37 <li><b>Currently authenticated Clients in Public AP:</b> $( a=`ndsctl clients | grep -c "state=Authenticated"`; if [ $a -gt 0 ]; then echo $a; else echo "0"; fi )</li> 38 38 <li><b>Clients currently connected to the Public AP:</b> $( a=`wlanconfig ath0 list | wc -l`; if [ $a -gt 0 ]; then echo `expr $a - 1`; else echo "0"; fi )</li> 39 39 </ul>