mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-26 20:20:53 +03:00
9 lines
237 B
Plaintext
9 lines
237 B
Plaintext
|
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
|
||
|
}
|