#!/bin/bash

set -e

RULESET="
  add table t
  add chain t c { type filter hook output priority filter; }
  add rule t c ct mark set ip dscp lshift 26 or 0x10
"

$NFT -f - <<< "$RULESET"
