summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0007masquerade_1
blob: 4e98d106bc33b067e35f963292b4a23360f577c9 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

set -e

$NFT add table t
$NFT add chain t c1 {type filter hook output priority 0 \; }
# wrong hook output, only postrouting is valid
$NFT add rule t c1 masquerade 2>/dev/null
echo "E: accepted masquerade in output hook" >&2