summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/bogons/nft-f/nat_stmt_with_set_instead_of_map
blob: b1302278cc9bda77ca8058cbb774c0e92b756839 (plain)
1
2
3
4
5
6
7
8
9
10
table inet x {
        set y {
                type ipv4_addr
                elements = { 2.2.2.2, 3.3.3.3 }
        }

        chain y {
                snat ip to ip saddr map @y
        }
}