Link to home
Start Free TrialLog in
Avatar of K6465
K6465

asked on

Port forward from Interface PAT on Cisco PIX 506E to internal IP

We are running a Cisco PIX 506E and need to forward port 1010 to a device internally. We already have 1 port forwarded on the Interface IP which I think is part of my problem.  I'm fairly familiar with the PDM, but it won't let me forward a port without first creating a NAT rule with one of our external IP's. I tried to assign the internal device the IP of the interface but the forward does not appear to work after that.

I've posted a sample of some of the show run, the one I'm trying to get to work is the SERVER entry.

access-list outside_access_in permit tcp any host SERVER eq 1010

Any suggestions on how to set this up would be great. The more info the better on the configuration as I'm not an expert with the CLI.

Thanks!
access-list outside_access_in permit udp any host d.d.d.8 eq nameserver
access-list outside_access_in permit tcp any host a.a.a.5 eq 3389
access-list outside_access_in permit tcp any host b.b.b.6 eq smtp
access-list outside_access_in permit tcp any host b.b.b.6 eq pop3
access-list outside_access_in permit tcp any host b.b.b.6 eq www
access-list outside_access_in permit tcp any host b.b.b.6 eq https
access-list outside_access_in permit udp any host b.b.b.6 eq nameserver
access-list outside_access_in permit tcp any host c.c.c.7 eq 3389
access-list outside_access_in permit tcp any host c.c.c.7 eq www
access-list outside_access_in permit tcp any host c.c.c.7 eq https
access-list outside_access_in permit tcp any host SERVER eq 1010
 
ip address outside z.z.z.4 255.255.255.248
 
global (outside) 1 interface
nat (inside) 0 access-list inside_outbound_nat0_acl
nat (inside) 0 SERVER 255.255.255.255 0 0
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
static (inside,outside) a.a.a.5 Term_Serv netmask 255.255.255.255 0
0
static (inside,outside) b.b.b.6 Email netmask 255.255.255.255 0 0
static (inside,outside) c.c.c.7 XXXPACS netmask 255.255.255.255 0 0
static (inside,outside) d.d.d.8 XXX_DC netmask 255.255.255.255 0 0
access-group outside_access_in in interface outside

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of JFrederick29
JFrederick29
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of K6465
K6465

ASKER

JFrederick, I will give that a shot here in an hour or two and let you know how it goes. Thanks!