... I am also interested in such solution. I have a kind of remote debugger that uses TCPIP (actually UDP) very early in the boot process. It currently...
Zachary Azoulay
zaz0u@...
Jul 3, 2007 2:17 am
7950
Thomas - Just wanted to continue on this thread since I am seeing some packet drops here. You are absolutely right that the Network Bridge on Win2k3 is a 1:N...
Hello, does Rawether support Windows Mobile for WLAN Applications, too? Unfortunately the FAQ only says that rawether was tested with Windows CE 3.0 and 4.2 ...
Unfortunately I am not going to continue to support Windows CE/Mobile with Rawether. The basic problem is that Windows CE/Mobile are fine Microsoft product. ...
I don't have first-hand experience with ISA so I am not speaking with authority here. Perhaps Steve can give some better insight. I do have some comments,...
Thanks for yr reply Thomas. In my case, my bridge has 2 miniports. Its an NDIS IM driver that binds to the 2 real miniports and the virtual bridge miniport. In...
I believe that you would have better luck if you made your packet modifications on your IM driver bindings below the bridge MUX driver. For my IM drivers that...
hi all when i trying to build the source code of "pktredir" sample developed by PCAUSA corp., the builder cannot find the NDHelper.lib, and when i make build...
... [PCAUSA] If the "active passthru" sample has been build successfully, then the problem is probably related to paths in the SOURCES file. That said, I must...
Just had a question on one of the counters reported by IPv4 Statistics in netstat output. E.g, netstat -s -p ip shows this counter "Received Packets Discarded"...
There are plenty of reasons that can cause a packet to be discarded. Lack of resources would be one. But more likely the packet was inspected and found to...
Thomas - Appreciate yr reply. The reason I am looking for a list of such reasons is because I see this same counter getting incremented in 2 diff scenarios and...
... [PCAUSA] Well, it's not for me to say whether Windows should or shouldn't provide more granularity in identifying why packets are discarded. It should be...
Well, its not a broadcast or multicast packet. Infact, its a IP pkt NOT destined for this machine and we have IPForwarding turned on so it routes the pkt...
... [PCAUSA] I assume that you have changed the destination IP address and recomputed header checksums as well. Right. Also, are you injecting from your IM...
Nope, I am not changing any IP addresses here. My thinking is that Changing the dst MAC address to some MAC address hosted on this machine shd cause the pkt to...
If you make this mod below the bridge, then it should work as you expect. If you make this mod above the bridge, then I would expect the host to discard it. ...
Actually, I think I have totally lost sight of what you are trying to accomplish. IP forwarding will assumes that the two NICs are on different networks (I ...
... I can't test this at the moment, but I'm pretty sure Windows w/ IpEnableRouter turned on will still forward packets even if it's back out the same...
... [PCAUSA] My experience with Windows and multiple NICs on the same network has been problematic. In particular, the metrics are the only parameter that...
Thomas, Yes you are correct that my network bridge has 2 NICs on different segments of the same network. -The original destination MAC address is of the next...
Based on your questions I would have guessed that you were trying to do acceleration using a man-in-the-middle (MIM) filtering host. Before you installed your...
I want to build a virtual webcam driver. Like a WebCam, but that capture screenshots... I tried to make it basing no videocap sample that comes in WINDDK [last...
Hello All, I am getting bugcheck 35 (No_MORE_IRP_STACK_LOCATION) when my TDI driver is intalled over \Device\Tcp if 2 TDI device objects already present in the...
Does somebody know how it is possible to modify the content of a NDIS packet? I am actually getting the packet via NdisQueryPacket, then get every embedded...
It is best NEVER to modify a packet that you did not allocate yourself. This means that you should make a complete duplicate of the packet that you wish to...
Your solution is probably a good one. Here are some notes: TDI clients determine the number of I/O stack locations that they must provide when they open a TDI...
Thomas, Thanks a lot for your reply! I noticed that when 1 or 2 TDI filter installed over \Tcp then TDI client (in my case AFD) recomputes stack size correctly...