Created
January 30, 2021 10:05
-
-
Save tg12/5e6435694e5491f9cc32b41ae7b29f70 to your computer and use it in GitHub Desktop.
iptables -t mangle -A OUTPUT -p udp -j DSCP --set-dscp-class ef
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iptables -t mangle -A OUTPUT -p udp -j DSCP --set-dscp-class ef | |
root@raspberrypi:~# iptables -t nat -L | |
Chain PREROUTING (policy ACCEPT) | |
target prot opt source destination | |
Chain INPUT (policy ACCEPT) | |
target prot opt source destination | |
Chain POSTROUTING (policy ACCEPT) | |
target prot opt source destination | |
Chain OUTPUT (policy ACCEPT) | |
target prot opt source destination | |
root@raspberrypi:~# iptables -t mangle -L | |
Chain PREROUTING (policy ACCEPT) | |
target prot opt source destination | |
Chain INPUT (policy ACCEPT) | |
target prot opt source destination | |
Chain FORWARD (policy ACCEPT) | |
target prot opt source destination | |
Chain OUTPUT (policy ACCEPT) | |
target prot opt source destination | |
DSCP udp -- anywhere anywhere DSCP set 0x2e | |
Chain POSTROUTING (policy ACCEPT) | |
target prot opt source destination |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment