Próbowałem już na różne sposoby skonfigurować VPN-pptpd na OpenWrt ale niestety nie udało mi się to. Robiłem próby na podstawie http://wiki.openwrt.org/PPTPDHowto oraz oficjalnego forum openwrt.
Bardzo proszę jeżeli to możliwe o zamieszczenie przez kogoś działającej konfiguracji serwera vpn.
U mnie teraz wygląda to tak. Router ma adres 192.168.1.1 i chce aby użytkownicy, którzy się łączą przez VPN również byli w tej samej sieci (adresy 192.168.1.201-2xx).
#/etc/ppp/options.pptpd
192.168.1.200:
auth
name "pptpd"
lcp-echo-failure 3
lcp-echo-interval 60
default-asyncmap
mtu 1482
mru 1482
nobsdcomp
nodeflate
mppe required,no40,no56,stateless
require-mschap-v2
refuse-chap
refuse-mschap
refuse-eap
refuse-pap
proxyarp
#/etc/ppp/chap-secrets
user1 pptpd pass1 192.168.1.201
#/etc/ppp/users.pptpd
user1 pass1 192.168.1.201
#/etc/firewall.user
iptables -F input_rule
iptables -F output_rule
iptables -F forwarding_rule
iptables -t nat -F prerouting_rule
iptables -t nat -F postrouting_rule
# The following chains are for traffic directed at the IP of the
# WAN interface
iptables -F input_wan
iptables -F forwarding_wan
iptables -t nat -F prerouting_wan
### Allow PPTP control connections from WAN
iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 1723 -j ACCEPT
iptables -A input_rule -i $WAN -p tcp --dport 1723 -j ACCEPT
### Allow GRE protocol (used by PPTP data stream)
iptables -A output_rule -p 47 -j ACCEPT
iptables -A input_rule -p 47 -j ACCEPT |