Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Drivers > RE: Incorrect IPv6 link local address assigned to adapter

Reply
Thread Tools Display Modes

RE: Incorrect IPv6 link local address assigned to adapter

 
 
Bryan S. Burgin [MSFT]
Guest
Posts: n/a

 
      11-17-2006
NDIS 5 or 6, just to be clear?

You only have control over the MAC address via your response to
OID_802_3_PERMANENT_ADDRESS and OID_802_3_CURRENT_ADDRESS. The problem
will be somewhere higher in the stack.

Bryan S. Burgin


This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
 
 
 
DW
Guest
Posts: n/a

 
      11-17-2006
The driver is NDIS 5.1.

Is it possible that the OUI of the MAC address is not recognized by the
stack and this is why a proper link local address is not created? I suppose
an easy way to test this out is just to change the OUI to something more
common to make sure it's not the OUI itself...

""Bryan S. Burgin [MSFT]"" wrote:

> NDIS 5 or 6, just to be clear?
>
> You only have control over the MAC address via your response to
> OID_802_3_PERMANENT_ADDRESS and OID_802_3_CURRENT_ADDRESS. The problem
> will be somewhere higher in the stack.
>
> Bryan S. Burgin
>
>
> This posting is provided "AS IS" with no warranties, and confers no rights

 
Reply With Quote
 
DW
Guest
Posts: n/a

 
      11-17-2006
I found the issue, by chance. A query for an OID (0xff54554e to be exact)
returned success instead of not supported. After fixing this, the link local
address was correct.

Do you know what this OID is used for?

""Bryan S. Burgin [MSFT]"" wrote:

> NDIS 5 or 6, just to be clear?
>
> You only have control over the MAC address via your response to
> OID_802_3_PERMANENT_ADDRESS and OID_802_3_CURRENT_ADDRESS. The problem
> will be somewhere higher in the stack.
>
> Bryan S. Burgin
>
>
> This posting is provided "AS IS" with no warranties, and confers no rights

 
Reply With Quote
 
Bryan S. Burgin [MSFT]
Guest
Posts: n/a

 
      11-17-2006
I looked through the WDK (build 6000/Vista RTM) for that value and anything
that started with OID_ and didn't find it, either. It strikes me odd that
it can also be viewed in ASCII as 'NUT\ff'. Returning NOT_SUPPORTED is the
right thing to do in this case. Perhaps setting a breakpoint when you
receive this and then dump the stack trace will lend some insight on who is
issuing this.

Bryan S. Burgin


This posting is provided "AS IS" with no warranties, and confers no rights.
 
Reply With Quote
 
Pavel A.
Guest
Posts: n/a

 
      11-17-2006
""Bryan S. Burgin [MSFT]"" <> wrote in message news:...
> It strikes me odd that
> it can also be viewed in ASCII as 'NUT\ff'.


May be, "TUN" ?

--PA


 
Reply With Quote
 
DW
Guest
Posts: n/a

 
      11-18-2006
Maybe it's wishful thinking, but TUN makes some sense in the context that
when the driver returned success for this OID, the adapter had the same link
local address as the Toredo tunneling adapter.

"Pavel A." wrote:

> ""Bryan S. Burgin [MSFT]"" <> wrote in message news:...
> > It strikes me odd that
> > it can also be viewed in ASCII as 'NUT\ff'.

>
> May be, "TUN" ?
>
> --PA
>
>
>

 
Reply With Quote
 
Thomas F. Divine [MVP]
Guest
Posts: n/a

 
      11-20-2006
Aren't OIDs that begin with "0xFF" vendor-proprietary OIDs?

Thomas

"DW" <> wrote in message
news:7660FEAE-E874-4C8D-A497-...
>I found the issue, by chance. A query for an OID (0xff54554e to be exact)
> returned success instead of not supported. After fixing this, the link
> local
> address was correct.
>
> Do you know what this OID is used for?
>
> ""Bryan S. Burgin [MSFT]"" wrote:
>
>> NDIS 5 or 6, just to be clear?
>>
>> You only have control over the MAC address via your response to
>> OID_802_3_PERMANENT_ADDRESS and OID_802_3_CURRENT_ADDRESS. The problem
>> will be somewhere higher in the stack.
>>
>> Bryan S. Burgin
>>
>>
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights


 
Reply With Quote
 
Stephan Wolf [MVP]
Guest
Posts: n/a

 
      11-22-2006
Thomas F. Divine [MVP] wrote:
> Aren't OIDs that begin with "0xFF" vendor-proprietary OIDs?


Absolutely. And they are all optional by nature.

Stephan

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Vista Firewall and local IPV6 traffic dropped? Ernie Windows Vista Networking 1 12-19-2007 01:51 AM
How to Disable IPV6 on Local host RayG Windows Vista Networking 0 10-15-2007 04:11 PM
Both DHCP-assigned and static address on same NIC? Jacob Jensen Windows Vista Help 0 08-03-2007 01:40 PM
Need scsi address assigned by port driver in SPTI bill Windows Vista Drivers 6 05-15-2005 03:52 PM
local address/adapter zde Windows Vista Drivers 0 01-02-2004 08:59 AM



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 47 48 49 50 51 52 53 54 55 56 57 58 59