Home > Articles > Networking

An Ethernet Primer

How Ethernet Works

If you ask a bona fide network engineer how Ethernet works, he'd say something like this: "Using MAC addresses to distinguish between machines, Ethernet transmits frames of data across baseband cables using CSMA/CD." This is an accurate description, and after we go over all the concepts in it, it will even make sense. You can go ahead and underline that definition and come back in 10 minutes. You'll be a new person.

Media Access Control (MAC) Address

Every Ethernet network card has, built into its hardware, a unique six-octet (48-bit) hexadecimal number that differentiates it from all other Ethernet cards in the universe. This unique name allows data to be specifically sent to one computer at the exclusion of all others. The MAC address of my desktop computer, for example, is 00-C0-4F-33-Af-7C. You can find out what yours is by running ipconfig /all from a DOS prompt, or ifconfig -a from a UNIX prompt.

Frames

The basic unit of data transmission on an Ethernet network is a frame. The Ethernet frame defines the data layout at the OSI Layer 2 link level. The length of an Ethernet frame is normally no less than 64 octets and no more than 1,518 octets. The exception to the minimum length is the gigabit Ethernet standard 802.3z, which increased the minimum packet size to 512 bytes. The format of an 802.3 Ethernet frame consists of these components:

  • A preamble, which is comprised of 56 bits of alternating 0s and 1s. The preamble provides all the nodes on the network a signal to synchronize with.

  • A start frame delimiter, which marks the start of a frame. The start frame delimiter is 8 bits long with the pattern 10101011.

  • A destination, the MAC address of the network node to which the frame is addressed.

  • A source, the MAC address of the transmitting node.

  • A Length/Type field two octets long. If the value in this field is 1500 (0x05dc hex) or less, it indicates the number of octets to follow in the data field. Network engineers know this as the original Ethernet 2.0 (Ethernet II) frame type. If the value is 1536 (0x0600 hex) or greater, it indicates the network-layer protocol. In most networks today, this value will be 2048 (0x0800 hex), which is the assigned protocol type for IP. The other most commonly found protocol type values are 33079 and 33080 (0x8137, 0x8138 hex), which is for Novell IPX.

  • Data, the reason the frame exists and the information being sent across the network. The minimum length of this field is 46 octets, and the maximum is 1500. If the Data field is less than 46 octets long, then the pseudofield Pad is used.

  • Pad, a "field" that is used to lengthen the data field to a minimum size of 46 octets. The pad is normally filled with a zero-octet pattern.

  • A Frame Check Sequence field four octets long. Ethernet frames use CRC-32, or "cyclic redundancy check 32-bits long" to test for errors. CRC-32 is a more accurate error-detection method than simple checksums.

Two additional alternate Ethernet frames are far less common to see on your network: the IEEE 802.3 Subnetwork Access Protocol (SNAP) and Novell 802.3 Raw Encapsulation frame types. Unless you have legacy network operating systems on your network, such as older NetWare servers (pre-4.x) or Apple Macintosh computers speaking AppleTalk (802.3 SNAP), you most likely will not run across these frame types. Another source for these alternate frames comes from certain network-connected printers with IPX enabled. The networked printer will try to autodetect the frame types in use by broadcasting its existence using all four frame formats.

The normal maximum length of an Ethernet frame does not include the preamble or the start frame delimiter. The frame check sequence is calculated starting with the destination MAC address through the data/pad field. With a maximum data payload of 1,500 octets, a 6-octet source and destination fields, a 2-octet length/type field, and a 4-octet frame check sequence, you total 1518 octets. The 802.3z standard added an "extension" field that basically just appends bits to the end of the frame to bring the total length up to a minimum of 512 octets, if necessary.

In 1998, the IEEE 802.3 working group published the 802.3ac standard that added an optional four octets used for virtual local area network (VLAN) tagging. VLAN tagging is achieved by using the reserved value 0x8100 in the location that would normally be the Length/Type field. The next two octets are composed of the following three fields:

  • User Priority field—This field is 3 bits in length and is used to define the priority of the Ethernet frame. This is utilized to bring quality of service (QoS) classifications to a variable-length packet-based networking medium such as Ethernet.

  • Canonical format indicator—This is 1 bit in length.

  • VLAN Identifier field—This field is 12 bits in length. It is used to identify the VLAN associated with the Ethernet frame.

