summaryrefslogtreecommitdiffstats
path: root/tests/family-ipv4
blob: 0700e16dfe668762082263173974b4b5dddcf898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! nft -f

flush chain ip filter output
delete chain ip filter output
delete table filter

add table ip filter
add chain ip filter output { type filter hook input priority 0; }

# IP address
add rule ip filter output ip daddr 192.168.0.1 counter

# TCP ports
add rule ip filter output tcp dport 22 counter