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

Cisco PIX 501 - Setup

Status
Not open for further replies.

cooldude17

IS-IT--Management
Mar 1, 2002
6
US
Hi Guys,

I'm in a bit of a pickle here. Our sys admin was sacked a few days ago, it turns out that he did not configure our Cisco Pix 501. I have been tasked with getting the firewall up and configured correctly. I'm planning on going on a Cisco training course but there are no more available for a few months.
I have tried looking thought the documentation and help on Cisco's site but seem to be confusing myself even more.
What I want is to allow http, SMTP and POP3 traffic in and out and block any unsolicited requests.

Does anyone know of a website that would "talk" me through setting this up or even have a list of commands to enter.

I have an ADSL connection with a Static IP address (No-Nat)

I would be extremely grateful for any help provided.

Thanks in advance

Charles
 
Hi,

Me again. I have attempted to configure the PIX using info from Ciscos site. What I want is to plug the router into the "outside" and connect the NT server to the "inside" and be able to access the internet, SMTP and POP3 from the NT server. The configuration that I've manged to complete so far is below...

PIX Version 6.1(1)
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password RN0caGPp7sS9ZIbk encrypted
passwd RN0caGPp7sS9ZIbk encrypted
hostname tmaxwall
domain-name ciscopix.com
fixup protocol ftp 21
fixup protocol http 80
fixup protocol h323 1720
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol sip 5060
fixup protocol skinny 2000
names
access-list ping_acl permit icmp any any
access-list acl_out permit icmp any any
pager lines 24
logging on
logging buffered debugging
interface ethernet0 10baset
interface ethernet1 10full
mtu outside 1500
mtu inside 1500
ip address outside X.X.X.X X.X.X.X
ip address inside 192.84.7.100 255.255.255.0
ip verify reverse-path interface outside
ip verify reverse-path interface inside
ip audit info action alarm drop reset
ip audit attack action alarm drop reset
pdm location 192.84.7.111 255.255.255.255 inside
pdm logging informational 100
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
access-group ping_acl in interface inside
route outside 0.0.0.0 0.0.0.0 213.2.198.137 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h323 0:05:00 si
p 0:30:00 sip_media 0:02:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server RADIUS protocol radius
http server enable
http 192.84.7.111 255.255.255.255 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
no sysopt route dnat
telnet timeout 5
ssh timeout 5
dhcpd lease 3600
dhcpd ping_timeout 750
terminal width 80
 
Before you go to far I would take a look at the realease notes from Cisco about the latest code. You can upgrade after you config the fw, but you may find that some of what you are trying to accomplish in addition to what you have listed will not be supported by 6.1. A good example is that if your users or a contractor needs to create a client-to-site IPSEC tunnel.

Not sure what the inside IPA is for the server providing the services, but the command...

static (inside,outside) tcp x.x.x.x http 192.84.7.101 http netmask 255.255.255.255 0 0

will allow port forwarding from you outside interface(x.x.x.x) to your inside server. You will also need to add an access-list to allow the traffic to pass such as...

access-list 101 permit tcp any host x.x.x.x eq http

you can also look at
hope that this help!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top