Ethernet Switching Flashcards
Define Ethernet
Ethernet operates in the data link layer and the physical layer. It is a family of networking technologies defined in the IEEE 802.2 and 802.3 standards. It supports data bandwidths of the following:
10 Mbps 100 Mbps 1 Gbps 10 Gbps 40 Gbps 100 Gbps Ethernet standards define both the Layer 2 protocols and the Layer 1 technologies.
What is the MAC sub-layer responsible for?
Data encapsulation and accessing the media.
Talk about Data encapsulation
IEEE 802.3 data encapsulation includes the following:
1) Ethernet frame
2) Ethernet Addressing
3) Ethernet Error detection
Talk about Ethernet frame
the internal structure of the Ethernet frame
Talk about Ethernet adressing
The Ethernet frame includes both a source and destination MAC address to deliver the Ethernet frame from Ethernet NIC to Ethernet NIC on the same LAN.
Talk about Ethernet error detection
The Ethernet frame includes a frame check sequence (FCS) trailer used for error detection.
Talk about accessing the media
IEEE 802.3 MAC sublayer includes the specifications for different Ethernet communications standards over various types of media including copper and fiber.
Talk about the size of the Ethernet frame fields
The minimum Ethernet frame size is 64 bytes and the expected maximum is 1518 bytes.
Any frame less than 64 bytes in length is considered a “collision fragment” or “runt frame”.
Frames with more than 1500 bytes of data are considered “jumbo” or “baby giant frames”.
If the size of a transmitted frame is less than the minimum, or greater than the maximum, the receiving device drops the frame. Dropped frames are likely to be the result of collisions or other unwanted signals. They are considered invalid. Jumbo frames are usually supported by most Fast Ethernet and Gigabit Ethernet switches and NICs.
What are the Ethernet frame fields?
1) Preamble and Start Frame Delimiter Fields
2) Destination MAC Address Field
3) Source MAC Address Field
4) Type / Length
5) Data Field
6) Frame Check Sequence Field
Talk about Preamble and Start Frame Delimiter Fields
The Preamble (7 bytes) and Start Frame Delimiter (SFD), also called the Start of Frame (1 byte), fields are used for synchronization between the sending and receiving devices. These first eight bytes of the frame are used to get the attention of the receiving nodes. Essentially, the first few bytes tell the receivers to get ready to receive a new frame.
Talk about Destination MAC Address Field
This 6-byte field is the identifier for the intended recipient. This address is used by Layer 2 to assist devices in determining if a frame is addressed to them. The address in the frame is compared to the MAC address in the device. If there is a match, the device accepts the frame. Can be a unicast, multicast, or broadcast address.
Talk about Source MAC Address Field
This 6-byte field identifies the originating NIC or interface of the frame.
Talk about Type/Length
This 2-byte field identifies the upper layer protocol encapsulated in the Ethernet frame.
Talk about Data Field
This field (46 - 1500 bytes) contains the encapsulated data from a higher layer, which is an IPv4 packet. All frames must be at least 64 bytes long. If a small packet is encapsulated, additional bits called a pad are used to increase the size of the frame to this minimum size.
Talk about Frame Check Sequence Field
(4 bytes) is used to detect errors in a frame. It uses a cyclic redundancy check (CRC). The sending device includes the results of a CRC in the FCS field of the frame. The receiving device receives the frame and generates a CRC to look for errors. If the calculations match, no error occurred. Calculations that do not match are an indication that the data has changed; therefore, the frame is dropped. A change in the data could be the result of a disruption of the electrical signals that represent the bits.