Openwrt路由搭建pptp-server操作说明

ssh登录到路由后台

        使用putty或者SecureCRT软件

安装PPTP软件包

opkg update
opkg install pptpd kmod-nf-nathelper-extra kmod-mppe

防火配置

# Configure kernel parameters
cat << EOF >> /etc/sysctl.conf
net.netfilter.nf_conntrack_helper=1
EOF
/etc/init.d/sysctl restart
 
# Configure firewall
uci rename firewall.@zone[0]="lan"
uci rename firewall.@zone[1]="wan"
uci del_list firewall.lan.device="ppp+"
uci add_list firewall.lan.device="ppp+"
uci -q delete firewall.pptp
uci set firewall.pptp="rule"
uci set firewall.pptp.name="Allow-PPTP"
uci set firewall.pptp.src="wan"
uci set firewall.pptp.dest_port="1723"
uci set 

你可能感兴趣的:(Openwrt,openwrt)