|
|
Emmanuel Polet ha scritto:
I'm not quite sure what iptables rules to add... You must use the tun interface, since on the external real interface (eth0 ?) the packets come encrypted. With ipchains I use the following rules, supposing 10.3.0.2 the IP of the openvpn client and 10.0.0.0 255.255.255.0 the network on which the shares are; I have filter rules also for packets from internal interface (eth1 for me), so there are rules also for eth1 in my example. Bye. Matteo. P.s.: I know that in ipchains there's the option -b for bidirectional rules, but I don't remember why I didn' use it... ;-) #tun0 rules ipchains -A input -j ACCEPT -i tun0 -p udp -s 10.3.0.2/32 137 -d 10.0.0.0/24 137 ipchains -A output -j ACCEPT -i tun0 -p udp -s 10.0.0.0/24 137 -d 10.3.0.2/32 137 ipchains -A input -j ACCEPT -i tun0 -p udp -s 10.3.0.2/32 138 -d 10.0.0.0/24 138 ipchains -A output -j ACCEPT -i tun0 -p udp -s 10.0.0.0/24 138 -d 10.3.0.2/32 138 ipchains -A input -j ACCEPT -i tun0 -p tcp -s 10.3.0.2/32 -d 10.0.0.0/24 139 ipchains -A output -j ACCEPT -i tun0 -p tcp -s 10.0.0.0/24 139 -d 10.3.0.2/32 ipchains -A input -j ACCEPT -i tun0 -p tcp -s 10.3.0.2/32 -d 10.0.0.0/24 445 ipchains -A output -j ACCEPT -i tun0 -p tcp -s 10.0.0.0/24 445 -d 10.3.0.2/32 #eth1 rules ipchains -A input -j ACCEPT -i eth1 -p udp -s 10.0.0.0/24 137 -d 10.3.0.2/32 137 ipchains -A output -j ACCEPT -i eth1 -p udp -s 10.3.0.2/32 137 -d 10.0.0.0/24 137 ipchains -A input -j ACCEPT -i eth1 -p udp -s 10.0.0.0/24 138 -d 10.3.0.2/32 138 ipchains -A output -j ACCEPT -i eth1 -p udp -s 10.3.0.2/32 138 -d 10.0.0.0/24 138 ipchains -A input -j ACCEPT -i eth1 -p tcp -s 10.0.0.0/24 139 -d 10.3.0.2/32 ipchains -A output -j ACCEPT -i eth1 -p tcp -s 10.3.0.2/32 -d 10.0.0.0/24 139 ipchains -A input -j ACCEPT -i eth1 -p tcp -s 10.0.0.0/24 445 -d 10.3.0.2/32 ipchains -A output -j ACCEPT -i eth1 -p tcp -s 10.3.0.2/32 -d 10.0.0.0/24 445 ____________________________________________ Openvpn-users mailing list Openvpn-users@xxxxxxxxxxxxxxxxxxxxx https://lists.sourceforge.net/lists/listinfo/openvpn-users |