Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
| 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. |
|
 |
05-03-2005, 06:13 AM
|
#1
|
|
Member
Registered: Aug 2004
Posts: 91
Rep:
|
iptables nat
I have 2 pc and I tried to learn how to NAT on those . The fist PC ( 10.0.0.4 ) with iptables and the second (10.0.0.5 ) with apache on it. Now I would like whenerver a http request to 10.0.0.4 , it will forward to 10.0.0.5 and I used :
Quote:
[root@HomeServer sysconfig]# iptables -A FORWARD -p tcp --dport 80 -j ACCEPT
[root@HomeServer sysconfig]# iptables -t nat -A PREROUTING -p tcp --dport 80 -j DNAT --to 10.0.0.5
|
Then I tried "http://10.0.0.4" on the 10.0.0.5 , hoping it will redirect back but nothing happend ( ofcause my httpd on 10.0.0.5 in turn on ) . Could you point me out the wrong in the command abouve , thank you
|
|
|
|
05-03-2005, 06:30 AM
|
#2
|
|
Member
Registered: Oct 2004
Posts: 42
Rep:
|
You need to supply port after redirect too - look at the end of that rule. Also primary destination address as a source of redirect won't do any harm. (-d 10.0.0.4)
iptables -t nat -A PREROUTING -p tcp -d 10.0.0.4 --dport 80 -j DNAT --to 10.0.0.5:80
|
|
|
|
05-03-2005, 06:36 AM
|
#3
|
|
Member
Registered: Aug 2004
Posts: 91
Original Poster
Rep:
|
did you mean :
Quote:
# iptables -A FORWARD -p tcp --dport 80 -j ACCEPT
# iptables -t nat -A PREROUTING -p tcp -d 10.0.0.4 --dport 80 -j DNAT --to 10.0.0.5:80
|
I've tried it , but it does'nt work , thank for your answer 
Last edited by kernelvn; 05-03-2005 at 06:37 AM.
|
|
|
|
05-03-2005, 11:00 AM
|
#4
|
|
Member
Registered: Aug 2004
Posts: 91
Original Poster
Rep:
|
any help ?
|
|
|
|
05-03-2005, 11:38 AM
|
#5
|
|
Moderator
Registered: Nov 2004
Location: San Jose, CA
Distribution: Ubuntu
Posts: 8,505
Rep: 
|
Because of the way tcp works, you cannot use portforwarding within a LAN.
Basically, a packet will be sent from 10.0.0.5 to 10.0.0.4, which redirects it to 10.0.0.5 again. HOWEVER, 10.0.0.5 will reply to 10.0.0.5 directly! 10.0.0.5 is expecting the reply from 10.0.0.4, so will discard this excess packet!
|
|
|
|
05-03-2005, 11:39 AM
|
#6
|
|
Member
Registered: Aug 2004
Posts: 91
Original Poster
Rep:
|
ya , thank
|
|
|
|
| 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 07:22 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
|
|