What is the difference between a layer-2 switch, a layer-3 switch, and a layer-4 switch?

Source: Internet
Author: User

(1) Layer 2 switching
The layer-2 switching technology is mature. The layer-2 switch is a data link layer device that can identify the MAC address information in the data packet and forward it according to the MAC address, the MAC addresses and corresponding ports are recorded in an internal address table. The specific workflow is as follows:

(1) When the switch receives a packet from a port, it first reads the source MAC address from the packet header, so that it knows the port on which the machine with the source MAC address is connected;
(2) read the target MAC address in the header and find the corresponding port in the address table;
(3) If the table contains a port corresponding to the destination MAC address, copy the data packet directly to the port;
(4) If no corresponding port is found in the table, the packet is broadcast to all ports. When the target machine responds to the source machine, the switch can learn which port the target MAC address corresponds, the next time you transmit data, you no longer need to broadcast all ports. In this process, the MAC address information of the entire network can be learned. The second-layer switch creates and maintains its own address table.

The working principle of a L2 Switch can be inferred from the following three points:
(1) because the switch exchanges data on most ports at the same time, it requires a wide switching bus bandwidth. If the L2 Switch has N ports, the bandwidth of each port is M, if the bandwidth of the vswitch bus exceeds N × M, the vswitch can achieve line rate switching;
(2) the MAC address of the machine connected by the Learning port, write the address table, and the size of the address table (two common expressions: one is beffer ram, and the other is the MAC Table value ), the address table size affects the access capacity of the vswitch;
(3) Another layer-2 switch generally contains an ASIC (Application specific Integrated Circuit) chip used to process packet forwarding, so the forwarding speed can be very fast. Because different manufacturers use different ASIC, the product performance is directly affected.
The above three points are also the main technical parameters used to judge the performance of Layer 2 and Layer 3 switches. Please pay attention to the comparison when considering device selection.

(2) routing technology
The router operates on the layer 3 of the OSI model-the network layer. Its working mode is similar to that of the Layer 2 switch, but the router works on the layer 3, this difference determines that routes and switches use different control information when passing packets, and the implementation methods are different. The working principle is that there is also a table inside the vro, which indicates that if you want to go to a certain place, the next step should be to go there, if you can find the data packet from the routing table, add the link layer information and forward it. If you do not know where the next step is, discard the package and return a message to the source address.

In essence, the routing technology has two features: determining the optimal route and forwarding data packets. Various information is written into the routing table. The routing algorithm calculates the Optimal Path to the destination address, and then sends data packets through a simple and direct forwarding mechanism. The next vro that receives data continues to forward according to the same working method, and so on until the data packet reaches the destination vro. There are two different ways to maintain the route table. One is to update the route information, publish some or all of the route information, and the router learns route information from each other to master the topology of the whole network, this type of routing protocol is called the distance vector routing protocol. The other is that the router broadcasts its own link status information and learns from each other to learn route information across the network, then, the optimal forwarding path is calculated. This type of routing protocol is called the Link State routing protocol.

Because a vro requires a lot of path computing, the performance of a general processor is determined directly. Of course, this judgment is still for low-end routers, because high-end routers often adopt distributed processing system design.

(3) layer-3 Switching Technology
In recent years, three-layer technology has been widely promoted, and many people have shouted three-layer technology. Some people say this is a very new technology. Some people also say that it is a three-layer exchange technology, there is no new things in the stack of routers and L2 switches. Is that true? Next, let's take a look at the working process of a layer-3 Switch through a simple network.

Easy networking
Device A with an IP address ---------------------- layer-3 Switch ---------------------- Device B with an IP address. For example, if A wants to send data to Device B and the destination IP address is known, device A obtains the network address using the subnet mask, determine whether the destination IP address is in the same CIDR block as the target IP address.

If A is in the same network segment but does not know the MAC address required for data forwarding, A sends an ARP request, B returns its MAC address, and A uses this MAC encapsulation packet to send it to the switch concurrently, the second-layer switch module is used to find the MAC address table and forward data packets to the corresponding port.

