blob: 6c8ed323bdc94acc7ca83e06e861703c624bfcf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
table ip test {
set dlist {
type ipv4_addr
size 65535
flags dynamic
}
chain output {
type filter hook output priority filter; policy accept;
udp dport 1234 update @dlist { ip daddr } counter packets 0 bytes 0
}
}
|