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

How do i setup a Cisco Pix 515e Firewall for DSL

Status
Not open for further replies.

papote25

Technical User
Jul 2, 2010
1
0
0
US
I'm Having some issues configuring a Cisco Pix Firewall i need some help getting this setup. can some one please assist. i just need basic nating Internet access and dhcp to internal clients. Here is the configuration i'm running on.

!
interface Ethernet0
nameif AT&T
security-level 0
ip address 74.164.6.10 255.255.255.248
ospf cost 10
!
interface Ethernet1
nameif inside
security-level 100
ip address 192.168.1.1 255.255.255.0
ospf cost 10
!
interface Ethernet2
shutdown
no nameif
no security-level
no ip address
!
passwd 2KFQnbNIdI.2KYOU encrypted
ftp mode passive
dns server-group DefaultDNS
domain-name voyze.com
same-security-traffic permit inter-interface
same-security-traffic permit intra-interface
object-group service DM_INLINE_TCP_1 tcp
port-object eq www
port-object eq https
object-group service DM_INLINE_TCP_2 tcp
port-object eq www
port-object eq https
object-group service DM_INLINE_TCP_3 tcp
port-object eq www
port-object eq https
object-group service DM_INLINE_SERVICE_2
service-object tcp eq ftp
service-object udp eq tftp
object-group service DM_INLINE_SERVICE_1
service-object tcp eq ftp
service-object udp eq tftp
access-list inside_access_in extended permit tcp any 68.164.6.8 255.255.255.248 object-group DM_INLINE_TCP_1
access-list AT&T_access_in extended permit tcp any any object-group DM_INLINE_TCP_3
access-list AT&T_access_in extended permit object-group DM_INLINE_SERVICE_1 any any
access-list inside_access_in_1 extended permit tcp any any object-group DM_INLINE_TCP_2
access-list inside_access_in_1 extended permit object-group DM_INLINE_SERVICE_2 any any
access-list inside_nat0_outbound extended permit ip 74.164.6.8 255.255.255.248 any
pager lines 24
logging enable
logging asdm informational
mtu AT&T 1500
mtu inside 1500
icmp unreachable rate-limit 1 burst-size 1
asdm image flash:/asdm-602.bin
no asdm history enable
arp timeout 14400
global (AT&T) 101 192.168.1.1-192.168.1.200 netmask 255.255.255.0
nat (inside) 0 access-list inside_nat0_outbound
nat (inside) 101 74.164.6.8 255.255.255.248
access-group AT&T_access_in in interface AT&T per-user-override
access-group inside_access_in_1 in interface inside per-user-override
route AT&T 0.0.0.0 0.0.0.0 74.164.6.9 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
timeout uauth 0:05:00 absolute
dynamic-access-policy-record DfltAccessPolicy
http server enable
http 192.168.1.0 255.255.255.0 inside
no snmp-server location
no snmp-server contact
snmp-server enable traps snmp authentication linkup linkdown coldstart
no crypto isakmp nat-traversal
client-update enable
telnet timeout 5
ssh timeout 5
console timeout 0
dhcpd address 192.168.1.100-192.168.1.200 inside
dhcpd dns 68.94.157.1 interface inside
dhcpd enable inside
!
threat-detection basic-threat
threat-detection statistics port
threat-detection statistics protocol
threat-detection statistics access-list
!
class-map inspection_default
match default-inspection-traffic
!
!
policy-map type inspect dns preset_dns_map
parameters
message-length maximum 512
policy-map global_policy
class inspection_default
inspect dns preset_dns_map
inspect ftp
inspect h323 h225
inspect h323 ras
inspect rsh
inspect rtsp
inspect esmtp
inspect sqlnet
inspect skinny
inspect sunrpc
inspect xdmcp
inspect sip
inspect netbios
inspect tftp
!
service-policy global_policy global
prompt hostname context
Cryptochecksum:51ef296083714caa6c753b0867bcf405
: end
 
this
Code:
global (AT&T) 101 192.168.1.1-192.168.1.200 netmask 255.255.255.0
nat (inside) 0 access-list inside_nat0_outbound
nat (inside) 101 74.164.6.8 255.255.255.248
should be this
Code:
global (AT&T) 101 interface
nat (inside) 0 access-list inside_nat0_outbound
nat (inside) 101 192.168.1.1-192.168.1.200 netmask 255.255.255.0

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top