Script examples

From DD-WRT Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 04:41, 1 September 2006 (edit)
Drakcap (Talk | contribs)
(Simple Hacks/Tweaks - added 'log your startup')
← Previous diff
Revision as of 04:41, 1 September 2006 (edit) (undo)
Drakcap (Talk | contribs)
m (Log Your Startup - 'and')
Next diff →
Line 153: Line 153:
/jffs/startup.sh > /tmp/startup.log 2>&1 /jffs/startup.sh > /tmp/startup.log 2>&1
-Your standard & error output from the scripts will be viewable in startup.log. /tmp is stored in volatile memory (RAM) and will be erased each startup showing only the current error or success messages. It is not recommended to use /jffs for logs due to increased flash wear.+Your standard and error output from the scripts will be viewable in startup.log. /tmp is stored in volatile memory (RAM) and will be erased each startup showing only the current error or success messages. It is not recommended to use /jffs for logs due to increased flash wear.
- +
===Change Root Username=== ===Change Root Username===

Revision as of 04:41, 1 September 2006

Contents


Which IP addresses and hostnames are used for wireless clients?

Note: Only work if you get an IP address from DHCP

 # mkdir -p /tmp/www
 while [ 1 ];
  do
  wl assoclist | awk '{print$2}' > /tmp/assocLIST
  # echo "<meta http-equiv="refresh" content="10"><b>Hostnames and IP addresses of WLAN clients</b> (last update: $(date))<p>" > /tmp/www/wlan.html
  while read assocLINE
   do
     dumpleases | grep -i $assocLINE | awk '{print "Hostname: " $1, "MAC: " $2, "IP: " $3}'
   # echo "<br>";
        done < /tmp/assocLIST     # >> /tmp/www/wlan.html
  sleep 10;
done;

Output:

Hostname: tp MAC: 01:81:18:3d:49:5e IP: 192.168.2.101

You can change the order of "$1, $2, $3" or cut-out:

... awk '{print $1,$3}'

Output:

tp 192.168.2.101

if you want to show this in a browser remove the # and use: http://routerIP/user/wlan.html

To booting on startup see Startup Scripts

How can I protect this file? I want to allow showing this only if you are logged in the web interface! Please write it here, thanks

answer:name it wlan.asp 57032956191056854646430

Keep ISP from disconnecting due to lack of traffic

Some internet service providers will drop the connection if there is no traffic for some period of time (idle time-out). With these scripts you can prevent this.

 #!/bin/sh

 while :
 do
   ping -c 5 www.example.com >/dev/null     # ping 5 packets
   sleep 300                                # wait 5 minutes
 done

If this does not work (providers ignores ICMP packets as traffic) use:

 #!/bin/sh

 while :
 do
   wget -q -O /dev/null http://www.example.com/    # download index file
   sleep 300                                       # wait 5 minutes
 done

To run these scripts, save to a local file, make executable with 'chmod a+x <filename>' and run with './filename'

How many connections are open for each IP address?

For each active IP address on the local network (assumed to be a 192.168.x.0 network below), this prints out the number of connections that this IP address has open to hosts on the Internet. "Connections" includes both TCP and UDP - while there are no "UDP connections", Linux maintains NAT-related information about UDP traffic which is similar to that for TCP.

This is handy for finding that person in your LAN whose P2P software opens many hundreds of connections, making the network slow for everybody.

sed -n 's%.* src=\(192.168.[0-9.]*\).*%\1%p' /proc/net/ip_conntrack | sort | uniq -c


Signal strength

Small one line scripts to give a signal level display in the style of the Linux 'wavemon' program.

wl interface

If you are using the WRT in client mode and connecting it to another AP, you might want monitor the signal level that you are receiving at the client wrt. To do this we use the 'wl' command to access the details from the wireless driver.

wl rssi

gives the signal strength in dB and

wl noise

gives the noise level in dB.

The only problem with this is that different versions of the firmware give different outputs. Versions of DD-WRT firmware up to v23 give

signal is <number>

as the output to `wl rssi`, but version 24 just gives the number only without the "signal is " bit. This means that scripts which use the outputs from the wl command must be chosen for the different firmware versions.

In client mode

