-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwithout-ask-only-parameter.sh
119 lines (93 loc) · 3.23 KB
/
without-ask-only-parameter.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/bin/bash
# Kullanım: ./script.sh <proxy_ip> <proxy_port> <proxy_type> [proxy_user] [proxy_passwd] <noproxy> [noproxy1] [noproxy2>
if [ $# -lt 4 ]; then
echo "Kullanım: $0 <proxy_ip> <proxy_port> <proxy_type> <noproxy> [proxy_user] [proxy_passwd] [noproxy1] [noproxy2]"
echo "For v2ray etc: sudo ./proxy.sh 127.0.0.1 10800 socks5 remote_server_ip"
exit 1
fi
proxy_ip=$1
proxy_port=${2:-""}
proxy_type=${3:-""}
proxy_user=${5:-""}
proxy_passwd=${6:-""}
noproxy=${4:-""}
echo "Lütfen bekleyin..."
sudo killall redsocks > /dev/null 2>&1
sudo rm -rf iptables1.sh redsocks/iptables1.sh > /dev/null 2>&1
chmod +x redsocks iptables1.sh iptables.sh
# Sistem kontrolü
if [ -f "/etc/arch-release" ]; then
pacman -S libevent iptables figlet --noconfirm
elif [ -f "/etc/debian_version" ] || [ -f "/etc/lsb-release" ]; then
apt-get install libevent-dev iptables figlet --yes
elif [ -f "/etc/fedora-release" ]; then
dnf install libevent-devel iptables figlet --assumeyes
else
echo "Desteklenmeyen bir sistem."
exit 1
fi
figlet "PROXY"
# Git deposunu klonla
git clone https://github.com/darkk/redsocks
cd redsocks
# Make komutunu çalıştır
make -j4
# redsocks dosyasını /bin dizinine kopyala
sudo cp redsocks /bin/
# redsocks.conf dosyasını oluştur
cat <<EOF > redsocks.conf
base {
log_debug = on;
log_info = on;
log = "file:./redsocks.log";
daemon = on;
redirector = iptables;
}
redsocks {
local_ip = 0.0.0.0;
local_port = 12345;
ip = $proxy_ip;
port = $proxy_port;
type = $proxy_type;
login = "$proxy_user";
password = "$proxy_passwd";
}
EOF
# redsocks.conf dosyasını kullanarak redsocks'ı başlat
redsocks -c ./redsocks.conf
# iptables1.sh dosyasını oluştur
cat <<EOF > iptables1.sh
# V2RAY için yeni zincirler oluşturuluyor
iptables -t nat -N V2RAY
iptables -t mangle -N V2RAY
iptables -t mangle -N V2RAY_MARK
# Proxy dışı trafiği geri döndür (RETURN)
iptables -t nat -A V2RAY -d $noproxy -j RETURN
iptables -t nat -A V2RAY -d $noproxy1 -j RETURN
iptables -t nat -A V2RAY -d $noproxy2 -j RETURN
# Özel IP aralıklarını geri döndür
iptables -t nat -A V2RAY -d 0.0.0.0/8 -j RETURN
iptables -t nat -A V2RAY -d 10.0.0.0/8 -j RETURN
iptables -t nat -A V2RAY -d 127.0.0.0/8 -j RETURN
iptables -t nat -A V2RAY -d 169.254.0.0/16 -j RETURN
iptables -t nat -A V2RAY -d 172.16.0.0/12 -j RETURN
iptables -t nat -A V2RAY -d 192.168.0.0/16 -j RETURN
iptables -t nat -A V2RAY -d 224.0.0.0/4 -j RETURN
iptables -t nat -A V2RAY -d 240.0.0.0/4 -j RETURN
# TCP trafiğini 12345 portuna yönlendir
iptables -t nat -A V2RAY -p tcp -j REDIRECT --to-ports 12345
iptables -t nat -A OUTPUT -p tcp -j V2RAY
# UDP trafiğini 12345 portuna yönlendir
iptables -t nat -A V2RAY -p udp -j REDIRECT --to-ports 12345
iptables -t nat -A OUTPUT -p udp -j V2RAY
# Mangle tablosunda trafiği işleme
iptables -t mangle -A PREROUTING -j V2RAY
iptables -t mangle -A OUTPUT -j V2RAY_MARK
EOF
# iptables1.sh dosyasını çalıştırabilir hale getir
chmod +x iptables1.sh
sudo cp ./redsocks/iptables1.sh .
sudo ./iptables1.sh > /dev/null 2>&1
# Kullanıcıya bilgi ver
sudo ./iptables1.sh
echo "Redsocks ve iptables kurulumu tamamlandı. NoProxy IP adreslerini iptables1.sh dosyasına ekleyerek kullanabilirsiniz."