Module 2 Flashcards

1
Q

Which switching method is more appropriate for latency-sensitive applications?

A

Cut-through switching is appropriate for applications where latency must be under 10 microseconds.

Example: High-frequency trading systems often require cut-through switching.

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

What is a collision domain?

A

A collision domain is a network segment where data packets can collide with one another when being sent on a shared medium, such as an Ethernet network in half-duplex mode.

Additional information: Collision domains are minimized in full-duplex mode.

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

How do switches help in eliminating collision domains?

A

Switches eliminate collision domains by using full-duplex communication, where each device has a dedicated communication path.

Example: Switches separate devices into individual collision domains.

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

What happens in a half-duplex communication mode?

A

In half-duplex mode, multiple devices share the same communication path, which can result in collisions and contention for bandwidth.

Example: Ethernet hubs operate in half-duplex mode.

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

What is a broadcast domain?

A

A broadcast domain is the range of devices on a network segment that receive broadcast frames sent by any device in the segment. It extends across all Layer 1 and Layer 2 devices on a LAN.

Example: VLANs can be used to divide broadcast domains.

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

Which device can break a broadcast domain?

A

A Layer 3 device, such as a router, can break a broadcast domain.

Example: Routers separate broadcast domains.

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

What effect does increasing the number of devices at Layer 1 or Layer 2 have on the broadcast domain?

A

Increasing the number of devices at Layer 1 or Layer 2 will expand the broadcast domain, potentially causing congestion and reducing network performance.

Example: Adding more devices to a switch can increase broadcast domain size.

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

What features of switches help alleviate network congestion?

A

Fast Port Speeds
Fast Internal Switching
Large Frame Buffers
High Port Density

Example: Switches with high port density can handle more local traffic without congesting the network.

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

What is Content Addressable Memory (CAM)?

A

CAM is a type of memory used by switches to build and store the MAC address table for frame forwarding decisions.

Example: CAM is used in Layer 2 switches for MAC address lookups.

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

What is a MAC address table?

A

A MAC address table is a data structure that maps MAC addresses to specific ports on a switch, allowing it to forward frames to the correct destination.

Example: MAC address tables are dynamically updated as devices connect and disconnect.

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

What is the purpose of automatic buffering in switch operations?

A

Automatic buffering helps manage speed differences between ingress and egress ports by storing frames temporarily.

Example: Automatic buffering prevents frame loss during periods of congestion.

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

What is fragment-free switching?

A

Fragment-free switching is a type of cut-through switching that checks the first 64 bytes of a frame to ensure it is free from collisions and runts before forwarding.

Example: Fragment-free switching reduces the likelihood of forwarding damaged frames.

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

What is the difference between ingress and egress in networking terms?

A

Ingress is the entry port of a frame into the network device, while egress is the exit port from the network device.

Example: Ingress traffic is processed by the switch before being sent out through egress ports.

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

How does a switch handle broadcast or unknown unicast frames?

A

The switch floods the frame out of all interfaces except the ingress port.

Example: Broadcast frames are forwarded to all devices in the broadcast domain.

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

How do switches manage congestion and collision domains?

A

Switches use full-duplex communication to eliminate collision domains and use MAC address tables to direct frames, reducing congestion.

Example: Full-duplex communication allows for simultaneous data transmission and reception, reducing collisions.

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

What does fast internal switching do?

A

Uses a fast internal bus or shared memory to improve performance.

17
Q

What are Large Frame Buffers on a switch?

A

Provides temporary storage while processing large numbers of frames.

18
Q

What does High Port Density on a switch do?

A

Allows many devices to connect to a LAN at a lower cost, creating more local traffic with less congestion.

19
Q

What is ingress in terms of switches and what does it base it’s forwarding on?

A

Frames entering the interface, and bases forwarding on ingress interface and the destination MAC address.

Note: a switch will never allow traffic to be forwarded out the interface it received the traffic.

20
Q

What is egress in terms of switches and how is it determined?

A

Frames exiting the interface, determined using the destination MAC address.

21
Q

What does a switch base it’s forwarding decisions on?

A

It’s Mac Address Table

22
Q

What is store-and-forward switching and what are its two basic characteristics?

A

Receives the entire frame and ensures the frame is valid. Store-and-forward switching is Cisco’s preferred switching method.

Error Checking – The switch will check the Frame Check Sequence (FCS) for CRC errors. Bad frames will be discarded.

Buffering – The ingress interface will buffer the frame while it checks the FCS. This also allows the switch to adjust to a potential difference in speeds between the ingress and egress ports

23
Q

What is cut-through switching?

A

Forwards the frame immediately after determining the destination MAC address of an incoming frame and the egress port.

24
Q

What is store-and-forward switching?

A

Receives the entire frame and ensures the frame is valid. Store-and-forward switching is Cisco’s preferred switching method.

25
Q

Explain how frames are forwarded in a switched network.

A

The switch uses a two step process:
Step 1. Learn – Examines Source Address
• Adds the source MAC if not in table
• Resets the time out setting back to 5 minutes if source is in the table
Step 2. Forward – Examines Destination Address
• If the destination MAC is in the MAC address table it is forwarded out the specified port.
• If a destination MAC is not in the table, it is flooded out all interfaces except the one it was received