Hi, On Sat, 19 Dec 2015 01:11:40 -0000 "torsten" <tors...@cnc-london.net> wrote: > I'm, running OpenBSD 5.8, npppd, mpath and have tried the same on 5.7 and 5.3. > npppd is works fine and clients can connect using windows pptp client. > The Client has the pptp connection set as default gateway and can access the > internet through the vpn gateway but cannot access the LAN network. > Traffic arrives on the pppx0 interface but never get forwarded to the LAN ip > address.
Can you see the traffic for the LAN on $int_if or the other physical interfaces? > ## vpn > pass quick log on pppx > match out log on $ext1_if from $vpn_net nat-to ($ext1_if) > match out log on $ext2_if from $vpn_net nat-to ($ext2_if) > match out log on $int_if from $vpn_net nat-to ($int_if) Fist line, "pass quick", becomes the last rule for traffic in/out on the pppx interface since it is "quick". So subsequent rules (including nat) are not applied. --yasuoka