• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux Netstat

dabench

Senior member
I believe that I have a network problem and I am tring to interprut the netstat results. What should the percentages be for dropped packets and such? Thanks
 
Eh depends on your network hardware and LAN environment.

Usually on wired links you'd expect very low errors and very low dropped packets.

On wireless links you'd expect relatively low errors / dropped packets, but probably not zero, maybe well under 1% of your overall traffic if you were sending reasonable amounts of traffic on an ongoing basis.

On wired links check for autonegotiation or parameter setting problems between your hub/switch and your NICs, things like duplex incompatibilities, 100/1000 specific problems, etc.

Figure out whether your particular firewall or vlan policies are in any way contributing to the "drop" / "error" / "reject" type statistics that worry you, and understand whether it is OK / GOOD that it is dropping / rejecting certain packets.

Check your VLAN and gigabit ethernet JUMBO FRAME settings and be sure that all the nodes on your LAN that intercommunicate have compatible MTU / VLAN / JUMBO FRAME parameters so a packet that is "good" relative to the sender isn't invalid relative to some set of receivers.


[root@q6 html]# netstat -i
Kernel Interface table
Iface MTU Met RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg
eth0 1500 0 919070 0 0 0 1158916 0 0 0 BMRU
lo 16436 0 22947 0 0 0 22947 0 0 0 LRU
virbr0 1500 0 0 0 0 0 159 0 0 0 BMRU
 
Back
Top