Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

port forwarding 831 1

Status
Not open for further replies.

736xl

IS-IT--Management
Joined
Sep 14, 2005
Messages
89
Location
US
I've setup the router and enable PAT on the spacific port and address I need to access from outside. For some reason it does not work. To access from the outside I enter
address of the router:port/

is there anything else I need to enable on the router?

Thanks in advance.
 
Are you setting it up for port forwarding:
Example 132.23.23.23:3389 to 192.168.1.1:3389

Or Port Address Translation:
Example 132.23.23.23:3389 to 192.168.1.1:42389




 
I need to get to a device internaly from the outside. I need to port forward to that device. Do I need to open that port on the router? I've tried a few things but so far no success.

int e0
description to LAN
ip add 10.10.10.3 255.255.255.0
ip nat inside

int f0
description to Outside
ip add (wan Ip address) (mask)
ip nat outside

ip access-list extended inbound
permit tcp any any eq (port number i need to forward)

greatly appreciate in info you can give me.

Thanks
 
that's will cover you port, but you will need to do a static address mapping from your outside address to the device inside that your trying to reach.
 
Found these for you.

ip nat inside source static zzz x.x.x.x yyy int qq yyy

zzz = 'tcp' or 'udp'
x.x.x.x = ip address of server (address to which the port is forwarded, a.k.a. inside local address)
yyy = the port number you want to forward
qq = name of the wan interface ('e1' or 'e0' or something, a.k.a. inside global)


Also Found:

ip address 10.10.10.1 255.255.255.0
ip nat inside
no ip mroute-cache
no cdp enable
hold-queue 32 in
hold-queue 100 out
!
interface Ethernet1
ip address 24.199.240.18 255.255.255.252
ip nat outside
ip inspect myfw out
no ip mroute-cache
no cdp enable
!
ip nat inside source list 102 interface Ethernet1 overload
ip nat inside source static tcp 192.168.0.7 80 interface Ethernet1 80
ip classless
ip route 0.0.0.0 0.0.0.0 24.199.240.13
ip http server
!

Hope it helps
 
Paladin256,

Sorry for the late reply. Greatly appreciated. one star coming up.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top