Just out of curiosity, let's say I have a forwarding table in an IP router that looks like this:
134.50.56.0/22 Interface 4
134.50.60.0/22 Interface 3
192.53.40.0/23 Interface 2
default Interface 1
The router have the following incomming datagrams to deal with:
1) 134.50.63.9
2) 134.50.57.13
3) 134.50.52.3
4) 192.53.40.6
5) 192.53.56.7
Does the forwarding plane use the longest prefix matching rule here to determine on which interface the datagram should be forwarded?
Then datagram 1 should be sent to interface 3, 2->4, 3->4, 4->2 and 5->2...? Right?