You are on page 1of 8

SEMESTER 2 Chapter 2

Static Networking
V 4.0

Noel Rosado
Netw204
2.1.1 What are the primary Determine the best path to send packets
responsibilities of the router? Forwarding packets to their destination
2.1.3 What is the first serial connector dte
described called at the router
end?
What is the first serial connector dce
described called at the router
end?
What are the five standards EIA/TIA-232, EIA/TIA-449, V.35, X.21, and EIA/TIA-
supported by serial connections? 530
2.1.3.2 When will static routes and
dynamic routes be added to the
routing table?
What command will show the
status and gives a detailed
description for all interfaces on the
router?
What does the administratively
down out put mean?
What does the line down output
mean?
What does the show ip interfaces
brief command list?
Why is show ip interfaces brief
command better than show
running config to see if the state of
the interfaces?
2.2.2 What is the default state of router Shutdown / turned off
interfaces?
What are the commands and
prompt to enable an interface? R1(config)#interface fastethernet 0/0
R1(config-if)#ip address 172.16.3.1 255.255.255.0
R1(config-if)#no shutdown
Even after configuring an A carrier signal from another device (switch,hub,pc,
interface, what must be received or another router)
by the interface to change the
state to up?
What command will stop the the logging synchronous command
messages returned by IOS not to
interfere with your typing?
2.2.2.2 What does a C mean in the output It’s directly connected
of show ip route?
What types of addresses are seen Network addresses
in the routing table?
2.2.3 What must be true for the network Interface is up and line protocol is up
of each interface on a router?
What is the default gateway for a The FastEthernet interface will be the default
LAN? gateway
2.2.3.2 What does a device send if it does An ARP request
not have the ip address in its ARP
table?
2.2.4 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
Why may a serial interface still be Depends on the WAN
down after it has been configured?
After the other end of the b/c you have not configured and enables the other
connection is configured, why is end of the serial link
the line protocol down?
2.2.5 What end of a serial connection is The DCE (data circuit-terminating equipment)
the service provider?
What end of the serial connection The DTE device (data terminal equipment)
is the router by default?
What device is used to convert the The CSU/DSU(DCE device)
data from the router (DTE device)
into a form acceptable to the WAN
service provider?
What do serial interfaces require A clock signal
to control the timing of
communication?
2.2.5.2 What two things must be done to Connect the DCE end of the cable to the interface
configure a serial interface as a Configure the clock signal on the serial interface
DCE? using the clock rate command
What are the two types of serial DTE/DCE crossover cable
cables used in the lab? A DTE cables connected to a DCE cable
What command will tell you which Show controllers
type of cable is connected to the
interface?
2.2.5.3 What command will show the Show interfaces and show ip interface brief
status of the interfaces?
What is the second test to see if Ping the remote interface
the interface is operational?
What command will show if the Show ip route
router knows how to get to the
network?
What command will show you all
the commands that have been
configured on the router?
2.3.1 What is the purpose of the routing To provide the router w/ paths to different destination
table? networks
What does the debug command Any changes that the router performs when
show? adding/removing routes
What debug command will show Debug ip routing
you as networks are connected?
What command is used to turn off Undebug ip routing
the debug command?
What two commands are used to
remove a directly connected
network?
2.3.2 What is the crucial step in The crucial step in configuring your network is to
configuring your network? verify that all the interfaces are "up" and "up" and
that the routing tables are complete. Regardless of
what routing scheme you ultimately configure - static,
dynamic, or a combination of both - verify your initial
network configurations with the show ip interface
brief command and the show ip route command
before proceeding with more complex configurations.
What two commands should you ip interface brief command and the show ip route
use before you continue with more command before proceeding with more complex
complex configurations? configurations.
What does a failed ping display? It failed because R2 does not have a route in its
routing table that matches either 172.16.3.1 or
192.168.2.1, which is the ping packet's destination IP
address.
2.3.2.2 Why does the first ping fail and the It is successful because R2 has a route in its routing
second ping succeed? table that matches 192.168.1.1, which is the ping
packet's destination IP address.
2.3.3 What is the network monitoring Cisco Discovery Protocol (CDP)
and troubleshooting tool used in
this section?
Which device will information be neighbors
gathered about, be specific?
What information is contained in router interfaces CDP
the advertisements?
At layer 3, what do routing At Layer 3, routing protocols consider neighbors to
protocols consider neighbors? be devices that share the same network address
space.
What layer does CDP operate at? Layer 2
Describe Cisco CDP neighbors? R1 and S1 are CDP neighbors.
R1 and R2 are CDP neighbors.
R2 and S2 are CDP neighbors.
R2 and R3 are CDP neighbors.
R3 and S3 are CDP neighbors.
2.3.3.2 What are the commands to the protocols
display CDP information?
What is the default setting for The default is the CDP
CDP?
What are the 5 types of Device identifiers - For example, the configured host
information that CDP provides name of a switch
information about? Address list - Up to one Network layer address for
each protocol supported
Port identifier - The name of the local and remote
port-in the form of an ASCII character string such as
ethernet0
Capabilities list - For example, whether this device is
a router or a switch
Platform - The hardware platform of the device; for
example, a Cisco 7200 series router
2.3.4 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
What information will be provided
even if you can not ping that
interface?
What information can be gathered
if you telnet to a neighboring
device?
Can CDP be a security risk?
What command can be used to Router(config)#no cdp run
shut off CDP on a router?
(command and prompt)
What command can be used to Router(config-if)#no cdp enable
shut off CDP on an interface?
(command and prompt)
2.4.1 What are the two ways a router Manually, from configured static routes
can learn about remote networks? Automatically, from a dynamic routing protocol
What is a stub route? A stub network is a network accessed by a single
route.
When are static routes used? Static routes are commonly used when routing from
a network to a stub network.
Why would dynamic routing be a Therefore, static routes are configured for
waste of resources for a stub connectivity to remote networks that are not directly
route? connected to a router.
2.4.1.2 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]
What is the simpler version of the Router(config)#ip route network-address subnet-
command that we will use? mask {ip-address | exit-interface }
Describe the first 2 parameters network-address
used. subnet-mask
Describe the choice for the last ip-address - Commonly referred to as the next-hop
parameter to use. router's IP address
exit-interface - Outgoing interface that would be used
in forwarding packets to the destination network
2.4.2 List the output and explain each ip route - Static route command
element from entering the static 172.16.1.0 - Network address of remote network
route. 255.255.255.0 - Subnet mask of remote network
172.16.2.2 - Serial 0/0/0 interface IP address on R2,
which is the "next-hop" to this network
List the output and explain each S - Routing table code for static route
element from entering the show ip 172.16.1.0 - Network address for the route
route command. /24 - Subnet mask for this route; this is displayed in
the line above, known as the parent route, and
discussed in Chapter 8
[1/0] - Administrative distance and metric for the
static route (explained in a later chapter)
via 172.16.2.2 - IP address of the next-hop router,
the IP address of R2's Serial 0/0/0 interface
2.4.2.2 What are the 2 commands to S 192.168.1.0/24 [1/0] via 172.16.2.2
verify static routes? S 192.168.2.0/24 [1/0] via 172.16.2.2
What is recommended to do after R1#copy running-config startup-config
entering and verifying the static
routes?
2.4.2.3 What does principle 1 define "Every router makes its decision alone, based on the
about where a router looks to information it has in its own routing table."
forward packets?
What does principle 2 define "The fact that one router has certain information in its
about what other routers routing routing table does not mean that other routers have
tables contain? the same information."
What does principle 3 state about "Routing information about a path from one network
the return route of a packet? to another does not provide routing information about
the reverse, or return path."
2.4.4.1 Before a router forwards a packet, the routing table process must determine the exit
what must be determined? interface to use to forward the packet.
List the two steps that the router 1. The packet's destination IP address is matched to
uses to forward a packet. the static route 192.168.2.0/24 with the next-hop IP
address 172.16.2.2.

