Homework Study Guide Flashcards
What is the main role of the level 3 network layer? How does this relate to the level 2 network layer?
The main role of the level 3 network layer is to provide routing; that is, an end-to-end route for an application over the network? The level 2 network layer in turn takes care of setting up point-to-point connections to make the larger end-to-end route possible.
Define network routing?
Network routing is the act of finding a network route/path between two ends of an application.
What is a frame?
A frame is a structure for containing data, usually formatted based on standards. It contains not only the data being sent by the sender, known as the “payload”, but it also contains the sender and receiver’s address, and other protocol information, like error checking.
Explain the concept of minimum frame size. Why is it important? How does it relate to network segment length?
Minimum frame size is a concept that was needed to make sure collision detection was a valid option. For collision detection to work, the sender must remain available to receive the collision signal. The amount of time the sender needs to be listening is the amount of time it would take for a packet to make it to the end of the segment, and then for a collision to “echo” back, that is, twice the length of time it’d take for the signal to propagate to the end of the line and back. The sending node, while it is sending, is listening for collisions. The minimum frame size ensures that it’s listening for long enough that it won’t finish transmitting before a collision could reach it from the very end.
What is FCS? How does it work?
FCS, or Frame Check Sequence, is a four-byte field that is used to perform error checking. When a frame is sent, its source node performs what’s called a cyclic redundancy check (CRC), which takes all the data in the frame before the FCS, and applies an algorithm which generates a unique, 4-byte field. The receiving node then can “unscramble” the FCS by applying the same algorithm, and confirm that the data is unchanged.
What is the preamble? What is it used for, and how long is it?
The preamble is a seven-byte segment that precedes an ethernet frame to inform the sender that a data flow is incoming. It is followed by a one-byte start-of-frame delimiter (SFD), which identifies where the data fields actually begin. In total, it makes for 8 bytes that aren’t generally counted in a frame’s size.
What is a header? What does it do, and how long is it?
The header is a 14-byte field at the beginning of each ethernet frame, containing information like the destination and source address (MAC address, 6 bytes each), and an extra field that can be used for multiple things, depending on the protocol.
What makes up the “frame” around the data in the ethernet protocol, and how long is it?
The frame around the data in the ethernet protocol is 18 bytes in total, with 12 bytes making up the sender and receiver address, 2 bytes taking up with “utility” space, and four bytes needed for the FCS.
What is the minimum and maximum amount of data able to be contained within an ethernet frame? What happens if the minimum is not hit? What is the total size (min/max) of an ethernet frame.
The minimum amount of data that can be contained in an ethernet frame is 46 bytes, and the maximum is 1,500. If the minimum isn’t met, “padding” is added to the data field. The total size of an ethernet frame is 64/1518 bytes.
Why do larger frame sizes usually result in faster transmission speeds?
Larger frame sizes result in higher transmission speeds due to the fact that the smaller frame sizes mean the need for more frames to be sent, and each frame has to take up additional space with its packet structure (header, etc), and CRC must be run on additional packets, slowing things down further.
Why is the network span (maximum distance) of a 100BaseT network (205 meters) approximately one tenth (1/10) of the network span of a 10BaseT network (2500 meters)?
The network span of a 100BaseT network is approximately one tenth of the network span of a 10BaseT network because both networks have minimum frame sizes, and the network spans are tied directly to the minimum frame transmission time (that is, the time it takes to transmit that specific minimum frame size) in order to be able to detect collisions.
What is the organization that specifies the standards for Ethernet?
The IEEE is the organization that specifies the standards for Ethernet.
Which of the Ethernet cable standards has the longest segment length (without using any extension repeaters)? Why?
Of the Ethernet cable standards, 10Base5 has the longest segment length.
What is wireless ethernet?
Wireless ethernet is a data link layer LAN networking technology, put in place by the IEEE 802.11.
What is Token Ring?
Token Ring is a layer 2 LAN networking protocol, which uses a three-byte “token” to signify which node is allowed to transmit. It uses a star topology, but is artificially forced into acting as a ring (thus, token-ring). It was standardized in IEEE 802.5.
What is FDDI?
FDDI, or Fiber Distributed Data Interface, is a LAN data transmission standard.
What is frame relay?
Frame relay is a WAN-based physical and data-link layer technology that uses packet switching.
What information is used by an Ethernet switch to build its MAC forwarding table?
A Ethernet switch’s MAC forwarding table is built by reading an incoming packet’s source MAC address. This allows it to determine what MAC addresses are lying beyond each of its ports.
What IEEE standard is FDDI similar to?
FDDI is the most similar to IEEE 802.5 (Token Ring), as they both use a ring topology with token passing.
What are the sublayers of the data link layer (L2)?
The sublayers of the data link layer are the Media Access Control layer, and the Logical Link Control Layer
Which ethernet technology doesn’t support CSMA/CD?
The only Ethernet technology that doesn’t support CSMA/CD is Ethernet in 10Gbps.
What is the purpose of the jamming signal in CSMA/CD? What does the jamming signal look like? Why is it the length that it is?
The jamming signal is a 32-bit signal that is sent by a node when it detects a collision. This signal indicates to anyone receiving it that the previous transmission was corrupted. The jam signal is 32 bits because it is designed to be put in the CRC field, which is very unlikely to be the correct CRC value, and will be the last thing received.
What is a bridge?
A bridge is a layer 2 device that connects two network segments. An ethernet switch is an example of a multi-port bridge.
What is a hub?
A hub is a layer one device that acts as a repeater, rebroadcasting frames it receives.
What are the minimum and maximum frame sizes of an ethernet frame?
The minimum frame size of an ethernet frame is 64 bytes, and the maximum size is 1518 bytes.