If the destination IP address is not displayed in the same CIDR block, A needs to communicate with B, and there is no corresponding MAC address entry in the stream cache entry, send the first normal data packet to a default gateway. This default gateway is usually set in the operating system and corresponds to the layer-3 routing module. Therefore, we can see that for data not in the same subnet, the MAC address of the default gateway is first placed in the MAC table. Then, the layer-3 module receives the packet and queries the route table to determine the route to B. A new frame header is constructed, the MAC address of the default gateway is the source MAC address, and the MAC address of host B is the target MAC address. Through A certain identification trigger mechanism, it establishes the MAC address and forwarding port correspondence between host A and host B, and records the data from host A to host B in the stream cache entry table, it is directly submitted to the layer-2 Switching Module. This is generally referred to as one-time route forwarding.

The above is a brief summary of the three-layer switch process. We can see the characteristics of the three-layer switch:
1) hardware is combined to achieve high-speed data forwarding. This is not a simple superposition of Layer 2 switches and routers. The Layer 3 routing module is directly superimposed on the Layer 2 switching high-speed backplane bus, breaking through the interface speed limit of traditional routers, the speed can reach dozens of Gbit/s. Calculating the backboard bandwidth is two important parameters for the performance of a layer-3 switch.
2) The simple routing software simplifies the routing process. Most of the data forwarding, except for the necessary route selection, is handled by the routing software, and is a layer-2 module for high-speed forwarding. Most of the routing software is an efficient optimization software that has been processed, it is not a simple copy of the software in the router.

Conclusion

L2 switches are used in small local networks. There is no need to talk about this. In a small LAN, broadcast packets have little impact, the two-layer switch's fast switching function, multiple access ports, and low price provide a perfect solution for small network users.
The advantage of a vro lies in its rich interface types, powerful three-tier functions, and powerful routing capabilities. It is suitable for routing between large networks. Its advantage lies in the selection of the best route and load balancing, router functions such as link backup and exchange of route information with other networks.

The most important function of a layer-3 switch is to accelerate the fast data forwarding within a large local area network. If a large network is divided into small local networks by department, region, and other factors, this will lead to a large number of Internet mutual access. Simply using a layer-2 switch cannot achieve Internet mutual access. For example, simply using a router, due to the limited number of interfaces and slow route forwarding speed, the network speed and network scale will be limited. Using a layer-3 switch with the routing function for fast forwarding will become the first choice.

In general, in a network with a large volume of intranet data streams that require fast response forwarding, for example, all three-layer switches do this
Three-layer switches will be overloaded, and the response speed will be affected. The routing between networks will be handed over to the routers to make full use of the advantages of different devices. This is a good networking strategy, of course, the premise is that the customer's pockets are very strong, or they will leave for the second place, so that layer-3 switches are also connected to the Internet.

