mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
table ip this_is_a_table {
|
|
chain this_is_a_base_chain {
|
|
type filter hook forward priority filter + 10; policy accept;
|
|
counter packets 0 bytes 0
|
|
jump this_is_a_regular_chain
|
|
}
|
|
|
|
chain this_is_a_regular_chain {
|
|
counter packets 0 bytes 0 accept
|
|
}
|
|
}
|