Re: VPN & Proxy Detection, Browser Spoof Detection using TCP I haven't even been able to replicate the mis-matched OS finger prints. So I cant even break it to fix it...
But the rest I've worked through ages ago..
To fix the MTU issue just add to the OVPN client config...
If your using SoftEther disable UDP Acceleration in Advanced settings on the client.
But the best way with SoftEther, if your building and running your own VPN's on VPS, is to use a Bridged connection instead of enabling SecureNAT. Use dnsmasq for dhcp and use iptables to do the routing and forwarding.
To fix the ping issue just drop ICMP requests with iptables on the server. Code:
iptables -A INPUT --proto icmp -j DROP |