blob: 74777d8e021aa66eba7071706f19322331329e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
# Adding anonymous sets
set -e
$NFT add table t
$NFT add chain t c { type filter hook output priority 0 \; }
# set: IP addresses
$NFT add rule t c ip daddr { \
192.168.0.1, \
192.168.0.2, \
192.168.0.3, \
}
#set : tcp ports
$NFT add rule t c meta oifname \"doesntexist\" tcp dport { 22, 23 } counter
|