medium
Single Answer
0

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

A

ip route 205.34.54.85/24 205.34.55.2

B

ip route 205.34.54.85 255.255.255.248 205.34.55.2

C

ip route 205.34.54.85 255.255.255.240 205.34.55.2

D

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.

static-routes
subnet-mask
cidr
cli-syntax