Which two statements describe the process identifier that is used in the command to configure OSPF on a router? (Choose two.)
Router(config)# router ospf 1
A. All OSPF routers in an area must have the same process ID. B. Only one process number can be used on the same router. C. Different process identifiers can be used to run multiple OSPF processes D. The process number can be any number from 1 to 65,535. E. Hello packets are sent to each neighbor to determine the processor identifier.
Correct Answers: C, D
Explanation:
Multiple OSPF processes can be configured on a router using multiple process ID’s. The valid process ID’s are shown below:
Edge-B(config)#router ospf ?
<1-65535> Process ID
For what two reasons has the router loaded its IOS image from the location that is shown? (Choose two.)
A. Router1 has specific boot system commands that instruct it to load IOS from a TFTP server. B. Router1 is acting as a TFTP server for other routers. C. Router1 cannot locate a valid IOS image in flash memory. D. Router1 defaulted to ROMMON mode and loaded the IOS image from a TFTP server. E. Cisco routers will first attempt to load an image from TFTP for management purposes.
Correct Answers: A, C
Explanation:
The loading sequence of CISCO IOS is as follows:
Booting up the router and locating the Cisco IOS
1. POST (power on self-test)
2. Bootstrap code executed
3. Check Configuration Register value (NVRAM) which can be modified using the config-register command
0 = ROM Monitor mode
1 = ROM IOS
2 – 15 = startup-config in NVRAM
4. Startup-config filE. Check for boot system commands (NVRAM)
If boot system commands in startup-config
a. Run boot system commands in order they appear in startup-config to locate the IOS
b. [If boot system commands fail, use default fallback sequence to locate the IOS (Flash, TFTP, ROM)?]
If no boot system commands in startup-config use the default fallback sequence in locating the IOS:
a. Flash (sequential)
b. TFTP server (netboot)
c. ROM (partial IOS) or keep retrying TFTP depending upon router model
5. If IOS is loaded, but there is no startup-config file, the router will use the default fallback sequence for locating the IOS and then it will enter setup mode or the setup dialogue.
What can be determined about the router from the console output?
A. No configuration file was found in NVRAM. B. No configuration file was found in flash. C. No configuration file was found in the PCMCIA card. D. Configuration file is normal and will load in 15 seconds.
Correct Answer: A
Explanation:
When no startup configuration file is found in NVRAM, the System Configuration Dialog will appear to ask if we want to enter the initial configuration dialog or not.
Which three elements must be used when you configure a router interface for VLAN trunking? (Choose three.)
A. one physical interface for each subinterface B. one IP network or subnetwork for each subinterface C. a management domain for each subinterface D. subinterface encapsulation identifiers that match VLAN tags E. one subinterface per VLAN F. subinterface numbering that matches VLAN tags
Correct Answers: B,D,E
Explanation: This scenario is commonly called a router on a stick.
Which commands are required to properly configure a router to run OSPF and to add network 192.168.16.0/24 to OSPF area 0? (Choose two.)
A. Router(config)# router ospf 0 B. Router(config)# router ospf 1 C. Router(config)# router ospf area 0 D. Router(config-router)# network 192.168.16.0 0.0.0.255 0 E. Router(config-router)# network 192.168.16.0 0.0.0.255 area 0 F. Router(config-router)# network 192.168.16.0 255.255.255.0 area 0
Correct Answers: B, E
Explanation:
In the router ospf command, the ranges from 1 to 65535 so o is an invalid number -> but To configure OSPF, we need a wildcard in the “network” statement, not a subnet mask. We also need to assgin an area to this process.
A router receives information about network 192.168.10.0/24 from multiple sources. What will the router consider the most reliable information about the path to that network?
A. a directly connected interface with an address of 192.168.10.254/24 B. a static route to network 192.168.10.0/24 C. a RIP update for network 192.168.10.0/24 D. an OSPF update for network 192.168.0.0/16 E. a default route with a next hop address of 192.168.10.1 F. a static route to network 192.168.10.0/24 with a local serial interface configured as the next hop
Correct Answer: A
Explanation:
When there is more than one way to reach a destination, it will choose the best one based on a couple of things. First, it will choose the route that has the longest match; meaning the most specific route. So, in this case the /24 routes will be chosen over the /16 routes. Next, from all the /24 routes it will choose the one with the lowest administrative distance. Directly connected routes have an AD of 1 so this will be the route chosen.
What is the default maximum number of equal-cost paths that can be placed into the routing table of a Cisco OSPF router?
A. 2 B. 8 C. 16 D. unlimited
Correct Answer: B
Explanation:
maximum-paths (OSPF)
To control the maximum number of parallel routes that Open Shortest Path First (OSPF) can support, use the maximum-paths command.
Which command shows your active Telnet connections?
A. show cdp neigbors B. show session C. show users D. show vty logins
Correct Answer: B
Explanation:
The “show users” shows telnet/ssh connections to your router while “show sessions” shows telnet/ssh connections from your router (to other devices). The question asks about “your active Telnet connections”, meaning connections from your router so the answer should be A.
Which type of EIGRP route entry describes a feasible successor?
A. a backup route, stored in the routing table B. a primary route, stored in the routing table C. a backup route, stored in the topology table D. a primary route, stored in the topology table
Correct Answer: C
Explanation:
EIGRP uses the Neighbor Table to list adjacent routers. The Topology Table list all the learned routers to destination whilst the Routing Table contains the best route to a destination, which is known as the Successor. The Feasible Successor is a backup route to a destination which is kept in the Topology Table.
The network administrator cannot connect to Switch1 over a Telnet session, although the hosts attached to Switch1 can ping the interface Fa0/0 of the router.
Given the information in the graphic and assuming that the router and Switch2 are configured properly, which of the following commands should be issued on Switch1 to correct this problem?
A.
Switch1(config)# line con0
Switch1(config-line)# password cisco
Switch1(config-line)#login B.
Switch1(config)# interface fa0/1
Switch1(config-if)# ip address 192.168.24.3 255.255.255.0 C.
Switch1(config)# ip default-gateway 192.168.24.1 D.
Switch1(config)# interface fa0/1
Switch1(config-if)# duplex full
Switch1(config-if)# speed 100 E.
Switch1(config)# interface fa0/1
Switch1(config-if)# switchport mode trunk
Correct Answer: C
Explanation:
Since we know hosts can reach the router through the switch, we know that connectivity, duplex. Speed, etc. are good. However, for the switch itself to reach networks outside the local one, the ip default-gateway command must be used.