We are interested in the signal to noise figure and in monitoring it continuously, so we need a small script to do it. I also decided that it would be useful to display a small graph of the s/n figure. This is an ugly script as I had to optimise it to get it to work fast enough to be useful on the slow WRT processors :(, but this does mean that it can easily just be cut and pasted into a telnet or ssh session onto the wrt as an ugly one-liner.

Firmware v23 and before

while true;do echo `wl rssi;wl noise`|awk '{print $3-$6}'|awk '{printf"Signal  :  "$1"\t";for(;j<$1;j++)printf"=";printf"\n"}';done

Firmware v24

while true;do echo `wl rssi;wl noise`|awk '{print $1-$2}'|awk '{printf"Signal  :  "$1"\t";for(;j<$1;j++)printf"=";printf"\n"}';done

The output will look a bit like this :-

Signal  :  8    ========
Signal  :  7    =======
Signal  :  8    ========
Signal  :  10   ==========
Signal  :  9    =========
Signal  :  11   ===========

To terminate, just press <ctrl> + c

In AP mode

Using it in AP mode is more difficult as firstly, you have to supply the MAC address of the client that you want to monitor, and secondly as I havent been able to get the 'wl' command to give a meaningful noise figure so you have to guess of what you think that the noise figure is.

while true;do echo `wl rssi <MAC_ADDR_OF_CLIENT>`|awk '{print $3+<NOISE_GUESS_FIGURE>}'|awk '{printf"Signal  :  "$1"\t";for(;j<$1;j++)printf"=";printf"\n"}';done

(Note : I have yet to test this on firmware v24, but if it is the same as the client mode, then the following should work -- also need to test if the noise figure works for v24)

while true;do echo `wl rssi <MAC_ADDR_OF_CLIENT>`|awk '{print $1+<NOISE_GUESS_FIGURE>}'|awk '{printf"Signal  :  "$1"\t";for(;j<$1;j++)printf"=";printf"\n"}';done

You will have to replace <MAC_ADDR_OF_CLIENT> with the MAC address of the client that you wish to monitor, and replace <NOISE_GUESS_FIGURE> with a guess of what you think that the noise level is at your location. I used the figure 97 as my guess for the noise level, but it is very likely that it will be different at your location.

Having to add in the noise fudge factor will probably mean that the signal to noise figure that you get will be wrong, but the script is still useful as it will give a graph which can show you the RELATIVE strength as you move the client around the room.

(If anyone knows how to get a correct noise figure, please either add it here or in the discussion tab)

Simple Hacks/Tweaks

Note: SMB or WGET may be substituted for JFFS on limited flash memory devices.

Log Your Startup

Save your startup commands to /jffs/startup.sh

Example:

#!/bin/sh

cat /tmp/etc/passwd | sed s/^root:/nick:/ > /tmp/etc/passwd
cp /jffs/options.pptpd /tmp/pptpd/options.pptpd
rmdir /tmp/www; ln -s /jffs/www /tmp

Make this file executable:

chmod +x /jffs/startup.sh

Save the following line to startup:
(use administration/diagnostics, save startup)

/jffs/startup.sh > /tmp/startup.log 2>&1

Your standard and error output from the scripts will be viewable in startup.log. /tmp is stored in volatile memory (RAM) and will be erased each startup showing only the current error or success messages. It is not recommended to use /jffs for logs due to increased flash wear.

Change Root Username

cat /tmp/etc/passwd | sed s/^root:/emanymton:/ > /tmp/etc/passwd

Replace 'emanymton' with your username. Save this as a startup script.

Store User Web on JFFS

Requires JFFS. Create /jffs/www.

mkdir /jffs/www

Save this as a startup script:

rmdir /tmp/www; ln -s /jffs/www /tmp

The default location is http://192.168.3.1/user

Require PPTPD Encryption

Requires JFFS, PPTPD. Copy /tmp/pptpd/options.pptpd to /jffs and edit.

cp /tmp/pptpd/options.pptpd /jffs
vi /jffs/options.pptpd

Insert the following:

mppe required

Save the following as a startup script:

cp /jffs/options.pptpd /tmp/pptpd/options.pptpd

Links

Startup Scripts

Useful Scripts