Type of service


The type of service field is the second byte of the IPv4 header. It has had various purposes over the years, and has been defined in different ways by five RFCs.
Prior to the redefinition, the ToS field could specify a datagram's priority and request a route for low-delay, high-throughput, or highly-reliable service.
Based on these ToS values, a packet would be placed in a prioritized outgoing queue, or take a route with appropriate latency, throughput, or reliability. In practice, the ToS field never saw widespread use outside of US Department of Defense networks. However, a great deal of experimental, research, and deployment work has focused on how to make use of these eight bits, resulting in the current DS field definition.
The modern redefinition of the ToS field, also used for the Traffic Class field in IPv6 packets, is an 8-bit differentiated services field which consists of a 6-bit Differentiated Services Code Point field and a 2-bit Explicit Congestion Notification field. While Differentiated Services is somewhat backwards compatible with ToS, ECN is not.

History

The Type of Service field in the IP header was originally defined in RFC 791, and has been interpreted for IP Precedence and ToS ever since. The definition was largely derived from a US DoD Specification JANAP-128, which defines message precedence. It defined a mechanism for assigning a precedence to each IP packet, as well as a mechanism to request specific treatment such as high throughput, high reliability or low latency, etc. In the RFC 1349 update, the Monetary Cost bit is introduced. Section 2.4 of RFC 1583 introduces a ToS-aware routing method.
In practice, only the IP Precedence part of the field was ever used outside US DoD networks: the higher the value of the IP Precedence field, the higher the priority of the IP packet. Some US DoD networks did use the delay bit for route selection between oceanic cable paths and Satellite Communication paths when both paths existed. IPv6 has never had an IPv4-like "traditional" ToS field, partially because the authors were aware of DiffServ efforts at its drafting.
In RFC 2474 the definition of this entire field was changed. It is now called the "DS" field and the upper 6 bits contain a value called the "DSCP". The upper 3 bits of DS maintains compatibility with IP Precedence. Since RFC 3168, the remaining two bits are used for Explicit Congestion Notification.
RFC 8622 added lower-effort DS for traffic that may be pre-empted by other traffic. It is intended for background traffic of low precedence, such as bulk data transfers with low priority in time.

Allocation

Precedence and ToS

Prior to its deprecation, the Type of Service field was defined as follows from RFC 791:
Precedence was a 3 bit field which treats high priority packets as more important than other packets. If a router is congested and needs to discard some packets, it will discard packets having lowest priority first. Although precedence field was part of IP version 4, it was never used.
RFC 1349 introduced an additional "lowcost" field. The four available ToS bits now becomes:
The naming here follows the convention of Unix operating systems. RFC 1349 and RFC 1060 only show examples of one bit used at a time for application-default values, although RFC 791 mentions that at most two of the three indications it has should be set nominally. One such use is known from mod_iptos.
Because the last three bits went through many definitions prior to RFC 2474, documentation and implementations may be confusing and contradictory.

DSCP and ECN

RFC 2474 reserved the first six bits of the DS field for the Differentiated Services Code Point, and RFC 3168 reserved the last two bits for Explicit Congestion Notification.
DSCP defines a Class Selector naming to each value it defines, mirroring what would have been interpreted as the IP Precedence if one follows the older specification:
DSCP NameDS Field Value IP Precedence
CS000: Best Effort
LE1n/a
CS1, AF11-138,10,12,141: Priority
CS2, AF21-2316,18,20,222: Immediate
CS3, AF31-3324,26,28,303: Flash - mainly used for voice signaling
CS4, AF41-4332,34,36,384: Flash Override
CS5, EF40,465: Critical - mainly used for voice RTP
CS6486: Internetwork Control
CS7567: Network Control

DSCP Nomenclature:
;CS: Class Selector
;AFxy: Assured Forwarding
;EF: Expedited Forwarding
;LE: Lower-Effort
The above table, with individual values written out for values of the entire ToS field :
DSCP DecToS valueIP Prec
000
8321
10401
14561
18722
22882
24963
281123
341364
361444
381524
401605
461845
481926
562247

Note: In the above table, ToS is shown in decimal format. However, many routers express ToS in hex format.

Example: mixed interpretation

Let's start with an IP priority of 1, or 0b001 in Binary. The entire ToS field would then be 001 00000, assuming that the unused 5 bits are zero. The DSCP can be interpreted by resegmenting to 001000 00, where 001000 = 8 is the DSCP value.

Software support

Although not frequently used, IP ToS definitions are widely found in netinet/ip.h of Unix-like or Unix operating systems as IPTOS_FIELDNAME macros. The "lowcost" field is commented out in OpenBSD due to its newer use for indicating ECN support. Remnants of the old RFC 1349 terminology can be found in Transmission 2.93 as well as other tools that support setting this field.
An old Apache module "mod_iptos", once packaged in Ubuntu, notes that a way to use multiple RFC 1349 option bits together emerged after some point.