Ascend Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: (ASCEND) tracking modem usage
Radius is not a good place to look. You are better off with SNMP.
You can graph everything using the MRTG package. Here's like a
8 line script to do it. (No, its not the real community :)
----------------------------------------------------------------
#!/bin/csh
set bank1name="max4.fred.net"
set bank1community="yadda-yadda-yadda"
set variable=.1.3.6.1.4.1.529.12.3.1.4
set uptimeoid=.1.3.6.1.2.1.1.3
set NUMMODEMS=`snmpwalk -v 1 $bank1name $bank1community $variable| wc -l`
set UPTIME=`snmpwalk -v 1 $bank1name $bank1community $uptimeoid | cut
-d")" -f2`
@ MODEMS += $NUMMODEMS
echo $MODEMS
echo $MODEMS
echo $UPTIME
-----------------------------------------------------------------
On Mon, 14 Dec 1998, Stuart Kendrick wrote:
> Hi,
>
> I'm trying to answer the question "When do I need to buy more modems?"
> This of course is a complex question and involves upper layer issues like
> "How many busy signals do I want to give to customers?"
>
> Does anyone have a pointer to a product which parses Radius detail files
> to offer insights into this issue? The first question I want to ask is:
> "For how many minutes/hours per day is my entire modem pool busy?"
>
> I would prefer a freeware PERL script, but I'm also willing to consider
> purchasing something.
>
> Max 4004s running 6.0.10, Access Control for Solaris v1.0Ai11
>
> --sk
>
> Stuart Kendrick
> FHCRC
>
>
>
>
> ++ Ascend Users Mailing List ++
> To unsubscribe: send unsubscribe to ascend-users-request@bungi.com
> To get FAQ'd: <http://www.nealis.net/ascend/faq>
>
++ Ascend Users Mailing List ++
To unsubscribe: send unsubscribe to ascend-users-request@bungi.com
To get FAQ'd: <http://www.nealis.net/ascend/faq>