Module 3: Networking Devices Flashcards

1
Q

What does a network adapter do?

A

Also called a network interface card, or NIC, connects a host to the network medium. It is responsible for converting binary data into a format that can be sent on the network medium.

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

What does a transceiver do?

A

It’s responsible for converting digital data into digital signals to be sent on the medium. The type of signal the transceiver sends depends on the type of network. A fiber optic NIC sends light signals, a wired NIC sends electronic signals on a wire, and a wireless NIC sends radio signals. To receive signals, the transceiver converts digital signals from the network to digital data for the PC.

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

What does a modem do?

A

Converts binary data to analog waves on the sending end (modulation) and then converts the analog waves back to binary data on the receiving end (demodulation).

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

Network adapters use what layers of the OSI model?

A

layers 1 and 2.

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

True or False:

The type of network adapter you choose must match the network architecture you are connecting to.

A

True.

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

Describe a GBIC Transceiver module.

A

A GBIC (gigabit interface converter) is a large transceiver that fits in a port slot and is used for Gigabit media, including copper and fiber optic.

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

Describe a SFP Transceiver module.

A

An SFP (small form-factor pluggable) is similar to a GBIC, but is a smaller size. An SFP is sometimes called a mini-GBIC.

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

Describe a SFP+ Transceiver module.

A

SFP+ is a newer version of the SFP. SFP+ supports data rates as high as 10 Gbit/s, 8 Gbit/s Fibre Channel, 10-gigabit Ethernet, and the Optical Transport Network standard OTU2.

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

Describe a XFP Transceiver module.

A

An XFP transceiver is similar to an SFP in size, but is used for 10-Gigabit networking.

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

Describe a QSFP Transceiver module.

A

QSFP (quad, or 4-channel, small form-factor pluggable) is a compact hot-pluggable transceiver that is also used for data communication applications.

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

What is a Media Converter?

A
  • A media converter is used to connect network adapters that are using different media types. For example, a media converter could be used to connect a server with a fiber optic Ethernet NIC to a copper Ethernet cable.
  • Media converters only convert from one media type to another within the same architecture (such as Ethernet). A media converter cannot translate between two different architectures. This must be done using a bridge or a router. Converting from one architecture to another would require modifying the frame contents to modify the Data Link layer address.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What level does a media converter work at in the OSI model?

A

Layer 1, the physical layer. Media converters do not read or modify the MAC address in any way.

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

What is a MAC address?

A
  • A MAC address is a unique identifier burned into the ROM of every Ethernet NIC.
  • The MAC address is a 12-digit (48-bit) hexadecimal number (each number ranges from 0–9 or A–F).
    The address is often written as 00-B0-D0-06-BC-AC or 00B0.D006.BCAC (dashes, periods, and colons can be used to divide the MAC address parts).
  • The MAC address is globally unique by design. The first half of the MAC address, the first six digits, is assigned to each manufacturer. The manufacturer determines the rest of the address, assigning a unique value that identifies the host address. A manufacturer that uses all the addresses in the original assignment can apply for a new MAC address assignment.
  • Devices use the MAC address to send frames to other devices on the same subnet.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is an ARP and what does it do?

A

Stands for Address Resolution Protocol.
- Hosts use ARP to discover the MAC address of a device from its IP address. Before two devices can communicate, they must know the MAC address of the receiving device. If the MAC address isn’t known, ARP does the following to find it:
1. The sending device sends out a broadcast frame.
- The destination MAC address is all Fs
(FFFF:FFFF:FFFF).
- The sending MAC address is its own MAC address.
- The destination IP address is the known IP address
of the destination host.
- The sending IP address is its own IP address.
2. All hosts on the subnet process the broadcast frame, looking at the destination IP address.
3. If the destination IP address matches its own address, the host responds with a frame that includes its own MAC address as the sending MAC address.
4. The original sender reads the MAC address from the frame and associates the IP address with the MAC address, saving it in its cache.

Once the sender knows the MAC address of the receiver, it sends data in frames addressed to the destination device. These frames include a cyclic redundancy check (CRC), which is used to detect frames that have been corrupted during transmission.

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

What is a RARP?

A

Reversed ARP.

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

What is a Hub?

A

A hub is the central connecting point of a physical star, logical bus topology. Hubs manage communication among hosts using the following method:

  • A host sends a frame to another host through the hub.
  • The hub duplicates the frame and sends it to every host connected to the hub.
  • The host to which the frame is addressed accepts the frame. Every other host ignores the frame.
17
Q

What layer of the OSI model does a Hub operate on?

A

Layer 1. It simply repeats the incoming frames without examining them.

18
Q

What is a Bridge?

A

