#!/bin/sh

INTERFACE="eth1"
ADDRESS="00 60 b3 10 00 cd"
INTERVAL=1

#
# Set the address you want to monitor first
#
wlu $INTERFACE monitor $ADDRESS

#
# Repeatly query the RSSI every 
#
while [ 1 ] ; do
  wlu $INTERFACE monitor query 
  sleep $INTERVAL
done
