fritzbox as purvpn client

This forum is for general conversation and user-user networking.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Post Reply
nabla79
OpenVpn Newbie
Posts: 1
Joined: Wed Jan 17, 2018 8:52 pm

fritzbox as purvpn client

Post by nabla79 » Wed Jan 17, 2018 9:08 pm

I want to connect my purevpn server by using the openvpn service available in my fritzbox router (freetz custom firmware). I logged in to my router using an ssh connection, and then executed the openvpn command, using as input parameter the client configuration file downloaded from purevpn website, together with the needed certificate files and an additional input file containing my personal username and password.

This is my client conf file:

Code: Select all

client
dev tun
proto udp
remote vlus-it-ovpn-udp.pointtoserver.com 53
persist-key
persist-tun
ca ca.crt
tls-auth Wdc.key 1
cipher AES-256-CBC
comp-lzo
verb 1
mute 20
route-method exe
route-delay 2
route 0.0.0.0 0.0.0.0
auth-user-pass login.cfg
auth-retry interact
ifconfig-nowarn
auth-nocache 
The connection was successfully established, as you can see from the following output messages:

Code: Select all

Wed Jan 17 22:05:37 2018 UDPv4 link local (bound): [undef]
Wed Jan 17 22:05:37 2018 UDPv4 link remote: [AF_INET]172.111.145.2:53
Wed Jan 17 22:05:38 2018 TCP/UDP: Incoming packet rejected from [AF_INET]104.250.172.1:53[2], expected peer address: [AF_INET]172.111.145.2:53 (allow this incoming source address/port by removing --remote or adding --float)
Wed Jan 17 22:05:40 2018 [PureVPN] Peer Connection Initiated with [AF_INET]172.111.145.2:53
Wed Jan 17 22:05:42 2018 TUN/TAP device tun0 opened
Wed Jan 17 22:05:42 2018 do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0
Wed Jan 17 22:05:42 2018 /sbin/ifconfig tun0 172.111.145.102 netmask 255.255.255.224 mtu 1500 broadcast 172.111.145.127
Wed Jan 17 22:05:44 2018 Initialization Sequence Completed
Wed Jan 17 22:05:48 2018 TCP/UDP: Incoming packet rejected from [AF_INET]104.250.172.1:53[2], expected peer address: [AF_INET]172.111.145.2:53 (allow this incoming source address/port by removing --remote or adding --float)
But I'm not able to browse on Internet. And ping command does not respond.
If I run "ip route list" on my router this is the resulting output:

Code: Select all

0.0.0.0/1 via 104.250.172.97 dev tun0 
default via 104.250.172.97 dev tun0 
default dev dsl scope link  metric 2 
104.250.172.1 dev dsl scope link 
104.250.172.96/27 dev tun0 scope link  src 104.250.172.113 
128.0.0.0/1 via 104.250.172.97 dev tun0 
151.75.202.50 dev dsl  metric 2 
169.254.0.0/16 dev lan scope link  src 169.254.1.1 
192.168.178.0/24 dev lan scope link  src 192.168.178.1 
192.168.178.201 dev dsl scope link  metric 2 
192.168.179.0/24 dev guest scope link  src 192.168.179.1 
192.168.180.1 dev dsl scope link  metric 2 
192.168.180.2 dev dsl scope link  metric 2 
193.70.152.15 dev dsl  metric 2 
212.52.97.15 dev dsl  metric 2
Can you please give me an help in troubleshooting the issue?

Post Reply