What is the network layer?

Network-to-network connections are what make the Internet possible. The “network layer” is the part of the Internet communications process where these connections occur, by sending packets of data back and forth between different networks, In the 7-layer OSI model, the network layer is layer 3. The Internet Protocol(IP) is one of the main protocols used at this layer, along with several other protocols for routing, resting and encryption.

Suppose Bob and Alice are connected to the same local area network(LAN), and Bob wants to send Alice a message. Because Bob is on the same network with Alice, he could send it directly to her computer across the network. However, if Alice is instead on a different LAN several miles away, Bob’s message will have to be addressed and sent to Alice’s network before it can reach her computer, which is a network layer process.

What is a network?

A network is a group of two or more connected computing devices. Usually all devices in the network are connected to a central hub– for instance, a router. A network can also include subnetworks, or smaller subdivisions of the network. Sub-networking is how very large networks, such as those provided by ISPs, are able to manage thousands of IP addresses and connected devices.

Think of the internet ad a network of networks: computers are connected to each other within networks, and these networks connect to other networks. This enable these computers to connect with other computers both near and far.

What happens at the network layer?

Anything that has to do with inter-network connections takes place at the network layer. This includes setting up the routes for data packets to take, checking to see if a server in another network is up and running, and addressing and receiving IP packets from other networks. This last process is perhaps the most important, as the vast majority of the internet traffic is sent over IP.

What is a packet?

All data sent over the Internet is broken down into smaller chunks called “packets”. When Bob send Alice a message, for instance, his message is broken down into smaller pieces and the reassembled on Alice’s computer. A packets has two parts: the header, which contains information about the packets itself, and the body, which is the actual data being sent.

At the network layer, networking software attaches a header to each packet when the packet is sent out over the Internet, and on the other end, networking software can use the header to understand how to handle the packet.

A header contains information about the content, source, and destination of each packet(somewhat link stamping an envelope with a destination and return address). For example, an IP header contains the destination IP address of each packet, the total size of the packets, an indication of weather or not the packet has been fragmented(broken up into still smaller pieces)in transit, and a count of how many networks the packets has traveled through.

What is the OSI model?

The Open System Interconnection(OSI) Model is a description of how the Internet works. It breaks down the functions involved in sending data over the Internet into seven layers. Each layer has some function that prepares the data to be sent over wires, cables, and radio waves ad a series of bits.

The server layers of the OSI model are:

  • 7.Application layer: Data generated by and usable by software applications. The main protocol user ad this layer is HTTP.

  • 6.Presentation layer: Data is translated into a form the application can accept. Some authorities consider HTTPS encryption and decryption to take place at this layer.

  • 5.Session layer: Controls connection between computers(this can also be handle at layer 4 by the TCP protocol).

  • 4.Transport layer: Provides the means for transmitting data between two connected parties, as wells as controlling the quality of service. The main protocol used here are TCP and UDP.

  • 3.Network layer: Handles the routing and sending of data between different networks. The most important protocols at this layer are IP and ICMP.

  • 2.Data link layer: Handle communications between devices on the same network. If layer 3 is like the address on a piece of mail, the layer 2 is like indicating the office number or apartment number at the address. Ethernet is the protocol most used here.

  • 1.Physical layer: Packets are converted into electrical, radio, or optical pulses and transmitted at bits(the smallest possible units of information) over wires, radio waves, or cables.

It is important to keep in mind that the OSI model is an abstract conceptualization of the process that make the Internet work, and interpreting and applying the models to the real-world Internet is sometime a subjective exercise.

The OSI model is useful for helping people talk about networking equipment and protocols, determining which protocols are used by which software and hardware, and showing roughly how the Internet works. But it is not a rigid step-by-step definition of how Internet connections always function.

OSI model vs. TCP/IP model

The TCP/IP model is alternative model of how the Internet works. It divides the processes involved in to four layers instead of seven. Some would argue the the TCP/IP model better reflects the way the Internet functions today, but the OSI model is still widely referenced for understanding the Internet, and both models have their strengths and weaknesses.

  • 4.Application layer: This corresponds, approximately, to layer 7 in the OSI model.
  • 3.Transport layer: Corresponds to layer 4 in the OSI model.
  • 2.Internet layer: Corresponds to layer3 in the OSI model.
  • 1.Network access layer: Combines the process of layer 1 and 2 in the OSI model.

But where are the OSI layers 5 and 6 in the TCP/IP model? Some source hold that the process at OSI layer 5 and 6 either no longer necessary in the modern Internet, or actually belong to layer 7 and 4(represented by layer 4 and 3 in the TCP/IP model).

For instance, since the TCP protocol opens and maintains sessions at OSI layer 4, one could consider OSI layer 5(the “session” layer) to be unnecessary – and it is not represented in the TCP/IP model. Additionally, HTTPS encryption and decryption can be considered an application layer (OSI layer7 or TCP/IP layer 4) process instead of a presentation layer(OSI layer 6) process.

What the difference between the network layer and the Internet layer

In the TCP/IP model, there is no “network” layer. The OSI model network layer roughly corresponds to the TCP/IP model Internet layer. In the OSI model network layer is layer 3; in the TCP/IP model the Internet layer is layer 2.

In other words, the network layer and the Internet layer are basically the same thing, but the come from different models of how the Internet works.

What the protocols are used at the network layer?

A protocol is an agreed-upon way of formatting data so that two or more devices are able to communicate with and understand each other. A number of different protocols make connections, testing, routing and encryption possible at the network layer, including:

  • IP
  • IPsec
  • ICMP
  • IGMP
  • GRE

Because they are exposed to the rest of the Internet, network layer infrastructure is vulnerable to external attacks, especially distributed denial-of-service(DDoS) attacks. Router, switches, and other network interfaces can all be overwhelmed and compromised by malicious network traffic, and almost any of the above network protocols can be used in an attack.

xxx protect networking infrastructure using the same technology that keeps millions of web properties up and running in the face of vulnerability exploits and DDoS attacks. It extends the protection to on-premise and data center networks, keep organizations secure from layer attacks.

What is MSS(maximum segment size)?

MSS, or maximum segment size, is the largest data payload that a device will accept form a network connection.

MSS(maximum segment size) limits the size of packets, or small chunks of data, the travel sccross a network, such as the internel. All data that travels over a network is broken up into packets. Packets have serveral headers attached to them that contain information about their contents and destination. MSS measures the non-header portion of a packet, which is called the payload.

Network Deivice

Hub

Switch/ 2 layer switch/3 layer switch/ VLAN

Bridge

Router/NAT/SNAT/DNAT

网络相关命令

ipstable

ifconfig/网卡up and down

route

一个机器如果有连个网卡

一个交换机下两个网段,为什么不可以互相通信

一个交换机下连个网段是否可以独立通信

路由器原理,使用其中的一个linux作为网关

Reference

https://www.cloudflare.com/learning/network-layer/what-is-mss/

https://www.cloudflare.com/learning/network-layer/what-is-the-network-layer/