-
Notifications
You must be signed in to change notification settings - Fork 26
/
install.sh
69 lines (57 loc) · 2.11 KB
/
install.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
#!/bin/bash
if dpkg-query -W needrestart >/dev/null 2>&1; then
sudo sed -i 's/#$nrconf{restart} = '"'"'i'"'"';/$nrconf{restart} = '"'"'a'"'"';/g' /etc/needrestart/needrestart.conf
fi
# Get the interface name for the WAN connection using ip a command
INTERFACE_NAME=$(ip a | awk '/state UP/ {print $2}' | tr -d ':')
if [[ $INTERFACE_NAME == *"w"* ]]
then
# WLAN connection detected
wan=$(ip -f inet -o addr show $INTERFACE_NAME|cut -d\ -f 7 | cut -d/ -f 1)
else
# Ethernet connection detected
wan=$(ip -f inet -o addr show $INTERFACE_NAME|cut -d\ -f 7 | cut -d/ -f 1)
fi
ppp1=$(/sbin/ip route | awk '/default/ { print $3 }')
ip=$(dig +short myip.opendns.com @resolver1.opendns.com)
# Installing pptpd
echo "Installing PPTPD"
sudo apt-get install pptpd -y
# edit DNS
echo "Setting Google DNS"
sudo echo "ms-dns 8.8.8.8" >> /etc/ppp/pptpd-options
sudo echo "ms-dns 8.8.4.4" >> /etc/ppp/pptpd-options
# Edit PPTP Configuration
echo "Editing PPTP Configuration"
remote="$ppp1"
remote+="0-200"
sudo echo "localip $ppp1" >> /etc/pptpd.conf
sudo echo "remoteip $remote" >> /etc/pptpd.conf
# Enabling IP forwarding in PPTP server
echo "Enabling IP forwarding in PPTP server"
sudo echo "net.ipv4.ip_forward = 1" >> /etc/sysctl.conf
sudo sysctl -p
# Tinkering in Firewall
echo "Tinkering in Firewall"
if [ -z "$wan" ]
then
sudo iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE && iptables-save
sudo iptables --table nat --append POSTROUTING --out-interface ppp0 -j MASQUERADE
$("sudo iptables -I INPUT -s $ip/8 -i ppp0 -j ACCEPT")
sudo iptables --append FORWARD --in-interface wlan0 -j ACCEPT
else
sudo iptables -t nat -A POSTROUTING -o $INTERFACE_NAME -j MASQUERADE && iptables-save
sudo iptables --table nat --append POSTROUTING --out-interface ppp0 -j MASQUERADE
$("sudo iptables -I INPUT -s $ip/8 -i ppp0 -j ACCEPT")
sudo iptables --append FORWARD --in-interface $INTERFACE_NAME -j ACCEPT
fi
clear
# Adding VPN Users
echo "Set username:"
read username
echo "Set Password:"
read password
sudo echo "$username * $password *" >> /etc/ppp/chap-secrets
# Restarting Service
sudo service pptpd restart
echo "All done!"