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

PIX Example with DSL or Cable internet access [no cco access]

Status
Not open for further replies.

csdsc

IS-IT--Management
May 26, 2001
13
0
0
GB
could anyone please refer me to an example of a PIX 515 connected to a DSL or Cablemodem where external is DHCP and internal can access any UDP or TCP external using NAT or any means possible - let me reiterate i have no CCO account and I have found no examples of this on cisco site yet
 
Here is a config I use on my PIX 506 connected to a cable modem using DHCP and NAT/PAT.. This gets all inside hosts out to the internet:

nameif ethernet0 outside security0
nameif ethernet1 inside security100

interface ethernet0 10baset
interface ethernet1 10baset

ip address outside dhcp setroute
ip address inside 192.168.1.1 255.255.255.0

global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0 0 0

Add the following if you want to issue IP's to inside hosts:

dhcpd address 192.168.1.10-192.168.1.20 inside
dhcpd dns <DNS1 of ISP> <DNS2 of ISP>
dhcpd lease 99999999
dhcpd ping_timeout 750
dhcpd enable inside


Hope this helps a little!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top