Why should K8s enable the bridge NF call iptables kernel parameter? Explain it to you with a case
Click on "end of life", pay attention to the official account.
Daily technical dry goods, delivered at the first time!
Up to 70% of the problems encountered with kubernetes can be attributed to network problems. Recently, it was found that if the kernel parameter: Bridge NF call iptables is not set properly, it will affect the pod ...
Posted by adityakonda on Thu, 09 Dec 2021 15:16:54 +0100
VMware virtual machine network configuration under Linux environment (bridging and NAT)
Software configuration: vmware, openeuler 21.03 (other linux systems)
1. Bridging mode
This is equivalent to creating a separate host in a LAN. It can access all hosts in the LAN, but it needs to manually configure the IP address and subnet mask, and it is in the same network segment as the real host (nat is two network segments). In this mod ...
Posted by Ruud Hermans on Thu, 09 Dec 2021 14:49:39 +0100
Construction of Text Cooccurrence Network Based on Python
Catalog
1. Cooccurrence analysis concepts
2. Cooccurrence Types
3. Code implementation
3.1 Construct Word Separator
3.2 String Storage
3.3 Build Dictionary
3.4 Construct Cooccurrence Matrix
3.5 Principal function
3.6 Weight greater than 300
4. Importing Gephi to Make Network Diagram
4. ...
Posted by larus@spuni.is on Wed, 08 Dec 2021 19:12:06 +0100
Optimization of network process
Reduce network requests
Browser cache
Local storage
localStorage
localStorage is a new local storage API in html5. The storage capacity supported in general browsers is 5M. It is only saved in the browser and does not participate in communication with the server.The data stored in localStorage has no expiration time and can only be cle ...
Posted by web_noob on Wed, 08 Dec 2021 03:37:09 +0100
FTP service in Linux
FTP service in Linux
1, Introduction to FTP
(1)FTP service - the protocol used to transfer files
FTP is the English abbreviation of File Transfer Protocol. It is one of the protocols in TCP/IP protocol group. Used for two-way transfer of control files on the Internet. At the same time, it is also an Application. There are different FTP a ...
Posted by progwihz@yahoo.com on Wed, 08 Dec 2021 02:17:16 +0100
Basi c Notes (Debt Payment)
c Language Basics Record
1. Data Types
Data type: Essentially an alias for a fixed-size memory block Variable: An alias that is essentially a continuous memory space
int a; //Tell the compiler to allocate 4 bytes of space
int b[10]; //40 bytes
printf("b:%d, b+1:%d, &b:%d, &b+1:%d\n", b, b+1, &b, &b+1);
// B As with &b, ...
Posted by nextman on Wed, 08 Dec 2021 00:41:42 +0100
Configuration of docker network
Configuration of docker network
The creation of namespace in Linux kernel
ip netns command
You can complete various operations on the Network Namespace with the help of the ip netns command. The ip netns command comes from the iproute installation package. Generally, the system will install it by default. If not, please install it yourself. ...
Posted by jeffkee on Wed, 08 Dec 2021 00:08:52 +0100
Performance Test Common Indicators - Compact Edition
Reprinted from https://www.testwo.com/article/725
There are five main tests for performance testing: 1. Stress Testing: Emphasizing Extreme Violence 2. Stability test: Long-term operation under certain pressure 3. Benchmarking: Performance testing under specific conditions 4. Load testing: performance under different loads 5. Capacity Test: Op ...
Posted by Takuma on Mon, 06 Dec 2021 19:06:46 +0100
Docker Container Network Configuration
1 Linux Kernel Implements Namespace Creation
1.1 ip netns command
You can use the ip netns command to complete various operations on the Network Namespace. The ip netns command comes from the iproute installation package, which is usually installed by default. If not, install it yourself. Note: The ip netns command requires sudo privile ...
Posted by BeastRider on Sun, 05 Dec 2021 22:15:08 +0100
Chinese translation of write ahead log
Note: the article comes from Write-Ahead Log , the author works at Thoughtworks Martin Fowler . This paper mainly writes "pre write log", a common technology in modern distributed database.
Pre write log
The persistence guarantee is provided by persisting each state change to the log in the form of command without ref ...
Posted by codersrini on Sun, 05 Dec 2021 21:24:27 +0100