mirror of https://github.com/bol-van/zapret/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
237 B
8 lines
237 B
chain tpws_re {
|
|
type nat hook prerouting priority dstnat; policy accept;
|
|
tcp dport {80,443} redirect to :900
|
|
}
|
|
chain tpws_out {
|
|
type nat hook output priority -100; policy accept;
|
|
tcp dport {80,443} skuid != daemon redirect to :900
|
|
}
|
|
|