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