Linux Netfilter discussions
 help / color / mirror / Atom feed
From: "Steve Howard" <showard@kennesaw.edu>
To: netfilter@lists.netfilter.org
Subject: Re: iptables rules for forwarding remote desktop
Date: Wed, 06 Nov 2002 15:10:53 -0500	[thread overview]
Message-ID: <sdc93102.060@kennesaw.edu> (raw)

Thank you very much,

I tried those three rules, I even flushed all the other rules and saved. This still is not working.

I can scan the Linux machine with nmap and it does not show port 3389.
I can scan the windows machine and it does show the port 3389.

Should the port 3389 show up on a nmap scan of the Linux machine?


>>> Antony Stone <Antony@Soft-Solutions.co.uk> 11/06/02 01:56PM >>>
On Wednesday 06 November 2002 6:45 pm, Steve Howard wrote:

> I have a RedHat 8 machine with 2 ethernet cards. eth0 is connected via dhcp
> to the Internet (cable modem). eth1 is private 192.168.1.1. I have a
> windows xp machine which I have set up to acquire a dhcp address, (it is
> always 192.168.1.10). I would like to be able to use the remote desktop
> (port 3389) from outside. I understand that I will have to forward port
> 3389 to eth0 so that I can access this port from my office machine. I have
> seen recommendations of one rule, and I have seen recommendations that have
> three rules listed. Can anyone help me get this right?

iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 3389 -j DNAT --to 
192.168.1.10
iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -i eth0 -s a.b.c.d -p tcp --dport 3389 -j ACCEPT

where a.b.c.d is the address of your office machine - otherwise anyone will 
be able to access your xp desktop :-)

I assume this service runs on TCP port 3389 - if it's UDP for some reason, 
simply change both instances of tcp to udp in the rules above.

Antony.

-- 

All matter in the Universe can be placed into one of two categories:

1. things which need to be fixed
2. things which will need to be fixed once you've had a few minutes to play 
with them




             reply	other threads:[~2002-11-06 20:10 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-11-06 20:10 Steve Howard [this message]
  -- strict thread matches above, loose matches on Subject: below --
2002-11-06 18:45 iptables rules for forwarding remote desktop Steve Howard
2002-11-06 18:56 ` Antony Stone

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=sdc93102.060@kennesaw.edu \
    --to=showard@kennesaw.edu \
    --cc=netfilter@lists.netfilter.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox