netem and tc: netem is a network simulation module provided by Linux kernel versions 2.6 and above. This functional module can be used to simulate complex Internet transmission performance, such as low bandwidth, transmission delay, packet loss, etc., in a local area network with good performance. Many Linux distributions using Linux 2.6 (or above) kernel version have enabled this kernel feature, such as Fedora, Ubuntu, Redhat, OpenSuse, CentOS, Debian, etc. tc is a tool in the Linux system, and its full name is traffic control. tc can be used to control the working mode of netem. That is to say, if you want to use netem, at least two conditions are required. One is that the netem function in the kernel is included, and the other is that tc is required. It should be noted that the flow control introduced in this article can only control the packet sending action, but not the packet receiving action. At the same time, it takes effect directly on the physical interface. If the physical eth0 is controlled, the logical network card (such as eth0:1) will also be affected. Conversely, if you control the logical network card, the control may be invalid. (Note: Multiple network cards in a virtual machine can be regarded as multiple physical network cards in the virtual machine). Linux has a tc tool, namely traffic control, which can be used to simulate network packet loss and delay. When developing a backend server, if we want to know whether the server can perform well under a specific network packet loss condition, we can use tc to simulate the packet loss rate. Simulating packet loss The following command can simulate packet loss, and 10% of the packets going out of the eth0 network port will be randomly lost: sudo tc qdisc add dev eth0 root netem loss 10% Analog Delay The following command will delay the packets sent out of the eth0 network port by 40ms: sudo tc qdisc add dev eth0 root netem delay 40ms Packet loss and latency in specific scenarios Note that the commands introduced above are effective for the entire eth0 network port, that is, all packets going out from eth0 will experience random packet loss or delay. But sometimes, we only want packet loss and delay to affect a certain destination address. What should we do? sudo tc qdisc add dev eth0 root handle 1: prio sudo tc qdisc add dev eth0 parent 1:3 handle 30: netem loss 13% delay 40ms sudo tc filter add dev eth0 protocol ip parent 1:0 u32 match ip dst 199.91.72.192 match ip dport 36000 0xffff flowid 1:3 In the above command, we tell tc to generate 13% packet loss and 40ms delay for network packets sent to 199.91.72.192:36000, while network packets sent to other destination addresses will not be affected. Deleting a rule OK, after simulating packet loss and latency, remember to delete the rule: sudo tc qdisc del dev eth0 root Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: React Hook usage examples (6 common hooks)
>>: MySQL exposes Riddle vulnerability that can cause username and password leakage
environment Host IP 192.168.0.9 Docker version 19...
Zabbix deployment documentation After zabbix is ...
This article shares the Vant Uploader component f...
1. Common connections for mysql INNER JOIN (inner...
Table of contents 1. Introduction 2. Preparation ...
First, you can open Moments and observe several l...
Copy code The code is as follows: <style type=...
Table of contents # Post-data preparation # SQL q...
#!/bin/bash #Download SVN yum -y install subversi...
Preface In the process of developing a mini progr...
Table of contents 1. Installation 2. There is no ...
Table of contents Primary key index Create indexe...
Gtid + Mha + Binlog server configuration: 1: Test...
There are many commands used in the system, so ho...
Ubuntu 15.04 opens MySQL remote port 3306. All th...