Hi all,
I''ve got a firewall with three cards : eth0 (LAN), eth1(DMZ) and eth2 (WAN).
I'm trying to test port forward with iptables but it doesn't work !
eth0 : 172.168.2.1 (I'm not using this card now)
eth1: 192.168.2.1/255.255.255.0
eth2: 192.168.3.1/255.255.255.0
On the DMZ I've put a computer (192.168.2.151/255.255.255.0) with sendmail.
When I'm on this computer a telnet localhost 25 is working fine.
I've connected a computer on eth2 with ip 192.168.3.2/255.255.255.0
I would like to access to the computer with sendmail when I make a telnet 192.168.3.1 but I've got a timeout response.
My iptables script is : #!/bin/sh
echo 1 > /proc/sys/net/ipv4/ip_forward
modprobe ip_tables modprobe ip_nat_ftp modprobe iptable_filter modprobe iptable_nat
iptables -F iptables -X
iptables -N LOG_ACCEPT iptables -A LOG_ACCEPT -j LOG --log-prefix '[IPTABLES ACCEPT] : ' iptables -A LOG_ACCEPT -j ACCEPT
iptables -P INPUT DROP iptables -P OUTPUT DROP iptables -P FORWARD ACCEPT
iptables -A INPUT -i lo -j ACCEPT iptables -A OUTPUT -o lo -j ACCEPT
iptables -t nat -A PREROUTING -d 192.168.3.1 -p tcp --dport 25 -j DNAT --to-destination 192.168.2.151:25
iptables -A FORWARD -i eth2 -o eth1 -p tcp --destination-port 25 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A FORWARD -o eth2 -i eth1 -p tcp --source-port 25 -m state --state ESTABLISHED -j ACCEPT
iptables -A FORWARD -j DROP iptables -A INPUT -j DROP iptables -A OUTPUT -j DROP
What it's wrong with this script ?
Thanks
Frederic