iam running a router and a dsl modem
i have installed OpenWrt Attitude Adjustment 12.09, openvpn and ntpclient (< is it really necessary as the gui already have it?)
-i uploaded my config files to /etc/openvpn
- to my firewall.user i added this:
iptables -I OUTPUT -o tun+ -j ACCEPT
iptables -I INPUT -i tun+ -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -I FORWARD -o tun+ -j ACCEPT
iptables -I FORWARD -i tun+ -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -t nat -I POSTROUTING -o tun+ -j MASQUERADE
- to my firewall config i added this:
###
# OpenVPN rule - accepts incoming udp connections on wan interface at port 1194
###
# cisco acl equiv
# permit udp any any eq 1194
# ip access-group aclname in
###
config 'rule'
option 'src' 'wan'
option 'target' 'ACCEPT'
option 'proto' 'udp'
option 'dest_port' '1194'
- restarted my firewall
- logging to vpn server:
openvpn --cd /etc/openvpn --config xxxxx.ovpn
i get a message "Initialization Sequence Completed", there are no errors, but i cant access the internet.
any ideas?
i also tried https://forum.openwrt.org/viewtopic.php?id=42990, but still no access
(Last edited by openwrt438 on 27 Jun 2013, 15:00)