The Length/Type field will then follow the inserted VLAN tag.

Carrier Sense Multiple Access/Collision Detection (CSMA/CD)

The big thing about Ethernet is CSMA/CD, which stands for carrier sense multiple access/collision detection. This governs how computers talk to one another over an Ethernet network. It means this in plain English:

  • Computers listen before they talk (carrier sense). If another computer is talking, they keep their mouths shut.

  • Any computer on the network can talk as long as no one else is talking (multiple access).

  • If two computers talk at the same time, a collision occurs. The computers recognize that they both tried to talk at the same time (collision detection). They wait a random amount of time and then retransmit.

Several key parameters of CSMA/CD are needed to work correctly.

First, there must be a carrier signal on the medium that other nodes can sense (thus the frame's preamble).

Next, the transmitting node must be capable of completely transmitting the minimum packet size and reliably detecting whether a collision has occurred. This minimum transmission time necessary to transmit the minimum packet size is known as the slot time. For 10Mbps and 100Mbps Ethernet, the slot time is 512 bit times, which not coincidentally happens to be the minimum length of an Ethernet packet (64 octets is 512 bits). For gigabit Ethernet, the slot time is 4096 bit times.

If a collision occurs, several things happen. If a transmitting node detects a collision, it transmits a jam signal that is 32 bit times in length. The node stops transmitting and waits a random amount of slot times before trying to transmit again. This is known as back-off. Each collision that occurs while trying to transmit the same packet will trigger an increase in the back-off delay that the node may wait to try transmitting again.

The back-off delay is a binary exponent range limited by the back-off limit, which is 10. Therefore, for the first collision the node may wait 0 or 1 slot times to retransmit. After the second collision, it will wait 0 to 3 slot times, all the way up to a maximum possible 1,023 slot times. If the frame cannot be transmitted after 16 attempts, the packet is discarded and will need to be handled by higher layers in the OSI stack.

The Inter-Frame Gap (IFG) is the minimum quiet period between frames; it should be 96 bit times in length. This means that the IFG is 9.6 microseconds for 10Mbps Ethernet, 960 nanoseconds for 100Mbps Ethernet, and 96 nanoseconds for gigabit Ethernet.

Any frame received by a node that is less than 64 octets in length is automatically assumed to be a fragment from a collision and is discarded. The astute among you will notice that timing is critical in an Ethernet network and that the slot time effectively defines the maximum physical size of your network segments. If transmitting stations receive the jam sequence of a collision after they have fully transmitted their packet, this is known as a late collision. Late collisions are bad and require a reworking of your Ethernet architecture.

CSMA/CD-Free, or Full-Duplex

In 1997, the IEEE 802.3 working group published the 802.3x standard that defined the specifications for full-duplex Ethernet. In half-duplex Ethernet operation, only one node can transmit at a time—thus the need for CSMA/CD. This is similar to most speakerphones; the person at the far end cannot hear you speak if he is speaking. This is because the microphone is automatically squelched so that the remote person does not receive feedback.

Full-duplex Ethernet can be used only in point-to-point links connecting two nodes. Because it does not use CSMA/CD, it cannot be used in a shared medium. The cabling medium must support two transmission paths, usually unused pairs in UTP suffice.

Full-duplex Ethernet, therefore, is not bound by the limits of CSMA/CD; thus, physical network segment size can be significantly larger. Additionally, because there is no possibility of collisions, full-duplex Ethernet links achieve a greater throughput. Finally, because both nodes can theoretically transmit at the same time, many marketing specialists list the total aggregate speed of the full-duplex link as twice that of half-duplex links.

Popular Ethernet Is Baseband

Ethernet is a baseband network, which means that it has only one channel for data transfer. As with a telephone line, all the computers on the network have to share this one data path. The opposite of baseband is broadband, in which several data streams can travel through a wire at the same time using a technique known as frequency modulation. What the heck is frequency modulation? Well, it's changing the signal in a way that makes it distinctly different from other signals so that the receiving hardware can distinguish multiple signals, the way your cable TV box receives a hundred channels at once over the same wire.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020