blob: 791a7943581ddc2cc405d7e358a34131f3a96a0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# NFT_TEST_REQUIRES(NFT_TEST_HAVE_bitshift)
set -e
RULESET="
add table ip6 t
add chain ip6 t c { type filter hook input priority filter; }
add rule ip6 t c meta mark set ip6 dscp lshift 2 or 0x10
"
$NFT -f - <<< "$RULESET"
|