Page 1 of 1

Blocked inbound ports 3g network

Posted: Thu Feb 18, 2016 3:06 pm
by pandarian
Hi
I have to set up a openVPN server on AWS, but it should be accessible for clients connected to internet with 3g. I know that ISP blocked inbound ports (Play GSM Poland) and I know that it is possible to set up such VPN but don't know how. I created VPN that is accessible when client is connected to internet with WiFi, but it doesn't works with 3g connection. Below is mine server.conf :
;local 10.8.0.0

port 14520
proto udp
dev tun

ca /usr/share/easy-rsa/keys/ca.crt
cert /usr/share/easy-rsa/keys/server.crt
key /usr/share/easy-rsa/keys/server.key # This file should be kept secret
dh /usr/share/easy-rsa/keys/dh2048.pem

server 10.8.10.0 255.255.255.0
ifconfig-pool-persist ipp.txt
keepalive 10 120

;tls-auth ta.key 0 # This file is secret

comp-lzo

persist-key
persist-tun

status openvpn-status.log
;log openvpn.log
;log-append openvpn.log
verb 3
;mute 20
Sorry for bad English. It would great if someone has an idea and share with me

Re: Blocked inbound ports 3g network

Posted: Thu Feb 18, 2016 3:49 pm
by Traffic
pandarian wrote:I know that ISP blocked inbound ports (Play GSM Poland)
If the ISP blocks inbound ports then there is not much you can do ..

You could try HTTPS path:

Code: Select all

proto tcp
port 443

Re: Blocked inbound ports 3g network

Posted: Thu Feb 18, 2016 3:55 pm
by pandarian
I thought about it. I hoped that there is another way. Thanks a lot