- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- "netstat -s" output - "XXXX packets to unknown p...
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
01-23-2008 02:08 AM
01-23-2008 02:08 AM
Udp:
70868699 packets received
1300775309 packets to unknown port received.
what does it mean?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 05:16 AM
01-23-2008 05:16 AM
Solutionstruct entry Udptab[] =
{
{"InDatagrams", N_("%u packets received"), number},
{"NoPorts", N_("%u packets to unknown port received."), number},
{"InErrors", N_("%u packet receive errors"), number},
{"OutDatagrams", N_("%u packets sent"), number},
};
NoPorts: Displays the total number of UDP datagrams received for which there was no application at the destination port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 05:35 AM
01-23-2008 05:35 AM
Re: "netstat -s" output - "XXXX packets to unknown port received" - what does it mean
I was too lazy to install and read sources :-(
But I am still very curious:
even when I installed net-tools source, I found Udptab struct, but not "NoPorts: Displays the total number of UDP datagrams received for which there was no application at the destination port." explanation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 05:43 AM
01-23-2008 05:43 AM
Re: "netstat -s" output - "XXXX packets to unknown port received" - what does it mean
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 05:46 AM
01-23-2008 05:46 AM
Re: "netstat -s" output - "XXXX packets to unknown port received" - what does it mean
it is really applicable to my situation, because I have network server, which works via pcap library.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2008 05:38 PM
01-23-2008 05:38 PM
Re: "netstat -s" output - "XXXX packets to unknown port received" - what does it mean
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2008 12:57 AM
01-24-2008 12:57 AM
Re: "netstat -s" output - "XXXX packets to unknown port received" - what does it mean
As I wrote, my application works via libpcap.
Can you explain more - what does "bind to NIC" mean?
Our application processes only UDP packets to its IPs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2008 10:32 AM
01-24-2008 10:32 AM
Re: "netstat -s" output - "XXXX packets to unknown port received" - what does it mean
If you are running your own IP stack on top of libpcap you are getting your IP (and ARP) traffic via the taps, which is a separate path. Just as you end-up having to ignore IP and ARP traffic which wasn't your's (it was the host's) the host ends-up seeing traffic which wasn't its, it was yours.
To keep the host from seeing your application's traffic, you have to run your libpcap-based stack over an interface to which the IP and ARP saps have not been bound. I'm guessing that if no host IP addresses are assigned to the interface(s) in question that the IP and ARP saps will not be bound and so the host will not get copies of your traffic. Also, you will be less likely to get copies of the host's traffic - although you will still see ARP requests for IP's other than your own.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2008 08:34 AM
01-29-2008 08:34 AM