Click here to Skip to main content
15,885,032 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i read data from a ethernet port?
How can i unpack data packets sent from the ethernet port?
Posted

Use Pcap.Net[^] :-)
 
Share this answer
 
You need to setup a "TCP server" on port 500 - you can use the Generic TCP server or the HTTP module, with some changes.
TcpClient tcpclient = new TcpClient(); 
tcpclient.Connect("192.168.1.201", 500); 


Hope this might guide you.
 
Share this answer
 
Comments
Dave Kreskowiak 20-Jun-11 8:56am    
What in the hell does this have to do with capturing packets going out the NIC??

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900