MikroTik Certified Switching Engineer (MTCSWE)
1 Introduction to Networking
1-1 Basic Networking Concepts
1-2 OSI Model
1-3 TCPIP Model
1-4 Network Devices
2 MikroTik RouterOS Basics
2-1 Introduction to RouterOS
2-2 RouterOS Interface Types
2-3 Basic Configuration
2-4 User Management
2-5 System Logging
3 Switching Fundamentals
3-1 Introduction to Switching
3-2 MAC Addresses
3-3 Ethernet Frame Structure
3-4 VLAN Basics
3-5 Trunking and Inter-VLAN Routing
4 MikroTik SwitchOS Basics
4-1 Introduction to SwitchOS
4-2 SwitchOS Interface Types
4-3 Basic Configuration
4-4 User Management
4-5 System Logging
5 VLAN Configuration
5-1 VLAN Creation and Configuration
5-2 VLAN Trunking Protocol (VTP)
5-3 Inter-VLAN Routing
5-4 VLAN Security
6 Spanning Tree Protocol (STP)
6-1 Introduction to STP
6-2 STP Operation
6-3 Rapid Spanning Tree Protocol (RSTP)
6-4 Multiple Spanning Tree Protocol (MSTP)
6-5 STP Configuration
7 Link Aggregation
7-1 Introduction to Link Aggregation
7-2 Link Aggregation Control Protocol (LACP)
7-3 Static Link Aggregation
7-4 Link Aggregation Configuration
8 Quality of Service (QoS)
8-1 Introduction to QoS
8-2 QoS Models
8-3 Traffic Shaping and Policing
8-4 QoS Configuration
9 Security Features
9-1 Introduction to Network Security
9-2 Port Security
9-3 Access Control Lists (ACLs)
9-4 DHCP Snooping
9-5 Dynamic ARP Inspection (DAI)
10 Advanced Switching Topics
10-1 Layer 3 Switching
10-2 Multicast Routing
10-3 Link Layer Discovery Protocol (LLDP)
10-4 Power over Ethernet (PoE)
11 Troubleshooting and Maintenance
11-1 Common Switching Issues
11-2 Troubleshooting Tools
11-3 Switch Maintenance
11-4 Backup and Restore
12 MikroTik Certification Exam Preparation
12-1 Exam Overview
12-2 Study Tips
12-3 Practice Questions
12-4 Exam Registration and Scheduling
Ethernet Frame Structure Explained

Ethernet Frame Structure Explained

1. Preamble and Start Frame Delimiter (SFD)

The Preamble is a sequence of 7 bytes (56 bits) of alternating 1s and 0s. It serves as a signal to synchronize the timing of the receiving device. The Start Frame Delimiter (SFD) is a single byte (8 bits) that immediately follows the Preamble. The SFD signals the start of the actual Ethernet frame.

Example: The Preamble might look like "10101010" repeated 7 times, and the SFD would be "10101011". Together, they prepare the receiving device to interpret the incoming data correctly.

2. Destination and Source MAC Addresses

The Destination MAC Address is a 6-byte (48-bit) field that specifies the physical address of the intended recipient of the frame. The Source MAC Address is also a 6-byte (48-bit) field that identifies the sender of the frame. These addresses ensure that the frame reaches the correct device on the network.

Example: If a frame is sent from a device with MAC address "00:1A:2B:3C:4D:5E" to a device with MAC address "00:23:45:67:89:AB", the frame will include "00:23:45:67:89:AB" as the Destination MAC and "00:1A:2B:3C:4D:5E" as the Source MAC.

3. EtherType/Length Field

The EtherType/Length field is a 2-byte (16-bit) field that indicates the type of protocol encapsulated in the frame's payload or the length of the payload. For example, an EtherType of 0x0800 indicates that the payload contains an IPv4 packet, while an EtherType of 0x86DD indicates an IPv6 packet.

Example: If the EtherType field is "0x0800", the receiving device knows to interpret the payload as an IPv4 packet. If it is "0x86DD", the payload is interpreted as an IPv6 packet.

4. Payload (Data)

The Payload, also known as the Data field, is the actual information being transmitted. It can range from 46 to 1500 bytes. The payload contains the data from higher-layer protocols, such as IP packets, which are then further processed by the receiving device.

Example: If you are sending an email, the payload might contain the text of the email, which is encapsulated in an IP packet. This IP packet is then placed in the Ethernet frame's payload field.

5. Frame Check Sequence (FCS)

The Frame Check Sequence (FCS) is a 4-byte (32-bit) field that contains a cyclic redundancy check (CRC) value. The FCS is used to detect errors in the transmitted frame. The receiving device calculates its own CRC and compares it with the FCS to ensure data integrity.

Example: If the FCS calculated by the receiving device does not match the FCS in the frame, the frame is discarded, and the sender may retransmit the data.