Tagged Questions
The ndis tag has no wiki summary.
6
votes
4answers
3k views
How to get hardware MAC address on Windows
I'm playing around with retrieving the MAC address from the NIC - there are a variety of ways to get it, this article covers the most common:
...
5
votes
1answer
761 views
Detecting 'Network Cable Unplugged' in the Compact Framework
I've been through all of the Stack Overflow answers search comes up with, and neither Google or Bing are showing me any love. I need to know when a network cable has been connected or disconnected on ...
2
votes
2answers
147 views
Windows kernel equivalent to FreeBSD's ticks or Linux' jiffies in the latest WDK
I am working on a Windows NDIS driver using the latest WDK that is in need of a millisecond resolution kernel time counter that is monotonically non-decreasing. I looked through MSDN as well as WDK's ...
2
votes
0answers
318 views
NDIS or TDI for packet redirection to a local proxy
I need to develop a transparent filter to redirect outgoing HTTP packets to a local proxy, to do transparent content filtering.
Which is the best technology to do it, TDI or NDIS IM?
My main ...
2
votes
2answers
323 views
Need to block any IP on a computer by coding in .Net (C#). Anyone know the best/easiest way to do this?
I am playing around with a way to kick cheaters in Modern Warfare 2 (when you are the host). So far I have been able to use winpcap to sniff packages to identify the player names and their IPs.
The ...
2
votes
1answer
501 views
windows NDIS intermediate (IM) driver installation programmatically
I am learning windows NDIS Intermediate(IM) driver development.I am getting problem in installation . I always need to install it manually.
My question is how can i do NDIS intermediate (IM) driver ...
2
votes
1answer
2k views
NDIS Intermediate driver interface to C#
I'm developing what is essentially a specialized firewall application. The solution needs to be 32 and 64-bit compatible. My company wants to keep the current program interface, which is written in ...
1
vote
1answer
36 views
Windows: how to spawn threads from (NDIS) kernel driver?
Which function is recommended to spawn a new thread within NDIS5/6 context? Looking for something that is guaranteed to work at IRQL=PASSIVE (e.g. no bsods out of nothing); by a quick examination of ...
1
vote
1answer
140 views
How to use NDIS protocol driver?
I write a NDIS protocol driver. I can register my protocol with NdisRegisterProtocol.
How does the application typically access this driver?
Is there a way to uses windows sockets or do I need to ...
1
vote
1answer
145 views
Raw ethernet broadcasting
I downloaded WinDDK and am using ndisprot 5x to broadcast raw ethernet packets from my user app, specifying destination MAC all 0xff's, on large and repetitive data sets it doesn't seem to be very ...
1
vote
1answer
1k views
Transparent Proxy for Windows XP
I have an experimental TCP/IP stack running under Windows XP. This stack bypasses the Windows TCP/IP stack using a LSP and a NDIS IM. I now have a requirement to provide a proxy service for this to ...
0
votes
1answer
16 views
Why does NdisFRegisterFilterDriver return NDIS_STATUS_FAILURE?
I'm trying to write an NDIS Intermediate Filter driver, but I'm stuck before anything at all happens.
My code doesn't do anything yet, beyond trying to register the filter driver:
NTSTATUS
...
0
votes
2answers
97 views
NDIS 5/6 intermediate filter driver
Background: I need to create an NDIS filter intermediate driver. This driver will pass all traffic while collecting metadata (primarily timing information). The driver will export this information to ...
0
votes
0answers
17 views
WMM with windows 7
I am developing a 802.11 NDIS 6 miniport driver. My hardware has four tx queue for different type of packet - BE, BK, VI, VO. So to implement that from the SendNetBufferList function I have determined ...
0
votes
1answer
31 views
Is NdisGetCurrentSystemTime different from KeQuerySystemTime?
I found that MinGW Win32 compatibility layer has following definition in ndis.h:
#define NdisGetCurrentSystemTime KeQuerySystemTime
In WinDDK, definition is:
EXPORT VOID ...
0
votes
1answer
32 views
Miniport driver's InitializeHandler is not called when disabled and enabled interface
I am writing a Ndis 6 miniport 802.11 driver for a usb based hardware. The device is working properly - in face when I install the driver it works fine. But if I disable and then enable interface from ...
0
votes
1answer
24 views
.INF files and NCF_HAS_UI: how to write .dll for displaying advanced properties tab of network driver?
I have a NDIS driver, which gets listed both in connection properties's installed items list and in device manager; the question is, how do I write an extension which will be used for managing ...
0
votes
0answers
271 views
DummyNet error NDIS drivers install on Windows 7 x64
I've download the current version of DummyNet and according to readme I'm following these steps:
Windows: INSTALL THE NDIS DRIVER
open the configuration panel for the network card in use
...
0
votes
1answer
56 views
NDIS 5/6 driver with tcp/ip stack, is there code?
I'm trying to write a windows kernel driver which requires tcp/ip communication using NDIS 5/6. Since it will use NDIS, as I understand it, it needs it's own tcp/ip stack implementation.
Could anyone ...
0
votes
1answer
134 views
Access denied when doing “net start ndisprot”
I have compiled the ndisprot sample from the Windows DDK (src\network\ndis\ndisprot\60) for Windows 7 64 bit.
I have installed it, but in doing net start ndisprot says
system error 5 and access ...
0
votes
1answer
100 views
WiFi NDIS driver does not appear in the WHQL ndistest device list
I maintain an NDIS 6.0 native WiFi driver. One of my missions is passing a WHQL test. To that end I installed version 1.6 of the Windows Logo Kit. I also installed my driver on a a Windows 7, 32-bit ...
0
votes
1answer
85 views
Does a ndis filter driver belong to NT driver or WDM driver?
NT driver doesn't support plugin and play.
Does ndis filter belong to NT driver or WDM driver?
0
votes
1answer
86 views
Is there any good good resource on how to write a ndis filter with windows develop kit?
Although wdk ships an exampe with it,it doesn't have any detail documents on how it works.
Is there any resource that fully explains how it works?
0
votes
1answer
28 views
Does debugging a netfilter service in windows belong to kernel debug?
I know that to do kernel debug I need 2 OS,the hosting OS and the target OS.
but does a netfilter service(ndis filter,to be exact) belong to the kernel?
0
votes
0answers
88 views
Why is my NDIS intermediate driver clearing layer 2 priority bits
I'm writing an intermediate NDIS filter that operates between the QoS packet scheduler, and the lower-level device driver. The filter is supposed to pass traffic almost transparently through, while ...
0
votes
2answers
272 views
NDIS filter driver doesn't load in windows 2008 R2
I'm trying to develop an NDIS filter driver. However, I don't seem to be able to load it.
I have the debug and testsigning boot options enabled; my driver is test-signed, and the certificate is loaded ...
0
votes
0answers
42 views
How do I assemble my own NET_BUFFER
How do I assemble new NET_BUFFER from raw memory, which is includes all need stuff as ethernet header, ip header, payload, etc?
0
votes
1answer
70 views
What could cause “The MDL is being inserted twice on the same process list”?
We are developing an NDIS protocol and miniport driver. When the driver is in-use and the system hibernates we get a bug check (blue screen) with the following error:
LOCKED_PAGES_TRACKER_CORRUPTION ...
0
votes
1answer
333 views
Using the ndisprot example driver (in the WDK) with C++
Hey all,
I have compiled succesfully the ndisprot example ndis driver that came with the Windows Driver Kit, but I don't know how to use it from C++ to send or receive packets. Could someone instruct ...
0
votes
1answer
100 views
Implementing a personal firewall for Windows, how can I determine what application does a packet belong to?
I am going to build a sort of personal firewall for Windows. I've found some articles on this subject on the Net, including some questions here on StackOverflow. But all they mean to control ...
0
votes
1answer
387 views
NDIS Hooking for Blocking/Unblocking website on windows xp
I am trying to block/unblock some of website on windows xp using NDIS Hooking.I am new for this NDIS Hooking on windows xp. so can you please tell whether is there any sample in msdn or do you have ...
0
votes
1answer
238 views
C/C++ Windows traffic blocker
I want to develop a bandwidth allocator to a network which will be behind my machine.
Now, I've read about NDIS but I am not sure whether the network traffic that is neither originating from my ...
0
votes
4answers
2k views
Windows XP support for Remote NDIS
I'm looking at developing a device which will need to support Ethernet over USB (hosted in Linux, XP, and Vista). As I understand it, Vista and Linux support the industry standard USB CDC. However, in ...