Longest Prefix Matching
Consider a datagram network using 8-bit host addresses.
Suppose a router uses longest-prefix matching, and has the following forwarding table:
Question List
1. Suppose a datagram arrives at the router, with destination address 01000100. To which interface will this datagram be forwarded using longest-prefix matching?
2. Suppose a datagram arrives at the router, with destination address 10000010. To which interface will this datagram be forwarded using longest-prefix matching?
3. Suppose a datagram arrives at the router, with destination address 11101101. To which interface will this datagram be forwarded using longest-prefix matching?
Solution
1. Since the address is 01000100, it will go to interface 3.
2. Since the address is 10000010, it will go to interface 5.
3. Since the address is 11101101, it will go to interface 2.
That's incorrect
That's correct
The answer was: 3
The answer was: 5
The answer was: 2