mirror of
https://github.com/bol-van/zapret2.git
synced 2026-03-14 06:13:09 +00:00
28 lines
784 B
Bash
Executable File
28 lines
784 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this file should be placed to /usr/local/etc/rc.d and chmod 755
|
|
|
|
# copy 'lua' dir there
|
|
ZDIR=/usr/local/etc/zapret2
|
|
|
|
# prepare system
|
|
|
|
kldload ipfw
|
|
kldload ipdivert
|
|
|
|
# for older pfsense versions. newer do not have these sysctls
|
|
sysctl net.inet.ip.pfil.outbound=ipfw,pf
|
|
sysctl net.inet.ip.pfil.inbound=ipfw,pf
|
|
sysctl net.inet6.ip6.pfil.outbound=ipfw,pf
|
|
sysctl net.inet6.ip6.pfil.inbound=ipfw,pf
|
|
|
|
# required for newer pfsense versions (2.6.0 tested) to return ipfw to functional state
|
|
pfctl -d ; pfctl -e
|
|
|
|
# add ipfw rules and start daemon
|
|
|
|
ipfw delete 100
|
|
ipfw add 100 divert 990 tcp from any to any 80,443 out not diverted not sockarg
|
|
pkill ^dvtws2$
|
|
dvtws2 --daemon --port 990 --lua-init=@$ZDIR/zapret-lib.lua --lua-init=@$ZDIR/zapret-antidpi.lua --lua-desync=multisplit
|