A network administrator configures a router interface using EUI-64 address generation with the command `ipv6 address 2001:db8:100:1::/64 eui-64`. If the physical MAC address of the interface is `bc24.1122.3344`, which 64-bit interface identifier will be automatically derived?
- BE24:11FF:FE22:3344Answer
- BBC24:11FF:FE22:3344
- CBE24:11FF:FF22:3344
- DBE24:1122:33FF:FE44
Answer
The derived interface identifier is BE24:11FF:FE22:3344.
The 64-bit EUI-64 interface identifier is generated by taking the 48-bit MAC address (`bc24.1122.3344`), inserting the 16-bit value `FFFE` in the middle (between `11` and `22`), and flipping the 7th bit of the first byte. The binary representation of `BC` is `10111100`; flipping the 7th bit yields `10111110`, which equals `BE` in hexadecimal format. Combining these results yields `BE24:11FF:FE22:3344`.
Step-by-Step Solution
Key Concept
EUI-64 Interface Identifier Generation