2. The next-hop IP address of the static route,


172.16.2.2, is matched to the directly connected
network 172.16.2.0/24 with the exit interface of Serial
0/0/0.
When the router has to perform Every route that references only a next-hop IP
multiple lookups in the routing address, and does not reference an exit-interface,
table before forwarding a packet, must have the next-hop IP address resolved using
what is the process called? another route in the routing table that has an exit
interface.
How can a static route be entered these routes are resolved to routes in the routing
to stop the recursive lookup table that are directly connected networks, because
process? these entries will always contain an exit interface.
2.4.4.2 What happens to the static route if If the static route cannot be resolved to an exit
the exit interface goes down? interface, in this case Serial 0/0/0, the static route is
removed from the routing table.
2.5.1.2 What is the command to remove S 192.168.2.0/24 is directly connected, Serial0/0/0
the static route with the next hop
ip address?
What is the command to enter a
static route using an exit
interface?
2.5.2 What are the reasons to modify a when the routing table process has a match for a
static route? packet and this static route, it will be able to resolve
the route to an exit interface in a single lookup. As
you can see in the figure, the other two static routes
still must be processed in two steps, resolving to the
same Serial 0/0/0 interface.
Can a static route be directly Static routes that are configured with exit interfaces
modified? Explain your answer instead of next-hop IP addresses are ideal for most
serial point-to-point networks. Point-to-point networks
that use protocols such as HDLC and PPP do not
use the next-hop IP address in the packet forwarding
process. The routed IP packet is encapsulated in an
HDLC Layer 2 frame with a broadcast Layer 2
destination address.
What is the most efficient way to
enter a static route?
2.5.3 What are the three commands ip route 192.168.2.0 255.255.255.0 172.16.2.2
listed to verify static route no ip route 192.168.2.0 255.255.255.0 172.16.2.2
configuration? R1(config)#ip route 192.168.2.0 255.255.255.0
2.5.4 What is the destination MAC the Ethernet destination MAC address will be
address if the packet is to be matched to the next-hop IP address 172.16.2.2. R1
forwarded to the next hop router? checks its FastEthernet 0/1 ARP table for an entry
with 172.16.2.2 and a corresponding MAC address.
If the ip address does exist in the R1 receives the ARP reply and adds the 172.16.2.2
ARP table what type of request is IP address, and the associated MAC address, to its
issued? ARP table.
2.5.4.2 What is the difference between The difference between an Ethernet network and a
entering an exit interface for a point-to-point serial network is that a point-to-point
static route on a serial interface network has only one other device on that network -
and an Ethernet interface? the router at the other end of the link. With Ethernet
networks, there may be many different devices
sharing the same multi-access network, including
hosts and even multiple routers.
Will a static route with an exit R1 knows that the packet needs to be encapsulated
interface on a Ethernet interface in an Ethernet frame and sent out the FastEthernet
always work? 0/1 interface. However, R1 does not know the next-
hop IP address and therefore it cannot determine the
destination MAC address for the Ethernet frame.
What is the command to configure R1(config)#ip route 192.168.2.0 255.255.255.0
both the exit interface and ip fastethernet 0/1 172.16.2.2
address for a static route?
2.6.1 Why does making a routing table Creating smaller routing tables makes the routing
smaller improve the efficiency of table lookup process more efficient, because there
the router? are fewer routes to search. If one static route can be
used instead of multiple static routes, the size of the
routing table will be reduced.
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
What are the six steps in creating 1. Write out the networks that you want to summarize
a summary route? 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.
2.6.2 If two routes in the routing table The default route
match the packet, which route will
the router choose?
What is a default static route? Default routes are very common on routers
What are the 2 times a default When no other routes in the routing table match the
static route is used? 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.
List the complete command to Router(config)#ip route 0.0.0.0 0.0.0.0 [exit-interface
enter a default static route. | ip-address ]
What is the ip address and subnet 0.0.0.0 0.0.0.0
mask for quad-zero?
2.6.2.2 What does the * mean next to the the asterisk indicates that this static route is a
S in the routing table? candidate default route.
What is true about a default static Default routes are very common on routers. Instead
route and matching packets? of routers having to store routes for all of the
networks in the Internet, they can store a single
default route to represent any network that is not in
the routing table.
2.7.1 Definitely understand each step in 1. The packet arrives on the FastEthernet 0/0
the process explained. If any of interface of R1.
the steps are confusing, list your
questions here 2. R1 does not have a specific route to the
destination network, 192.168.2.0/24; therefore, R1
uses the default static route.

3. R1 encapsulates the packet in a new frame.


Because the link to R2 is a point-to-point link, R1
adds an "all 1s" address for the Layer 2 destination
address.

4. The frame is forwarded out the serial 0/0/0


interface. The packet arrives on the Serial 0/0/0
interface on R2.

5. R2 decapsulates the frame and looks for a route


to the destination. R2 has a static route to
192.168.2.0/24 out Serial0/0/1.

6. R2 encapsulates the packet in a new frame.


Because the link to R3 is a point-to-point link, R2
adds an "all 1s" address for the Layer 2 destination
address.

7. The frame is forwarded out the Serial0/0/1


interface. The packet arrives on the Serial0/0/1
interface on R3.

8. R3 decapsulates the frame and looks for a route


to the destination. R3 has a connected route to
192.168.2.0/24 out FastEthernet 0/1.
2.7.2 What are some forces that can An interface fails.
cause a networks status to A service provider drops a connection.
change? There is an over-saturation of links.
An administrator enters a wrong configuration.
What are some of the commands ping
you can used to troubleshoot a traceroute
network? show ip route

You might also like