Dear Maintainer, The script /etc/ppp/ip-up.d/0dns-up fails to assign the static DNS config for the specific peer (as per the manual, the static file to temporary replace /etc/resolv.conf is stored in /etc/ppp/resolv/ directory, and named after the IPPARAM for the specific peer). The issue may lead to unexpected DNS leak (when establishing pptp VPN connection, instead of statically explocitly configured nameservers, the defaul ones are still used) The issue is in line 63: ... [ -L "$RESOLVCONF" ] || grep " / " /proc/mounts | grep -q " rw " || exit 0 ... where the grep fails to acknowledge that the root directory is mounted rw (due to requiring rw substring to be surrounded by spaces from both sides). An easy fix, changing the above for example to [ -L "$RESOLVCONF" ] || grep " / " /proc/mounts | grep -q " rw" || exit 0 will allow the script to operate properly, as per the corresponding ppconfig manual. Yours, manul