Вы находитесь на странице: 1из 6

CCNA-2 Chapter 2 Study Guide Questions – Student Version

Static Networking
V 4.0

1. What are the primary responsibilities of Determining the best path to send packets
the router? Forwarding packets toward their destination
2. What is the first serial connector DB-60
described called at the router end?
3. What are the five standards supported EIA/TIA-232, EIA/TIA-449, V.35, X.21, and EIA/TIA-
by serial connections? 530 standards
4. When will static routes and dynamic After the exit interfaces are configured
routes be added to the routing table?
5. What command will show the status Show interfaces
and gives a detailed description for all
interfaces on the router?
6. What does the administratively down That the interface is turned off
out put mean?
7. What does the line down output mean? That no carrier signal is being received
8. What does the show ip interfaces brief a portion of the interface information in a condensed
command list? format
9. Why is show ip interfaces brief to quickly verify that interfaces are up and up
command better than show running (administratively up and line protocol is up)
config to see if the state of the
interfaces?
10. What is the default state of router Shut down
interfaces?
11. What are the commands and prompt to R1(config)#interface fastethernet 0/0
enable an interface? R1(config-if)#ip address 172.16.3.1 255.255.255.0
R1(config-if)#no shutdown
12. Even after configuring an interface, Carrier signal
what must be received by the interface
to change the state to up?
13. What command will stop the messages logging synchronous
returned by IOS not to interfere with
your typing?
14. What does a C mean in the output of Directly connected network
show ip route?
15. What types of addresses are seen in Network addresses
the routing table?

Page 1 of 6
16. What must be true for the network of The subnet must be different
each interface on a router?
17. What is the default gateway for a The router interface
LAN?
18. What does a device send if it does ARP request
not have the ip address in its ARP
table?
19. What are the commands to R1(config)#interface serial 0/0/0
configure a serial interface? R1(config-if)#ip address 172.16.2.1 255.255.255.0
R1(config-if)#no shutdown
20. Why may a serial interface still be The other end of the connection may not be
down after it has been configured? configured
21. After the other end of the connection The clock rate has not been set
is configured, why is the line
protocol down?
22. What end of a serial connection is DCE
the service provider?
23. What end of the serial connection is DTE
the router by default?
24. What device is used to convert the CSU/DSU
data from the router (DTE device)
into a form acceptable to the WAN
service provider?
25. What do serial interfaces require to Clock signal
control the timing of
communication?
26. What two things must be done to 1. Connect the DCE end of the cable to the serial
configure a serial interface as a interface.
DCE? 2. Configure the clock signal on the serial interface
using the clock rate command.
27. What are the two types of serial A DTE/DCE crossover cable on which one end is
cables used in the lab? DTE and the other end is DCE
A DTE cable connected to a DCE cable
28. What command will tell you which Show controllers
type of cable is connected to the
interface?
29. What command will show the status Show interface
of the interfaces? Show ip interface brief
30. What is the second test to see if the Ping
interface is operational?
31. What command will show if the Show ip route
router knows how to get to the
network?
32. What command will show you all the Show running-config
commands that have been
configured on the router?
33. What is the purpose of the routing A routing table is a data structure used to store
Page 2 of 6
table? routing information acquired from different sources.
The main purpose of a routing table is to provide
the router with paths to different destination
networks.
34. What does the debug command Monitor router operations in real time
show?
35. What debug command will show Debug ip route
you as networks are connected?
36. What command is used to turn off Undebug all
the debug command?
37. What two commands are used to shutdown and no ip address
remove a directly connected
network?
38. What is the crucial step in Verify that all interfaces are up and up
configuring your network?
39. What two commands should you the show ip interface brief command and the show
use before you continue with more ip route command
complex configurations?
40. What does a failed ping display? …..
41. Why does the first ping fail and the There is no match in the routing table for the first
second ping succeed? ping but there is for the second ping
42. What is the network monitoring and
troubleshooting tool used in this Cisco Discovery Protocol (CDP)
section?
43. Which device will information be directly connected Cisco devices
gathered about, be specific?
44. What information is contained in the the types of devices that are connected, the router
advertisements? interfaces they are connected to, the interfaces
used to make the connections, and the model
numbers of the devices
45. At layer 3, what do routing protocols devices that share the same network address
consider neighbors? space
46. What layer does CDP operate at? Layer 2
47. Describe Cisco CDP neighbors? Cisco devices that are directly connected
physically and share the same data link
48. What are the commands to display show cdp neighbors and show cdp neighbors
CDP information? detail
49. What is the default setting for CDP? On

