* RE: Port forward
@ 2003-02-04 10:56 ASC - Ronald Roeleveld
2003-02-04 11:17 ` RE : " Franck
2003-02-04 11:53 ` Sven Schuster
0 siblings, 2 replies; 3+ messages in thread
From: ASC - Ronald Roeleveld @ 2003-02-04 10:56 UTC (permalink / raw)
To: 'Eric Leblond'; +Cc: 'netfilter@lists.netfilter.org'
[-- Attachment #1: Type: text/plain, Size: 2918 bytes --]
Thanks a lot the error message is gone now,
after I changed the line to:
iptables -t nat -A PREROUTING -p tcp --destination-port 25 -i eth0 -j DNAT
--to-destination 192.168.22.6:25
But when I do iptables --list
I dont see any entrys in the chain for PREROUTING
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- 192.168.32.6 anywhere tcp dpt:ssh
ACCEPT udp -- 192.168.32.6 anywhere udp dpt:ssh
ACCEPT tcp -- 192.168.22.6 anywhere tcp dpt:ssh
ACCEPT udp -- 192.168.22.6 anywhere udp dpt:ssh
ACCEPT tcp -- thamaster.xs4all.nl anywhere tcp dpt:ssh
ACCEPT udp -- thamaster.xs4all.nl anywhere udp dpt:ssh
ACCEPT tcp -- 192.168.22.0/24 anywhere tcp dpt:www
ACCEPT udp -- 192.168.22.0/24 anywhere udp dpt:www
ACCEPT tcp -- localnet/24 anywhere tcp dpt:www
ACCEPT udp -- localnet/24 anywhere udp dpt:www
ACCEPT all -- anywhere anywhere
DROP tcp -- anywhere anywhere tcp
flags:SYN,RST,ACK/SYN
Chain FORWARD (policy ACCEPT)
target prot opt source destination
TCPMSS tcp -- anywhere anywhere tcp
flags:SYN,RST/SYN TCPMSS clamp to PMTU
ACCEPT all -- anywhere anywhere state
ESTABLISHED
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
TCPMSS tcp -- anywhere anywhere tcp
flags:SYN,RST/SYN TCPMSS clamp to PMTU
TCPMSS tcp -- anywhere anywhere tcp
flags:SYN,RST/SYN TCPMSS clamp to PMTU
Chain PREROUTING (0 references)
target prot opt source destination
Regards,
Ronald Roeleveld
System Administrator
ASCINTERNATIONAL
Vlietweg 17c, 2266 KA, Leidschendam, The Netherlands
Tel. +31 (0)70 3178400, Fax +31 (0)70 3204760
E-mail: r.roeleveld@ascinternational.nl
<mailto:r.roeleveld@ascinternational.nl> , Website:
http://www.ascinternational.nl <http://www.ascinternational.nl>
-----Original Message-----
From: Eric Leblond [ mailto:eleblond@init-sys.com
<mailto:eleblond@init-sys.com> ]
Sent: dinsdag 4 februari 2003 11:49
To: ASC - Ronald Roeleveld
Subject: Re: Port forward
On Tue, 2003-02-04 at 11:31, ASC - Ronald Roeleveld wrote:
> Hi all,
>
> Iam trying to set up a port forward for several hours now, but I don't
> seem to get it working right.
> When I type the following command:
> iptables -A PREROUTING -p tcp --destination-port 25 -i eth0 -j DNAT
> --to-destination 192.168.22.6:25
you forget to specify that you work on the NAT table so add
-t nat
ou your line
--
Éric Leblond
courriel : eleblond@init-sys.com
[-- Attachment #2: Type: text/html, Size: 6316 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE : Port forward
2003-02-04 10:56 Port forward ASC - Ronald Roeleveld
@ 2003-02-04 11:17 ` Franck
2003-02-04 11:53 ` Sven Schuster
1 sibling, 0 replies; 3+ messages in thread
From: Franck @ 2003-02-04 11:17 UTC (permalink / raw)
To: netfilter
> Thanks a lot the error message is gone now,
> after I changed the line to:
> iptables -t nat -A PREROUTING -p tcp --destination-port 25 -i eth0 -j
DNAT --to-destination 192.168.22.6:25
> But when I do iptables --list
> I dont see any entrys in the chain for PREROUTING
You must specify that you want to list the content of the nat table....
iptables -t nat --list
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Port forward
2003-02-04 10:56 Port forward ASC - Ronald Roeleveld
2003-02-04 11:17 ` RE : " Franck
@ 2003-02-04 11:53 ` Sven Schuster
1 sibling, 0 replies; 3+ messages in thread
From: Sven Schuster @ 2003-02-04 11:53 UTC (permalink / raw)
To: netfilter
ASC - Ronald Roeleveld wrote:
> Thanks a lot the error message is gone now,
> after I changed the line to:
> iptables -t nat -A PREROUTING -p tcp --destination-port 25 -i eth0 -j
> DNAT --to-destination 192.168.22.6:25
>
> But when I do iptables --list
> I dont see any entrys in the chain for PREROUTING
>
You need to put in the "-t nat" here too to show the nat table:
iptables -t nat --list
Sven
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-02-04 11:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-04 10:56 Port forward ASC - Ronald Roeleveld
2003-02-04 11:17 ` RE : " Franck
2003-02-04 11:53 ` Sven Schuster
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.