A bridge is a device that connects two (or more) media segments on the same subnet, and it filters traffic between both segments based on the MAC address in the frame. A bridge builds a database based on MAC addresses to use for making forwarding decisions.

  • The process begins by examining the source MAC address of an incoming frame. If the source address is not in the forwarding database, an entry for the address is made in the database, associating the MAC address with the media segment.
  • The destination address is then examined:
    • If the destination address is not in the database, the frame is sent out on all segments except for the one on which it was received.
    • If the destination address is in the database, the frame is forwarded to the appropriate segment if the segment is different from the one on which it was received.
    • Broadcast frames are forwarded to all segments except the one on which they were received.
19
Q

True or False:

All segments connected to a bridge are on separate subnets.

A

False. They are on the same subnet and share a common subnet address.

20
Q

Which layer of the OSI model do Bridges operate on?

A

The are Layer 2 devices; They read the MAC address contained in a frame to make a forwarding decisions.
- Frame forwarding happens independently of the upper-layer protocols (such as TCP/IP).

21
Q

What is a Switch?

A

A switch is a multi-port bridge that performs filtering based on MAC addresses and provides additional features not found in a bridge.

  • While most bridges can process only a single frame at a time, switches can process multiple frames simultaneously.
  • Switches offer guaranteed bandwidth to each switch port.
  • Switches can make additional forwarding decisions based on the MAC address. For example, a switch can be configured to accept frames from specific MAC addresses.
  • Unmanaged switches are autonomous in their function, requiring no port management or configuration. Managed switches allow administrators to change the port configurations, including the following:
    • Port speed
    • Duplexing
    • Filters based on network adapter MAC addresses
    • VLAN assignment
22
Q

What layer of the OSI model do Switches operate on?

A

They are Layer 2 devices, just like bridges.

23
Q

What are WAPs?

A

Wireless Access Points.
A wireless access point (AP) is a hub for a wireless network.
- As with a hub, any message sent to any wireless host connected to the AP can be received by all other wireless hosts.
- An AP is a Layer 2 device; it can read the Data Link layer address in a frame.
- An AP is often configured as a bridge, connecting a wireless segment to a wired segment. Both wireless and wired hosts are on the same subnet.
- Some APs are combination devices that include a wired switch and even a router.

24
Q

At which layer does a router operate on?

A

Layer 3, the Network.

25
Q

What is a router?

A

A router is a device that connects two or more network segments or subnets.

  • subnet has a unique logical network address.
  • Routers can be used to connect subnets within a single LAN, or they can be used as gateways to connect multiple LANs together.
  • Routers can be used to connect networks with different architectures (for example, connecting an Ethernet network to a token ring network).
26
Q

What is a Firewall?

A

A firewall is a router with additional security features. Firewalls can be programmed with security rules to restrict the flow of traffic between networks.
Firewall rules control the type of traffic allowed into a network and the type of traffic allowed out of a network.
A firewall can be either hardware devices or software installed onto operating systems.

27
Q

How does a router work?

A

Routers maintain information about other networks in a database called a routing table. The routing table typically contains the address of all known networks and the next router in the path used to reach the destination network. The routing table is used in the process of forwarding packets.

28
Q

What is a layer 3 switch?

A

A Layer 3 switch is capable of reading Layer 3 (network) addresses and routing packets between subnets. A Layer 3 switch often provides better performance than a router, but it does not support as many features as a router.

29
Q

What layer does a firewall work on?

A

Layer 3, the Network layer.

30
Q

What is the process of sending a message from one host to another on a different network?

A
  1. The sending host prepares a packet to be sent. The host uses its own IP address as the source Network layer address and the IP address of the final receiving device as the destination Network layer address.
  2. The sending host creates a frame by adding its own MAC address as the source Physical layer address. For the destination Physical layer address, the host uses the MAC address of the default gateway router.
  3. The sending host transmits the frame.
  4. The next hop router reads the destination MAC address in the frame. Because the frame is addressed to that router, it processes the frame.
  5. The router strips off the frame header and examines the packet destination address. It uses the routing table to identify the next hop router in the path.
  6. The router repackages the packet into a new frame. It uses its own MAC address as the source Physical layer address and the MAC address of the next hop router as the destination Physical layer address.
  7. The router transmits the frame.
  8. The next hop router repeats steps 4 - 7 as necessary until the frame arrives at the last router in the path.
  9. The last router in the path receives the frame and checks the destination IP address contained in the packet.
  10. Because the destination device is on a directly connected network, the router creates a frame using its own MAC address as the source Physical layer address and the MAC address of the destination device as the destination Physical layer address.
  11. The router transmits the frame.
  12. The destination device receives the frame. Inside the packet, it finds that the destination Network layer address matches its own IP address, and the source IP address is that of the original sending device.
31
Q

Which layer are IP addresses?

A

Layer 3, The network address.

32
Q

Which Layer are MAC addresses?

A

Layer 2, Data link layer.

33
Q

Where are the IP address contained?

A

The IP header.

34
Q

Where are the MAC addresses contained?

A

Ethernet frame header.

35
Q

True or False:

Network addresses remain constant as the packet is delivered from hop to hop.

A

True.