Operating System - HP-UX
1827136 Members
2995 Online
109716 Solutions
New Discussion

UX bandwidth monitor tool

 
SOLVED
Go to solution
Alex Grigore
Advisor

UX bandwidth monitor tool

Hi guys,

I am to compute how much bandwidth an oracle application needs. I browsed oracle metalink but as I found no precise answer, I shall do it myself.

The application and oracle database are installed on an HP-UX B.11.11 machine. Clients connect by means of http.

What tool should I use? Is there a similar tool available for UX as iptraf on LINUX?

Thanks and regards,
AlexG.
5 REPLIES 5
Steven E. Protter
Exalted Contributor
Solution

Re: UX bandwidth monitor tool

You will probably find Glance/GlancePlus, a paid in extra(60 day trial disk 1 of the app cd's) will do the trick.
http://h21007.www2.hp.com/dspp/files/unprotected/GlanceTrial/trial_gp_C.03.86.00_11.11rel.depot

Other tools:
ethereal
tcpdump

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Alex Grigore
Advisor

Re: UX bandwidth monitor tool

Thank you for you answer SEP.
I will install the package from the CD-ROM since the downloaded file keeps on prompting corruption related errors.

I will keep you guys posted.


Thanks and regards,
AlexG.
Alex Grigore
Advisor

Re: UX bandwidth monitor tool

Hi guys,

For future references, I have found that a rough estimate shall be 6-12kbps per user for Oracle's OFI.

I will post also the results obtained using HP's glance tool.

Regards,
AlexG.
Muthukumar_5
Honored Contributor

Re: UX bandwidth monitor tool

iptraf will give data's based on interface. You can get it with # netstat -ivn execution.

#!/bin/ksh
#Monitor.ksh
while [[ 1 ]]
do
netstat -ivn
sleep 5
clear
done
# exit
exit 0
########

It will give you the details.

hth.
Easy to suggest when don't know about the problem!
Alex Grigore
Advisor

Re: UX bandwidth monitor tool

That's a nice one Muthukumar. It does the same thing as the Glance tool - monitor the interface.

Thank you guys,
AlexG