Add more notes

This commit is contained in:
Denys Fedoryshchenko
2023-05-14 21:49:17 +03:00
parent 1df50d1c59
commit 7f3de77688

View File

@@ -22,3 +22,31 @@ ip link set dev eth6 up
ip link set dev eth7 up
ip link set dev bond0 up
```
## Troubleshooting
### Packetloss
* This kind of fast ping need to be applied only on ethernet links with MTU 1500. No packetloss should be present.
```
ping -c 1000 -i 0.01 -s1472 127.0.0.1
ping -c 1000 -i 0.01 -s1472 nearby.ip
```
* Check if any dropped counter are increasing
```
tc -s -d qdisc show
```
* Check SFP signal level (if SFP supports DDM/DOM)
```
ethtool -m eth4
```
You might need to tune icmp rate limit if too many people ping this host:
```
net.ipv4.icmp_msgs_per_sec = 10000
net.ipv4.icmp_ratelimit = 100000
net.ipv4.icmp_msgs_burst=1000
```