The following script will list the addresses of all clients which are
currently talking to your fileserves in one way or another:

#!/bin/sh

Servers="<list all your servers here>"

for server in $Servers ; do
 /usr/afsws/etc/rxdebug -server $server -allconnections |
  grep '^Connection ' | cut -d' ' -f4 | tr -d ','
done |
 sort '-t.' -k1,1n -k2,2n -k3,3n -k4,4n -u

You may then extract the addresses of clients in your own cell by
some appropriate means (like grep ...).

Regards, Dieter.

-- 
Dr. Dieter Mack                      Phone : +49 711 685 5788
Systems Section                      Fax   : +49 711 682357
Computer Center                      Email : [EMAIL PROTECTED]
University of Stuttgart              Mail  : Allmandring 30
                                             70550 Stuttgart-80
                                             Germany

Reply via email to