You need to create a route for 205.34.54.85/29 with the next hop being 205.34.55.2. Which command would create this route?
Answer Options
ip route 205.34.54.85/24 205.34.55.2
ip route 205.34.54.85 255.255.255.248 205.34.55.2
ip route 205.34.54.85 255.255.255.240 205.34.55.2
ip route 205.34.55.2 255.255.255.248 205.34.54.85
Correct Answer: B
Explanation
The network of 205.34.54.85/29 is written out as 205.34.54.85 255.255.255.248. The next hop is 205.34.55.2, so the command would be ip route 205.34.54.85 255.255.255.248 205.34.55.2. The command ip route 205.34.54.85/24 205.34.55.2 is invalid because it is not normally entered with a CIDR notation. The command ip route 205.34.54.85 255.255.255.240 205.34.55.2 is invalid because the network mask is wrong when written out in dotted-decimal format. The command ip route 205.34.55.2 255.255.255.248 205.34.54.85 is invalid because the next hop and the network are in the wrong place on the command.