(4) layer-4 Switching
A simple definition of layer-4 switching is that it is a function that determines that the transmission is not only based on the MAC address (layer-2 network
Or source/Target IP address (layer-3 route), and the port number is based on TCP/UDP (layer-4. The layer-4 switching function is like a virtual IP address pointing to a physical server. Its transmission services are subject to a variety of protocols, including HTTP, FTP, NFS, Telnet, or other protocols. These services require complex load balancing algorithms based on physical servers. In the IP address world, the service type is determined by the TCP or UDP port address of the terminal. The application interval in the layer-4 switch is jointly determined by the source and terminal IP addresses, TCP and UDP ports. In the layer-4 switch, a virtual IP address (VIP) is set up for each server group for search. Each group of servers supports an application. Each application server address stored in the Domain Name Server (DNS) is a VIP address, rather than a real server address. When a user applies for an application, a VIP Connection Request (such as a tcp syn Packet) with the target server group is sent to the server switch. The server switch selects the best server in the group, replaces the VIP in the terminal address with the actual Server IP address, and sends the connection request to the server. In this way, all packets in the same range are mapped by the server switch and transmitted between the user and the same server. The principle of layer-4 switching the fourth layer of the OSI model is the transport layer. The transport layer is responsible for peer communication, that is, coordinated communication between the network source and the target system. In the IP protocol stack, This is the protocol layer of TCP (a Transport Protocol) and UDP (user data packet protocol.

In layer-4, the TCP and UDP headers contain portnumbers, which uniquely differentiate which application protocols (such as HTTP and FTP) are contained in each packet ). The endpoint system uses this information to distinguish packet data, especially the port number, so that a computer system at the receiving end can determine the type of the IP packet it receives and hand it over to appropriate high-level software. A combination of port numbers and device IP addresses is usually called "socket )". The port numbers between 1 and 255 are retained. They are called "well-known" ports, that is, these ports are the same in all TCP/I P protocol stack implementations of the host. In addition to the "well-known" port, standard UNIX services are allocated between port 256 and port 1024. custom applications generally allocate port numbers over port 1024. You can find the latest list of allocated port Numbers on RFc1700 "Assigned Numbers. The additional information provided by TCP/UDP Slogans can be used by network switches, which is the basis for layer-3 switching. Example of "familiar" Port Number:
Application Protocol port number
FTP 20 (data)
21 (Control)
TELNET 23
SMTP 25
HTTP 80
NNTP 119
NNMP 16
162 (SNMP traps)
The additional information provided by the TCP/UDP port number can be used by the network switch, which is the basis for layer-4 switching.
A vswitch with the layer-4 function can act as the "virtual IP" (VIP) frontend connected to the server.
Each server and server group supporting a single or common application is configured with a VIP address. This VIP address is sent and registered on the domain name system. When a service request is sent, the layer-4 switch identifies the start of a session by determining the start of TCP. Then it uses complex algorithms to determine the best server for processing this request. Once this decision is made, the switch associates the session with a specific IP address and replaces the VIP address on the server with the real IP address of the server.

Each layer-4 switch stores a source IP address that matches the selected server and a connection table associated with the source TCP port. The layer-4 switch then forwards the connection request to the server. All subsequent packets are reinjected and forwarded between the client and the server until the switch discovers a session. When layer-4 switching is used, the access can be connected to a real server to meet user-defined rules, for example, the number of connections on each server is equal or the transmission stream is allocated based on the capacity of different servers.

How to choose a layer-4 Switch

A, speed
To be effective in Enterprise Networks, layer-4 switching must provide comparable performance with layer-3 line rate routers. That is to say, layer-4 switching must operate on all ports at full-media speed, even on multiple Gigabit Ethernet connections. The Gigabit Ethernet speed is equal to the maximum speed of 1488000 packets per second (assuming the worst case, that is, all packets are the minimum size defined by the network and are 64 bytes long ).

B. server capacity balancing algorithm
Based on the desired capacity balancing interval, there are many algorithms for layer-4 switches to allocate applications to servers, there are simple detection loop recent connections, detection loop latency, or detection server closed loop feedback. Among all predictions, closed-loop feedback provides the most accurate detection that reflects the current business volume of the server.

C. Table capacity
It should be noted that the switch for layer-4 Switching requires the ability to differentiate and store a large number of sending table items. This is especially true for vswitches at the core of a CEN instance. The size of many second/third-layer switches tends to be proportional to the number of network devices. For a layer-4 switch, this quantity must be multiplied by the number of different application protocols and Sessions used in the network. Therefore, the size of the table to be sent increases rapidly as the number of device and application types increases. Layer-4 switch designers need to consider this growth when designing their products. Large table capacity is critical to manufacturing high-performance switches that support line rate transmission of layer-4 traffic.

D. Redundancy
The layer-4 switch supports the redundant topology. When there is a dual-link network card with fault tolerance connection, it is possible to establish a completely redundant system from a server to the network card, the link and the server switch.

Article entry: csh responsible editor: csh

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.