- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to monitor an IP connection?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2007 09:43 PM
05-27-2007 09:43 PM
How to monitor an IP connection?
we've two servers connected through a data connection not stable: we see that our application, using massively the data transfer via socket, often fails because of unexpected data reading / writing error on socket.
I'd like to have a simple and rough tool to monitor tha network connection, to detect and to document the network faults occurring there.
What can I do?
thanks and best regards
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2007 09:50 PM
05-27-2007 09:50 PM
Re: How to monitor an IP connection?
maybe too rough but with ping (or netstat) in a shell script you can detect e document faults.
hth
regards
pg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2007 09:54 PM
05-27-2007 09:54 PM
Re: How to monitor an IP connection?
thanks in advance
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2007 11:41 PM
05-27-2007 11:41 PM
Re: How to monitor an IP connection?
see if this (or something like this) can be usefull to you :
netstat -a | grep telnet
tcp 0 2 HOSTNAME.telnet 217-133-12-209.4974 ESTABLISHED
tcp 0 0 *.telnet *.* LISTEN
so you can monitoring servive
hth
regards
pg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2007 02:45 PM
05-28-2007 02:45 PM
Re: How to monitor an IP connection?
lanadmin -c 0
Now run your application and then check the counters with:
lanadmin -g 0
If you are seeing errors in the second section of statistics, you have a faulty LAN setup.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2007 11:25 PM
05-28-2007 11:25 PM
Re: How to monitor an IP connection?
A small tweak to the above.
lanadmin -g mibstats 0|grep -Ei 'coll|err'
What about netfmt and nettl.
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 01:48 AM
05-29-2007 01:48 AM
Re: How to monitor an IP connection?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 01:54 AM
05-29-2007 01:54 AM
Re: How to monitor an IP connection?
Its possible that the errors you are seeing are application problems, and not network faults. Another approach is to use a network sniffer like Ethereal to run a package capture on the data stream. This will generate a massive amount of data, but it will show you what the application is doing on the network.