RE: [WinPcap-users] High speed UDP receiver

2004-12-21 Thread Paal Grana
I have tried using UDP sockets, but this has resulted in high CPU load and lots of lost packets. Ideally I would use a zero-copy UDP socket, but this is not available yet. Even receiving UDP packets to the windows "discard" port (9) installed by the "Simple TCP/IP Services", results in a quite hig

[WinPcap-users] WLAN PC-Card

2004-12-21 Thread Marc Bartholomaeus
Hello... I cannot capture any data on a notebook with a WLAN PC-Card. Are there any known issues? In detail this is a ralink IEEE 802.11g chip (http://www.ralinktech.com/prod-2.htm). Thanks for your help... Marc == This is the

RE: [WinPcap-users] WLAN PC-Card

2004-12-21 Thread dw
Try turning off promiscuous mode. Seems to be a requirement for wireless cards. dw -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 6:22 PM To: [EMAIL PROTECTED] Subject: [WinPcap-users] WLAN PC-Card Hello... I cannot capture any da

RE: [WinPcap-users] WLAN PC-Card

2004-12-21 Thread Daniel Smith
Discussion of wireless adapters is discussed on the website FAQ. See http://winpcap.polito.it/misc/faq.htm#Q-16 Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, 22 December 2004 1:22 PM To: [EMAIL PROTECTED] Subject: [WinPcap-users] WLAN PC-Card

[WinPcap-users] windump -D results in error

2004-12-21 Thread Alex Narinsky
Hello, For some reason "windump -D" is not working on my computer. I am getting: "windump: PacketGetAdapterNames: Cannot create a file when that file already exists." What can be the reason? Thanks == This is the WinPcap user

Re: [WinPcap-users] BPFilter and localhost

2004-12-21 Thread Guy Harris
Loris Degioanni wrote: The filter compiler tries to resolve the host namese, so you can do something like host localhost and port 2404 but this will filter the packets with the loopback IP address. ...which won't capture packets sent over "real" interfaces, as they won't have the loopback interfac

Re: [WinPcap-users] High speed UDP receiver

2004-12-21 Thread Guy Harris
Paal Grana wrote: We are working on a processing system which uses UDP to receive raw data. The burst data rate is about 325 MBit/sec and the packet rate is about 28500 packets/sec. Our challenge is to receive these data without loosing anything (or as little as possible). We are using WinPcap 3

Re: [WinPcap-users] OSPF-LSU packets

2004-12-21 Thread Kraus Blaise
Hallo, I can capture OSPf-Hello with a programm based on Winpcap but I can can not capture OSPF-LSU packets. I try a capture wich another tools (no based on Winpcap)and I have the same problem. I think the OSPF-LSA packtes are not sent oder are sent but not reach other machine in the Network. What

RE: [WinPcap-users] BPFilter and localhost

2004-12-21 Thread Loris Degioanni
The filter compiler tries to resolve the host namese, so you can do something like host localhost and port 2404 but this will filter the packets with the loopback IP address. Loris > > Hi > > Is it possible to filter all the TCP/IP traffic from / to > the pc runnning WinPcap, without have

RE: [WinPcap-users] PROBLEM FINDING PCAP_ FUNCTIONS IN PACKETCE.

2004-12-21 Thread Loris Degioanni
The WindowsCE porting of winpcap supports only the low-level packet.dll library (PacketXXX functions). Moreover, as the download page states, we are not able to give support for that version, and we currently don't have a maintainer for it. Loris > > Hi, > > I downloaded the "packetce.zip" file

RE: [WinPcap-users] High speed UDP receiver

2004-12-21 Thread Loris Degioanni
Paal, no, it's not possible to increase the priority of the WinPcap driver. Actually, changing the priority is a concept that doesn't make a lot of sense when talking about drivrs (the packet-capture part of the winpcap driver runs at DPC level, and therefore has higher priority than any other proc

Re: [WinPcap-users] WinpCap as "proxy" problems

2004-12-21 Thread KanjiSoft Systems
Hi, I'm not familiar with vnc, but wrote a checksum routine at one point. Double check that the checksum is correct, easy way is to use etherreal which will show you if checksum is invalid. It's possible that the checksum was inalid and passed through anyway. If it's not checksum, if vnc is a tu

[WinPcap-users] High speed UDP receiver

2004-12-21 Thread Paal Grana
Title: Message We are working on a processing system which uses UDP to receive raw data. The burst data rate is about 325 MBit/sec and the packet rate is about 28500 packets/sec. Our challenge is to receive these data without loosing anything (or as little as possible). We are using WinPcap