This file contains hidden or 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
# create dummy interface for testing | |
# using iproute2 | |
ip link add dummy0 type dummy | |
ip link set dummy0 up | |
# using Network Manager | |
nmcli connection add type dummy ifname dummy0 ipv4.method disabled ipv6.method disabled | |
# tc rules below | |
source_if=eth0 |