1
0
Fork 0
mirror of synced 2025-04-05 14:13:37 +03:00

Create open_port.sh

Script to help to open a port for a client
This commit is contained in:
Loginbug 2020-04-24 19:18:33 +02:00 committed by GitHub
parent 48d9b06bab
commit f75092866f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

34
extras/open_port.sh Normal file
View file

@ -0,0 +1,34 @@
#!/bin/sh
echo "Which port do you want to open?"
read PORT
echo "Which type of port? tcp OR udp?"
read TYPE
echo "For which client? | This is the list:"
ifconfig | grep -E -o "(192[\.]168[\.]4[2-3][\.][0-9]{2,3})"
read CLIENT_IP
#PORT=8080
#TYPE=tcp
#CLIENT_IP=192.168.42.10
VPN_L2TP=192.168.42.1
VPN_XAUTH=192.168.43.1
def_iface=$(route 2>/dev/null | grep -m 1 '^default' | grep -o '[^ ]*$')
iptables -D FORWARD -j DROP
iptables -A FORWARD -i $def_iface -o ppp+ -p $TYPE --dport $PORT -j ACCEPT
iptables -A FORWARD -j DROP
iptables -t nat -A PREROUTING -i $def_iface -p $TYPE --dport $PORT -j DNAT --to-dest $CLIENT_IP:$PORT
if [ $(echo "$CLIENT_IP" | grep -c 192.168.42) -eq 1 ]; then
iptables -t nat -A POSTROUTING -d $CLIENT_IP -p $TYPE --dport $PORT -j SNAT --to-source $VPN_L2TP
fi
if [ $(echo "$CLIENT_IP" | grep -c 192.168.43) -eq 1 ]; then
iptables -t nat -A POSTROUTING -d $CLIENT_IP -p $TYPE --dport $PORT -j SNAT --to-source $VPN_XAUTH
fi
echo "Done"