Huawei MSTP Multiple Spanning Tree Protocol configuration implementation
In STP, because STP has suboptimal path and other factors, we use MSTP protocol to complete this experiment. MSTP can better solve some problems in the network, and MSTP is also compatible with STP and RSTP.
Next, we see the configuration implementation:
Step 1: first, we add a P address to the PC
I believe you all know the basi ...
Added by Matt Parsons on Mon, 22 Nov 2021 06:31:57 +0200
Super detailed how to configure VRRP backup groups
Configuring VRRP backup groups
Principle overview:
When VRRP is configured as a single Backup group, all business is undertaken by the Master device, while the Backup device is completely idle and not fully utilized. VRRP can realize load sharing by configuring multiple Backup groups, which effectively solves t ...
Added by portabletelly on Sun, 21 Nov 2021 08:37:50 +0200
Kubernetes network plug-ins flannel and calico
Network Plugin flannel
One solution for cross-host communication is Flannel, introduced by CoreOS, which supports three implementations: UDP, VXLAN, host-gw udp mode: use device flannel.0 for unpacking, not native to the kernel, large context switching, very poor performance vxlan mode: use flannel.1 for unpacking, native kernel support, bette ...
Added by kirkh34 on Wed, 17 Nov 2021 19:50:24 +0200
linux Network Programming -- socket server and client TCP programming and multi process programming
1. Basic communication process between client and server in network programming
2. Server and client programming < iterative server >
2.1. Iterative server programming
2.1.1. Command line parameter parsing
The server parameter only has the port number. Add a help parameter < - H > to explain the usage of this commandThe co ...
Added by eduard on Fri, 12 Nov 2021 17:57:09 +0200
HTTP protocol Basics
HTTP protocol
1. What is the HTTP protocol
What is an agreement
Agreement refers to the rules agreed by both parties or multiple parties and everyone should abide by
The so-called HTTP protocol refers to the rules that the data sent needs to comply with when communicating between the client and the server
The data in HTTP protocol is ...
Added by nigelbashford on Sat, 06 Nov 2021 16:08:14 +0200
Java Network Programming -- ServerSocket
Java network programming (V) -- ServerSocket (II)
In the last blog Java network programming (IV) - ServerSocket (I) This blog introduces what is a server Socket and how to use it. This blog continues to introduce other knowledge about ServerSocket.
Request queue length
When the server process is running, it may listen to connection reque ...
Added by gt500pwr on Thu, 04 Nov 2021 15:25:40 +0200
The Tcp server always sleep s, and the client keeps sending data
Question: "a tcp server and a tcp client. After the client establishes a connection with the server, the server always sleep s, and then the client always sends data".
Before answering this question, let's think about the characteristics of tcp and the general process of tcp sending data:
First of all, tcp is a reliable transmission ...
Added by djbuddhi on Thu, 04 Nov 2021 13:30:13 +0200
python -- communication principle, process and thread
1, Network programming
1. Computer network
Multiple computers with independent functions in different geographical locations and their external devices are connected through communication lines to realize resource sharing and information transmission under the management and coordination of the protocol.
Network programming: different comput ...
Added by uncleronin on Tue, 02 Nov 2021 23:54:42 +0200
yyds network programming Netty
1. Introduction to Netty
1.1. Netty is a client server framework based on Java NIO. Using netty, you can quickly develop network applications. Netty provides a high-level abstraction to simplify the programming of TCP and UDP servers, but you can still use the underlying API.
1.2. The internal implementation of netty is very complex, but nett ...
Added by demophoon88 on Tue, 02 Nov 2021 18:49:31 +0200
01 first day of network programming
Course arrangement of network programming:
day01
Understand OSI seven layer and TCP/IP four layer network model structureUnderstand common network protocol formatsMaster the conversion between network byte order and host byte order (large end method and small end method)Tell the communication flow of TCP serverOutput TCP client communica ...
Added by narked on Fri, 29 Oct 2021 15:02:02 +0300