blob: 02b89207b0cb84dc24f7fa08e7e3ce0eb1fb403d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
table ip x {
chain t1 {
}
chain t2 {
}
chain t3 {
}
chain t4 {
}
chain y {
counter packets 0 bytes 0 jump t1
counter packets 0 bytes 0 jump t2
ip version vmap { 4 : jump t3, 6 : jump t4 }
}
}
|