|
Forum Home | Broadbandinfo.com | Broadband Speed Test | Site Map |
|
|||||||
![]() |
|
|
Thread Tools | Display Modes |
|
#1 ()
|
|||
|
|||
|
#!/bin/bash
#status.sh #Save as status.sh If your running *nix you can use this small bash script to print out your System status, connection strength, and FAP status. Here it is: (be sure your modem is at 192.168.0.1 or adjust accordingly, script designed for use with HN700S) stat=`lynx -dump -nolist http://192.168.0.1/sys_status/ | sed -n 6p` ex=`lynx -dump -nolist http://192.168.0.1/sys_status/ | sed -n 25p` op=`lynx -dump -nolist http://192.168.0.1/status/status_bar | sed -n 6p` echo "Status:" $op echo "Signal:" $stat echo "Exceeded:" $ex ---------------------------------------------------------------- You can run 'watch -t -n 1 status.sh' for auto-refresh Last edited by dudeslce : 07-10-2008 at 08:44 PM. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|