Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
09-02-2004, 10:00 PM
|
#1
|
|
LQ Newbie
Registered: Jun 2004
Posts: 3
Rep:
|
IPTABLES port forward
Hi,
I am new to iptables. I need to forward all the https port 443 to port
7502. How should I do this in iptables? Is there anyway I can edit the configuration file so that after next reboot the policy is there. I am using redhat linux AS 3.0.
|
|
|
|
09-03-2004, 01:28 AM
|
#2
|
|
Senior Member
Registered: Mar 2003
Location: Beautiful BC
Distribution: RedHat & clones, Slackware, SuSE, OpenBSD
Posts: 1,791
Rep:
|
Is this for your local traffic?
iptables -t nat -A PREROUTING -i <internal NIC> -p tcp --dport 443 -j REDIRECT --to-port 7502
if it is external traffic going to another system
iptables -t nat -A PREROUTING -i <external nic> -p tcp --dport 443 -j DNAT --to-destination <ipaddress>:5702
|
|
|
|
09-03-2004, 08:04 AM
|
#3
|
|
Member
Registered: Feb 2004
Location: Mooresville NC
Distribution: CentOS 4,Free BSD,
Posts: 358
Rep:
|
That will work or you could try http://www.iptables-script.dk/
|
|
|
|
09-28-2004, 07:07 PM
|
#4
|
|
Guru
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870
|
Quote:
Originally posted by ppuru
if it is external traffic going to another system
Code:
iptables -t nat -A PREROUTING -i <external nic> -p tcp --dport 443 \
-j DNAT --to-destination <ipaddress>:7502
|
yup, but don't forget the accompanying FORWARD rule needed to make that work:
Code:
iptables -A FORWARD -p tcp -d <ipaddress> --dport 7502 -j ACCEPT
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 08:26 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|