blob: ec2df8c00958aed63640b6ecf2662e9ea8873518 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
:postrouting;type nat hook postrouting priority 0
*ip;test-ip4;postrouting
iifname "eth0" tcp dport 80-90 snat to 192.168.3.2;ok
iifname "eth0" tcp dport != 80-90 snat to 192.168.3.2;ok
iifname "eth0" tcp dport {80, 90, 23} snat to 192.168.3.2;ok
- iifname "eth0" tcp dport != {80, 90, 23} snat to 192.168.3.2;ok
- iifname "eth0" tcp dport != {80, 90, 23} snat to 192.168.3.2;ok
# BUG: invalid expression type set
# nft: src/evaluate.c:975: expr_evaluate_relational: Assertion '0' failed.
iifname "eth0" tcp dport != 23-34 snat to 192.168.3.2;ok
|