![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| solaris way if interpreting devices? | wrapster | SUN Solaris | 1 | 01-24-2008 03:53 PM |
| interpreting email log: ndel= | mstarcom | UNIX for Dummies Questions & Answers | 1 | 12-11-2007 07:01 AM |
| help interpreting usermod man page | amheck | SUN Solaris | 0 | 06-08-2006 12:29 PM |
| vmstats interpreting | MizzGail | UNIX for Advanced & Expert Users | 3 | 02-22-2002 08:56 AM |
| Shellscript Interpreting | Ann | UNIX for Dummies Questions & Answers | 3 | 01-19-2002 08:31 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Are there any references I can look up for to interprete "netstat -s", especially those on TCP statistics.
__________________
DY Swimming in the ocean of Unix |
| Forum Sponsor | ||
|
|
|
|||
|
I am trying to check on whether file descriptors has been exhausted. Which statistic should I refer to for this ?
If a process is trying to open up a socket, and the file description limit has exceeded, will there be any error log shown (eg in /var/adm/message) ?
__________________
DY Swimming in the ocean of Unix |
|
||||
|
Example output of netstat -s:
[quote] athlon# netstat -s Ip: 461270 total packets received 0 forwarded 0 incoming packets discarded 288 incoming packets delivered 374553 requests sent out 8 dropped because of missing route Icmp: 29 ICMP messages received 0 input ICMP message failed. ICMP input histogram: destination unreachable: 29 899 ICMP messages sent 0 ICMP messages failed ICMP output histogram: destination unreachable: 899 Tcp: 34 active connections openings 0 passive connection openings 0 failed connection attempts 0 connection resets received 1 connections established 460013 segments received 373502 segments send out 993 segments retransmited 0 bad segments received. 2 resets sent Udp: 123 packets received 32 packets to unknown port received. 0 packet receive errors 152 packets sent TcpExt: [/code] There is nothing here that discusses file descriptors. This simply provides statistics about sockets, packets, tcp segments, and connections. This command is not used to check for file descriptor usage. |