cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
277
Views
0
Helpful
2
Replies

Routing - Nat question

chtrnguyen
Level 1
Level 1

Hi all,

I have the following network

Subnet1--(Router1)--T1--(Router2)--DSL/Internet

My question is that how can i forward all the trafic to port 80 on the DSL/Internet ip to a host on Subnet1?

Thanks in advance

2 Replies 2

jackko
Level 7
Level 7

assuming router2 has a route to net1 hosts and the conncectivity is fine, then port forwarding and an inbound acl need to be configured on router2.

e.g.

ip nat inside source static tcp 80 80 extendable

access-list inbound permit tcp any eq 80

So i don't need to nat again at Router1, do i? The "extendable" option in the command ip nat will do the trick right?

Thanks