VPN tunnel with mpd5 shuts down (sort of that is)

Starting up the tunnel
Code:
…
…
…
[B1]   PRIDNS 0.0.0.0
[B1]   SECDNS 0.0.0.0
[B1] IPCP: rec'd Configure Nak #38 (Ack-Sent)
[B1]   IPADDR 93.182.130.10
[B1]     93.182.130.10 is OK
[B1]   PRIDNS 93.182.182.85
[B1]   SECDNS 93.182.182.85
[B1] IPCP: SendConfigReq #39
[B1]   IPADDR 93.182.130.10
[B1]   COMPPROTO VJCOMP, 16 comp. channels, no comp-cid
[B1]   PRIDNS 93.182.182.85
[B1]   SECDNS 93.182.182.85
[B1] IPCP: rec'd Configure Ack #39 (Ack-Sent)
[B1]   IPADDR 93.182.130.10
[B1]   COMPPROTO VJCOMP, 16 comp. channels, no comp-cid
[B1]   PRIDNS 93.182.182.85
[B1]   SECDNS 93.182.182.85
[B1] IPCP: state change Ack-Sent --> Opened
[B1] IPCP: LayerUp
[B1]   93.182.130.10 -> 93.182.130.2
[B1] IFACE: Up event

Here everything works just fine

Generally a few days go by and then I get the following
Code:
[B1] CCP: SendResetReq #31 link 0 (Opened)
[B1] CCP: rec'd Reset Ack #31 (Opened)
and then I can’t send packages through the tunnel any more.
The tunnel isn’t terminated but nothing goes through. Forgot to try and ping the gateway. Have to try that the next time.

Everything works just fine again if I quit mpd5 and then re-start it.

The routing table is still intact so it’s not a routing problem.


Anyone encountered this problem before? Found someone on a Russian forum with the same problem but he never got an answer unfortunately (in the forum at least).
 
This is the mpd.conf file

Code:
# cat mpd.conf
default:
        load ipredator

ipredator:
        create bundle static B1
        set iface up-script /usr/local/etc/mpd5/ip-up.sh
        set iface down-script /usr/local/etc/mpd5/ip-down.sh
        set ipcp ranges 0.0.0.0/0 0.0.0.0/0
        set ipcp enable req-pri-dns
        set ipcp enable req-sec-dns

        set bundle enable compression
        set ccp yes mppc
        set mppc yes e40
        set mppc yes e128
        set mppc yes stateless

        create link static L1 pptp
        set link action bundle B1
        set auth authname krachor
        set auth password xxxxx
        set link max-redial 0
        set link mtu 1460
        set link keep-alive 20 75
        set pptp peer vpn.ipredator.se
        #set pptp disable windowing
        open

It won’t open the tunnel at all if
Code:
set mppc yes e40
is removed.

If I instead remove
Code:
set mppc yes e128
I get the same behavior as when the
Code:
[B1] CCP: SendResetReq #31 link 0 (Opened)
[B1] CCP: rec'd Reset Ack #31 (Opened)
Happens. It opens the link but nothing gets through.
 
Unfortunately not. It’s a VPN service I’m using and I don’t have access to their logs.
 
Back
Top