From: Daniel on
Hi,

In my NDIS protocol driver I make a request to the NIC driver to set the
filter to PROMISCUOUS_PACKET_FILTER to receive packets with different MAC
address other than the card's MAC address.

Is there a way to configure the NIC driver to receive packets with specific
MAC address without using the promiscuous flag or a Multicast address?

Thanks,

Daniel
From: Pavel A. on
"Daniel" <Daniel(a)discussions.microsoft.com> wrote in message
news:63BAA131-B81D-41AA-A69D-D88CC36BE7CB(a)microsoft.com...
> Hi,
>
> In my NDIS protocol driver I make a request to the NIC driver to set the
> filter to PROMISCUOUS_PACKET_FILTER to receive packets with different MAC
> address other than the card's MAC address.
>
> Is there a way to configure the NIC driver to receive packets with
> specific
> MAC address without using the promiscuous flag or a Multicast address?

Yes, just set this specific address as the current MAC address
(using the standard registry override) and set the filter to DIRECTED.

--pa


From: Maxim S. Shatskih on
> Is there a way to configure the NIC driver to receive packets with specific
> MAC address without using the promiscuous flag or a Multicast address?

Specific _dst_ address? no.

--
Maxim S. Shatskih
Windows DDK MVP
maxim(a)storagecraft.com
http://www.storagecraft.com

From: Maxim S. Shatskih on
> Yes, just set this specific address as the current MAC address
> (using the standard registry override) and set the filter to DIRECTED.

....and break everything around like TCP/IP.

--
Maxim S. Shatskih
Windows DDK MVP
maxim(a)storagecraft.com
http://www.storagecraft.com

From: Pavel A. on
"Maxim S. Shatskih" <maxim(a)storagecraft.com.no.spam> wrote in message
news:unp432TCLHA.5412(a)TK2MSFTNGP04.phx.gbl...
>> Yes, just set this specific address as the current MAC address
>> (using the standard registry override) and set the filter to DIRECTED.
>
> ...and break everything around like TCP/IP.

Nope. Tcpip has its own filter.

--pa