Section 22: Troubleshooting Network Issues Flashcards

1
Q

Startup vs Running Config

A

show startup-config: ▪ Stored in NVRAM and contains the commands needed to initially configure a router

show running-config: ▪ Actively being used by the router at that moment

copy running-config startup-config

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

To view routing information

A

Cisco: show ip route
WIndows: route print
Linux, Unix, OSx: route -n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Collision Domain

A

▪ Network segment where simultaneous data transmissions collide with one another
▪ Use any Layer 2 device to break apart collision domains
● Turn off autonegotiation
● Hardcode lower speed
● Change to half-duplex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Broadcast Storm

A

▪ Occurs when a network system is overwhelmed by continuous multicast or broadcast traffic
● Layer 2: FF:FF:FF:FF:FF:FF
● Layer 3: 255.255.255.255

Broadcast domains can only be broken up by a router.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Broadcast Domain

A

▪ A logical division of computer network where all nodes can reach each other by broadcast at the data link layer
▪ Layer 2 devices will not break up a broadcast domain. Use a router to break up subnets into smaller broadcast domains.
Couple of Causes of Broadcast Storm:
1. Singular broadcast domain that is too large (too many clients). Use subnets and routers.
2. Large volume of DCHP requests: (DORA) Discover-Offer-Request-Acknowledge. If a lot of clients are requesting IP address at same time (After network equipment reboot, for example.) Check if DHCP relays are in use.
3. Loops created if unmanaged switches are cabled together.
o Enable Bridge Protocol Data Units (BPDU) on managed switches
o Enforce a maximum number of MAC addresses per port

Identify a broadcast storm by looking at packet counters and compare to baseline; Look at network monitoring tools and look at packet loss; Best way is to setup packet analyzer and look for broadcast packets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Duplicate MAC Addresses (Layer 2)

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Duplicate IP Addresses (Layer 3)

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Multicast Flooding

A

▪ No specific host is associated with the multicast MAC address in the CAM table of the switch. To prevent, configure switch to block unknown multicast packets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Asymmetrical Routing

A

▪ Network packets leave via one path and return via a different path
▪ Routing issues cause issues with dropped packet flows
(When traffic flows across two different layer 2 bridge pair interface: router/firewall) When using load balancing and HSRP protocol can occur, stateful firewall, deep packet inspection. Solution is to place firewall and router so traffic flows through same device in both directions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Missing Routes

A

▪ When a router cannot reach a destination because there is a missing route in the routing table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Switching/ Bridge Loop

A

▪ Switching loops are usually an issue with how STP is configured
(To prevent enable STP and configure (command: show spanning-tree))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Routing Loop (most created when using static routes)

A

▪ Formed when an error occurs in the operation of the routing algorithm and creates a circular route amongst a group of network devices
▪ Routing loops are caused by logical Layer 3 circular connections that may exist in a routing table
● Time to Live (TTL) to help avoid routing loops

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Split Horizon (to avoid routing loop prevention)

A

▪ Routing configuration that stops a route from being advertised back in the direction from which it came
● ip split-horizon
● no ip split-horizon

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Route Poisoning (to avoid routing loop prevention)

A

▪ Increasing a router’s metric to an infinitely high number after detecting one of its connected routes has failed (Happens automatically)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Hold-Down Timer (to avoid routing loop prevention)

A

▪ Prevents bad routes from being restored and passed to other routers by accident
● Hold-down period
● 180 seconds (3 minutes)
▪ Statically-created routes are given a metric of 1 by default

How well did you know this?
1
Not at all
2
3
4
5
Perfectly