InterviewSolution
Saved Bookmarks
| 1. |
You see an ipv6 address displayed as fe80::5efe:10.0.0.2%2. This is an example of what? |
|
Answer» IPv6 tunnelingStep by STEP EXPLANATION:Fe80::5efe:10.0.0.2%2:This is a link-local address, and the IPv4 address (10.0.0.2) is a part of the WHOLE IPv6 address. IPv6 PACKETS can be encapsulated inside IPv4 datagrams. This is known as IPv6 TUNNELING. This is usually achieved by a virtual adapter or a pseudo-interface, not a physical network adapter. This allows connectivity for IPv6 hosts that are behind an IPv4 device or IPv6 unaware device. |
|