Go Back   Velocity Reviews > Newsgroups > Wireless Networking
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Wireless Networking - Network adapters failed to support NDISReadNetworkAddress function

 
Thread Tools Search this Thread
Old 04-16-2009, 12:27 AM   #1
Default Network adapters failed to support NDISReadNetworkAddress function


Many new network adapters on VISTA fail to support
NDISReadNetworkAddress function.
This is the function that allows software configurable MAC Address.
Although the network adapters received "Certified for Windows VISTA"
logo, they fail to support this function.

Based on my understanding from Microsoft website, network adapters are
required to support NDIS 6.0 for Windows VISTA, and NDIS 5.1 for
Windows XP, and both NDIS versions require support for
NDISReadNetworkAddress function as stated in the Microsoft site:
http://msdn.microsoft.com/en-us/library/bb648482.aspx

We are the developer for SMAC (http://www.klcconsulting.net/smac) and
what we have found so far from our customers is that following
wireless network adapters do not support NDISReadNetworkAddress
function. Here are some wireless network adapters our customers have
reported that do not support this function.:

Atheros AR500x (HP and Dell systems (Dell 1515 WLAN half mini-Card))
Broadcom 4321AG (HP and Dell systems)
Intel PRO/Wireless 3945ABG, 4965AGN (HP systems)
D-Link DWA-140

I am not a network adapter driver developer, but I am interested in
your input if you develop network adapter drivers. Is
NDISReadNetworkAddress function one of Microsoft requirements for the
network adapter to get "Certified for Windows VISTA" logo?

MAC Address change instruction is at http://www.klcconsulting.net/change_mac_w2k.htm

Thank you.
/Kyle
KLC Consulting, Inc.
www.klcconsulting.net


klai@klcconsulting.net
  Reply With Quote
Old 04-16-2009, 05:17 AM   #2
the wharf rat
 
Posts: n/a
Default Re: Network adapters failed to support NDISReadNetworkAddress function
In article <f993d068-d5c8-4ee2-ad43->,
<> wrote:
>
>Based on my understanding from Microsoft website, network adapters are
>required to support NDIS 6.0 for Windows VISTA, and NDIS 5.1 for


I think that NDISReadNetworkAddress is supported but there's
nothing that says the adaptor must support it. That's why you're
supposed to check the return code...



the wharf rat
  Reply With Quote
Old 04-16-2009, 12:49 PM   #3
Pavel A.
 
Posts: n/a
Default Re: Network adapters failed to support NDISReadNetworkAddress function
Some vendors consider the ability to select MAC
address for consumer WLAN adapters harmful, and deliberately
removed it.
AFAIK this has been settled with MS and the major PC vendors
who use our adapters.
So it would take a bit more to spoof the MAC address on WLAN adapters
than a little NDIS IM driver

-- pa

wrote:
> Many new network adapters on VISTA fail to support
> NDISReadNetworkAddress function.
> This is the function that allows software configurable MAC Address.
> Although the network adapters received "Certified for Windows VISTA"
> logo, they fail to support this function.
>
> Based on my understanding from Microsoft website, network adapters are
> required to support NDIS 6.0 for Windows VISTA, and NDIS 5.1 for
> Windows XP, and both NDIS versions require support for
> NDISReadNetworkAddress function as stated in the Microsoft site:
> http://msdn.microsoft.com/en-us/library/bb648482.aspx
>
> We are the developer for SMAC (http://www.klcconsulting.net/smac) and
> what we have found so far from our customers is that following
> wireless network adapters do not support NDISReadNetworkAddress
> function. Here are some wireless network adapters our customers have
> reported that do not support this function.:
>
> Atheros AR500x (HP and Dell systems (Dell 1515 WLAN half mini-Card))
> Broadcom 4321AG (HP and Dell systems)
> Intel PRO/Wireless 3945ABG, 4965AGN (HP systems)
> D-Link DWA-140
>
> I am not a network adapter driver developer, but I am interested in
> your input if you develop network adapter drivers. Is
> NDISReadNetworkAddress function one of Microsoft requirements for the
> network adapter to get "Certified for Windows VISTA" logo?
>
> MAC Address change instruction is at http://www.klcconsulting.net/change_mac_w2k.htm
>
> Thank you.
> /Kyle
> KLC Consulting, Inc.
> www.klcconsulting.net



Pavel A.
  Reply With Quote
Old 04-16-2009, 02:17 PM   #4
Pavel A.
 
Posts: n/a
Default Re: Network adapters failed to support NDISReadNetworkAddress function
> So it would take a bit more to spoof the MAC address on WLAN adapters
> than a little NDIS IM driver


.... or little registry hacks

Regards,
-- pa


Pavel A.
  Reply With Quote
Old 04-16-2009, 05:15 PM   #5
Andrew McLaren
 
Posts: n/a
Default Re: Network adapters failed to support NDISReadNetworkAddress function
<> wrote ...
> Many new network adapters on VISTA fail to support
> NDISReadNetworkAddress function.
> This is the function that allows software configurable MAC Address.
> Although the network adapters received "Certified for Windows VISTA"
> logo, they fail to support this function.



The function call NDISReadNetworkAddress() is supported and works, on Vista
and XP and in NDIS 6.0 and 5.1. However, there's no guarantee calling this
function will actually change the MAC address which a hardware device uses
to send frames. As the MSDN doc describes:

http://msdn.microsoft.com/en-us/library/bb648482.aspx
<quote>
Note that NDIS does not validate the value at NetworkAddress. NDIS does
not guarantee that this value is a valid address, that the value has the
proper length, or even that the value is a network address. The caller of
NdisReadNetworkAddress must therefore not make any assumptions about this
value and must itself validate the value. If the caller determines that the
value is out of bounds, it should not use the value; instead, it should use
the permanent medium access control (MAC) address or a default address.
</quote>


For the NDISReadNetworkAddress() call to install a Locally Adminstered
Address, there are 2 prerequisites:
- the hardware device must suport the use of locally adminstered addresses;
and
- the driver installation must create a Windows registry value at the
correct location.

Locally administered addresses ("LAA") are a common feature in network
adapters; but they are not generally required by the IEEE 802 Standards
(they are required for 802.5 devices; ie, Token Ring cards; elsewhere,
optional).

If a vendor does not implement an LAA facility in their network adapter
hardware, then there is no way to install or spoof a MAC address, you must
use the OUI address (the "burnt-in address"). It would be extremely
difficult for any operating system to override this (at least, while
conforming to IEEE standards; a malicious attack may be able to fudge
something).

For more background information about the IEEE 802 Standards, see here:
http://standards.ieee.org/getieee802/

> your input if you develop network adapter drivers. Is
> NDISReadNetworkAddress function one of Microsoft requirements for the
> network adapter to get "Certified for Windows VISTA" logo?


The requirements for Windows Logo certification are well-documented by
Microsoft. You can find details at Microsoft's device driver website
(http://www.microsoft.com/whdc):

Windows Logo Program: Overview
http://www.microsoft.com/whdc/winlogo

Certified for Vista Requirements
http://download.microsoft.com/downlo...Spec%201.1.doc

LAAs were originally designed to accomodate specific addressing schemes in
closed, corporate networks - nainly for legacy Xerox and IBM equipment. Now
that most devices participate in standard LANs and the wide-open Internet,
there's less need for LAAs; and some folks argue that LAAs can be a vector
for malicious attacks eg spoofing. So LAAs are somewhat deprecated.

Hope it helps (and, apologies to other readers for the massive
cross-posting)

Andrew
(member, IEEE Standards Association)
--
amclar at optusnet dot com dot au



Andrew McLaren
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Wireless cards not listed in Network Adapters aconfrere Hardware 0 12-18-2007 12:34 AM
Wireless cards not listed in Network Adapters aconfrere Hardware 0 12-18-2007 12:33 AM
IMHO, Digital SECAM video is better than Analog NTSC video Radium DVD Video 167 10-25-2006 04:16 AM
Setting up a Network -- Wired or Wireless? shopzero.net DVD Video 1 07-24-2006 07:18 PM
How to support Boston Neighborhood Network News across the river. Don Saklad DVD Video 0 11-17-2003 10:05 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46