Page 3 of 6
50. What information is displayed after Neighbor device ID
issuing the show cdp neighbors Local interface
command? Holdtime value, in seconds
Neighbor device capability code
Neighbor hardware platform
Neighbor remote port ID
51. What information will be provided IP address
even if you can not ping that
interface?
52. What information can be gathered if Show CDP information from that device and build a
you telnet to a neighboring device? logical topology
53. Can CDP be a security risk? Yes
54. What command can be used to shut Router(config)#no cdp run
off CDP on a router? (command and
prompt)
55. What command can be used to shut Router(config-if)#no cdp enable
off CDP on an interface? (command
and prompt)
56. What are the two ways a router can Manually, from configured static routes
learn about remote networks? Automatically, from a dynamic routing protocol
57. What is a stub route? A network that can only be accessed by a single
route
58. When are static routes used? Stub routes
59. Why would dynamic routing be a Because there is only one way out for sending
waste of resources for a stub route? non-local traffic
60. What is the complete syntax for Router(config)#ip route prefix mask {ip-address |
entering a static route? interface-type interface-number [ip-address]}
[distance] [name] [permanent] [tag tag]
61. What is the simpler version of the Router(config)#ip route network-address subnet-
command that we will use? mask {ip-address | exit-interface }
62. What are the 2 commands to verify Show ip route
static routes? Show running-config
63. Before a router forwards a packet, The exit interface
what must be determined?
64. List the two steps that the router Match the ip address to the routing table
uses to forward a packet. Determine the exit interface, based on the route in
the routing table.
65. When the router has to perform Recursive lookup
multiple lookups in the routing table
before forwarding a packet, what is
the process called?

Page 4 of 6
66. How can a static route be entered Enter the exit interface vs. next hop ip address
to stop the recursive lookup
process?
67. What happens to the static route The static route is removed
if the exit interface goes down?
68. What is the command to remove No ip route (ip address) (s/n mask) (next hop ip)
the static route with the next hop
ip address?
69. What is the command to enter a ip route (ip address) (s/n mask) (exit interface)
static route using an exit
interface?
70. Can a static route be directly No it must be removed and a new one configured
modified? Explain your answer
71. What is the most efficient way to Use the exit interface
enter a static route?
72. What are the three commands Show running-config, show ip route, ping
listed to verify static route
configuration?
73. Why does making a routing table There are fewer routes to examine
smaller improve the efficiency of
the router?
74. What are the 2 rules on when a The destination networks can be summarized into a
static route can be summarized? single network address, and
The multiple static routes all use the same exit-
interface or next-hop IP address
75. What are the six steps in creating 1. Write out the networks that you want to
a summary route? summarize in binary.
2. To find the subnet mask for summarization, start
with the left-most bit.
3. Work your way to the right, finding all the bits that
match consecutively.
4. When you find a column of bits that do not match,
stop. You are at the summary boundary.
5. Now, count the number of left-most matching bits,
which in our example is 22. This number becomes
your subnet mask for the summarized route, /22 or
255.255.252.0
6. To find the network address for summarization,
copy the matching 22 bits and add all 0 bits to the
end to make 32 bits.
76. If two routes in the routing table The match that is most specific
match the packet, which route will
the router choose?

Page 5 of 6
77. What are the 2 times a default static When no other routes in the routing table match
route is used? the packet's destination IP address. In other words,
when a more specific match does not exist. A
common use is when connecting a company's
edge router to the ISP network.
When a router has only one other router to which it
is connected. This condition is known as a stub
router.
78. List the complete command to enter Router(config)#ip route 0.0.0.0 0.0.0.0 [exit-
a default static route. interface | ip-address ]
79. What is the ip address and subnet 0.0.0.0 0.0.0.0
mask for quad-zero?
80. What does the * mean next to the S Candidate default
in the routing table?
81. What is true about a default static It will match all packets
route and matching packets?
82. What are some of the commands Ping, traceroute, show ip route, show ip interface
you can used to troubleshoot a brief, show cdp neighbors detail
network?

Page 6 of 6

Вам также может понравиться