Soru

Zorluk: KolayIPv4 Static Routing

A network administrator needs to manually configure an IPv4 static route to the destination subnet 192.168.10.0/24192.168.10.0/24 using the next-hop IP address 10.1.1.210.1.1.2 on a Cisco IOS router, starting from user EXEC mode. Place the CLI commands and actions in the correct sequential order from first to last.

  1. 1Enter privileged EXEC mode by executing the command `enable` at the `Router>` prompt.
  2. 2Enter global configuration mode by executing the command `configure terminal` at the `Router#` prompt.
  3. 3Configure the static route by executing `ip route 192.168.10.0 255.255.255.0 10.1.1.2` at the `Router(config)#` prompt.
  4. 4Return to privileged EXEC mode and verify the route entry by executing `show ip route static`.

Cevap

The correct sequence starts with entering privileged EXEC mode (`enable`), moving into global configuration mode (`configure terminal`), applying the static route command (`ip route 192.168.10.0 255.255.255.0 10.1.1.2`), and finally verifying the routing table entry (`show ip route static`) in privileged EXEC mode.
In Cisco IOS, configuration follows a strict hierarchy. User EXEC mode (`Router>`) must first be elevated to Privileged EXEC mode (`Router#`) using `enable`. Next, Global Configuration mode (`Router(config)#`) is accessed with `configure terminal`. The static route `ip route 192.168.10.0 255.255.255.0 10.1.1.2` is then entered. Finally, returning to Privileged EXEC mode permits running `show ip route static` to verify that the route is installed in the routing table.

Adım Adım Çözüm

1
Elevate privileges from User EXEC mode to Privileged EXEC mode.
Prompt changes from `Router>` to `Router#` after running `enable`.
Configuration commands cannot be executed directly from User EXEC mode.
2
Navigate to Global Configuration mode.
Prompt changes to `Router(config)#` after running `configure terminal`.
Static route configuration via `ip route` is a global configuration parameter.
3
Configure the IPv4 static route.
The command `ip route 192.168.10.0 255.255.255.0 10.1.1.2` is committed to running-config.
Specifies destination network prefix, subnet mask, and next-hop IP address.
4
Exit configuration mode and verify the routing table.
The `show ip route static` command displays `S 192.168.10.0/24 [1/0] via 10.1.1.2`.
Confirms the static route is installed in the IPv4 routing table successfully.

Anahtar Kavram

Cisco IOS CLI hierarchy navigation and static route command syntax
Bu soruyu puanla