All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stef Coene <stef.coene@docum.org>
To: lartc@vger.kernel.org
Subject: Re: [LARTC] Web Server with ADSL (continued) or something similar
Date: Tue, 26 Feb 2002 06:32:41 +0000	[thread overview]
Message-ID: <marc-lartc-101470522300629@msgid-missing> (raw)
In-Reply-To: <marc-lartc-101468283512913@msgid-missing>

> I have tried it:
>
> iptables -t nat -A PREROUTING -p tcp -i eth2 --dport 1000 -j DNAT --to
> 	\192.168.1.2:80
>
> And doesn't work:
>
> carles@pinux:~$ telnet SERVER 1000
> Trying IP_SERVER...
>
> And if I do it with redir command works fine.
>
> What is the problem?
> And the solution?
Have you also used the other lines I sended?  You must be sure you are not 
blocking incoming port 1000.  And you must be sure you can forward to port 
80.  And I miss a -d option with the ip of your firewall/

This works fine for me.  This is a copy-paste from my firewall-script :

iptables -A INPUT -p tcp --dport 8088 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp -d 192.168.1.254 --dport 8080 -j DNAT 
--to 192.168.1.253:80
iptables -t nat -A PREROUTING -p tcp -d $EX_IP --dport 8080 -j DNAT --to 
192.168.1.253:80
iptables -A FORWARD -p tcp -d 192.168.1.253 --dport 8080 -j ACCEPT

$EX_IP is the internet-ip of my firewall.
192.168.1.254 is the LAN-ip of my firewall
192.168.1.253 is the ip of my webserver

I hope this can help.

Stef
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

      reply	other threads:[~2002-02-26  6:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-02-26  0:18 [LARTC] Web Server with ADSL (continued) or something similar Carles Pina i Estany
2002-02-26  6:32 ` Stef Coene [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=marc-lartc-101470522300629@msgid-missing \
    --to=stef.coene@docum.org \
    --cc=lartc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.