Displaying 1 result from an estimated 1 matches for "lan_vpn".
Did you mean:
lan_ip
2004 Oct 18
0
GNU/Linux Router with poptop problem
...his script I can allow to visit websites but no
the others protocol (I don''t know why).
Someone can help me?
Thank you very much.
Àlex
Good luck!
#Tallafocs per al servidor OSF
#!/bin/bash
#Ens definim les variables per al script...
IPT=/sbin/iptables
LAN="192.168.2.0/24"
LAN_VPN="192.168.0.0/24"
ANY="0.0.0.0/0"
IF_EXT="eth0"
IF_INT="eth1"
IF_VPN="ppp+"
UP_PORTS="1024:65535"
DNS_SERVER="194.224.52.4"
#Eliminem qualsevol resta del tallafocs anterior...
$IPT -t filter -F
$IPT -t nat -F
$IPT -t filter -X
$...