Let's take a look at an article about CentOS installation VPN pptpd firewall iptables forwarding settings, this problem is because a friend set up some of the Web site can not be accessed when the solution came up.
CentOS installation VPN appears some of the site can not access the problem! Some forwarding rule settings for iptables
The NAT conversion rule is established, otherwise the dial cannot be connected to the public network through the remote gateway.
Iptables-t nat-a postrouting-o eth0-j snat–to-source $src _ip
Centos 6.4 Installing VPN problems with some Web sites that are inaccessible
Allow connection to PPTP service, 1723 for PPTP service port
Iptables-a input-p tcp-m tcp–dport 1723-j ACCEPT
Iptables-a forward-p tcp–syn-s 10.64.64.0/24-j TCPMSS–SET-MSS 1356
A VPN tunnel is allowed, otherwise the user name and password cannot be validated.
Iptables-a input-p gre-j ACCEPT