IPv6 EUI-64 explained

EUI-64 (Extended Unique Identifier) is a method we can use to automatically configure IPv6 host addresses. An IPv6 device will use the MAC address of its interface to generate a unique 64-bit interface ID. However, a MAC address is 48 bit and the interface ID is 64 bit. What are we going to do with the missing bits?

IPv6 MAC address vs Interface ID

Here’s what we will do to fill the missing bits:

  1. We take the MAC address and split it into two pieces.
  2. We insert “FFFE” in between the two pieces so that we have a 64 bit value.
  3. We invert the 7th bit of the interface ID.

So if my MAC address would be 1234.5678.ABCD then this is what the interface ID will become:

IPv6 EUI-64 FF FE

Above you see how we split the MAC address and put FFFE in the middle. It doesn’t include the final step which is “inverting the 7th” bit. To do this you have to convert the first two hexadecimal characters of the first byte to binary, lookup the 7th bit and invert it. This means that if it’s a 0 you need to make it a 1, and if it’s a 1 it has to become a 0.

The 7th bit represents the universal unique bit. A “built in” MAC address will always have this bit set to 0. When you change the MAC address this bit has to be set to 1. Normally people don’t change the MAC addresses of their interfaces which means that EUI-64 will change the 7th bit from 0 to 1 most of the time. Here’s what it looks like:

IPv6 EUI-64 7th bit flip

We take the first two hexadecimal characters of the first byte which are “12” and convert those back to binary. Then we invert the 7th bit from 1 to 0 and make it hexadecimal again. The EUI-64 interface ID will look like this:

IPv6 EUI-64 before after 7th bit

Now you know how EUI-64 works, let’s see what it looks like on a router. I’ll use a Cisco IOS router for this and use 2001:1234:5678:abcd::/64 as the prefix:

Router(config)#interface fastEthernet 0/0
Router(config-if)#ipv6 address 2001:1234:5678:abcd::/64 eui-64  

In this I configured the router with the IPv6 prefix and I used EUI-64 at the end. This is how we can automatically generate the interface ID using the mac address. Now take a look at the IPv6 address that it created:

Router#show interfaces fastEthernet 0/0 | include Hardware
  Hardware is Gt96k FE, address is c200.185c.0000 (bia c200.185c.0000)
Router#show ipv6 interface fa0/0
FastEthernet0/0 is up, line protocol is up
  IPv6 is enabled, link-local address is FE80::C000:18FF:FE5C:0
  No Virtual link-local address(es):
  Global unicast address(es):
    2001:1234:5678:ABCD:C000:18FF:FE5C:0, subnet is 2001:1234:5678:ABCD::/64 [EUI]

See the C000:18FF:FE5C:0 part above? That’s the MAC address that is split in 2, FFFE in the middle and the “2” in “C200” of the MAC address has been inverted which is why it now shows up as “C000”.

When you use EUI-64 on an interface that doesn’t have a MAC address then the router will select the MAC address of the lowest numbered interface on the router.

I hope this has been useful to understand EUI-64, if you have any questions feel free to leave a comment!

Tags:


Forum Replies

  1. Hi Rene,

    Do Windows, Linux and Mac hosts calculate it some way ?

     

  2. Hi Diego,

    EUI-64 is described in the RFC, most hosts will use this for automatically assigning an address. Linux and MAC both use this.

    Windows however seems to use something else. It seems Vista, 7/8/10 and Server 2008 create random interface IDs instead of EUI-64. I believe you can change this though.

    Rene

  3. Hi Rene,

    According to the RFC 3513 we need to invert the Universal/Local bit (“U/L” bit) in the 7th position of the first octet. The “u” bit is set to 1 to indicate Universal, and it is set to zero (0) to indicate local scope.

    1 – Universally Unique in Ethernet MAC
    0 – Locally Unique addresses in Ethernet MAC

    If this bit is already set to 1 in Mac address and we need to build a global address, should we invert the 7th bit to 0 ?

    Thanks !

  4. Hi Jose,

    Let’s look at an example:

    R1#show interfaces GigabitEthernet 1 | include bia
      Hardware is CSR vNIC, address is fa16.3e60.0217 (bia fa16.3e60.0217)
    

    The 7th bit is in the first two hexadecimal characters:

    fa = 1111 1010

    As you can see, the 7th bit is set to 1 here. Now let’s check the IPv6 address:

    R1#show ipv6 interface GigabitEthernet 1 | include link-local
      IPv6 is enabled, link-local address is FE80::F816:3EFF:FE60:217
    

    Let’s write down the complete uncompressed address:

    FE80:0000:0000:0000:F816:3EFF:FE60:0217

    Let’s look only at the EUI-64 part:

    F

    ... Continue reading in our forum

  5. Rene, I see you keep referring to FA as FFFF 1000. Is that correct or a typo? This was referenced twice that way. This is example on IPv6 EUI-64 explained.

    Example from Notes:

    Let’s look only at the EUI-64 part:

    F816:3EFF:FE60:0217

    We only care about the first two hexadecimal characters:

    F8 = FFFF 1000

    As you can see, the 7th bit has been inverted from 1 to 0.

    2nd Example:

    Here’s the EUI-64 part:

    FA16:3EFF:FE60:0217

    First two hexadecimal characters:

    FA = FFFF 1000

    As you can see, it got inverted. No matter if the 7th bit of the MAC address is a 0 or 1, it always gets inverted.

28 more replies! Ask a question or join the discussion by visiting our Community Forum