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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco Pix 506e Firewall/Router

Status
Not open for further replies.

levelistic

IS-IT--Management
Apr 18, 2013
1
US
I am trying to open a port in my database and have tried multiple commands and access rules and its not able to open the port. We need an outside vendor to have access to port 3691.

Some of the commands that I have entered and have not worked are:

access-list outside_access_in permit tcp any any eq 3691

I have also tried:

access-list outside_access_in permit tcp host xxx.xx.xx.x any eq 3691

But none have worked. Was wondering if anyone can steer me int he right direction.
 
is it public ip address -->PIX firewall --> Public ip address?

or are you also nat'ing? if yes then you will have to create a proper nat rule.
otherwise, sh run .


We must go always forward, not backward
always up, not down and always twirling twirling towards infinity.
 
Looks like you need a static PAT...

static(inside,outside) xxx.xx.xx.x 3691 y.y.y.y netmask 255.255.255.255

xxx.xx.xx.x=public IP, y.y.y.y=private of your server, whatever hosting whatever at port 3691

ip access-list extended IP-Options-and-Powerball
deny ip any any winning-powerball-ticket
permit ip any any option any-options
!
class-map ACL-Options-and-Powerball
match access-group name IP-Options-and-Powerball
!
policy-map CoPP-POLICY
class ACL-Options-and-Powerball
drop
!
control-plane
service-policy input CoPP-POLICY
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top