07-22-2008 09:11 AM
I've tried setting up the ASA 5505 multiple times. I am able to access the server from a client but cannot access the internet. As of right now, I have no need to set up a dmz, only inside and outside interfaces. I've also tried different cables but was under the impression that the ASA had auto-sensing capabilities. What I have noticed is that the ASDM "forces" you to set up a dmz. Any ideas on getting re-started? I'm not sure if this a problem but the ASA will be the only device configured between the internal network and the "outside".
Solved! Go to Solution.
07-22-2008 09:49 AM
Here is a basic setup example from console
1. remove the existing config with command " write erase" and reboot
2. you will have a fresh box now... configure as per below example
Suppose your internal LAN is 10.0.0.0/24 and outside public IP is A.B.C.D1/24 and the default GW going towards internet is A.B.C.D2,
int f0/0
no shut
nameif Outside
security-level 0
ip address A.B.C.D1 255.255.255.0
int f0/1
no shut
nameif Inside
security-level 100
ip address 10.0.0.1 255.255.255.0
route outside 0 0 A.B.C.D2
nat(Inside) 5 0 0
global(Outside) 5 interface
07-22-2008 09:49 AM
Here is a basic setup example from console
1. remove the existing config with command " write erase" and reboot
2. you will have a fresh box now... configure as per below example
Suppose your internal LAN is 10.0.0.0/24 and outside public IP is A.B.C.D1/24 and the default GW going towards internet is A.B.C.D2,
int f0/0
no shut
nameif Outside
security-level 0
ip address A.B.C.D1 255.255.255.0
int f0/1
no shut
nameif Inside
security-level 100
ip address 10.0.0.1 255.255.255.0
route outside 0 0 A.B.C.D2
nat(Inside) 5 0 0
global(Outside) 5 interface
07-23-2008 06:10 AM
I can't believe how easy that was. Many thanks. One question I have is why would I use "nat(Inside) 5 0 0" and "global(Outside) 5 interface" as opposed to "nat(Inside) 1 0 0" and "global(Outside) 1 interface? "
07-23-2008 06:27 AM
You can use any number you like, it's a map from a NAT source to an IP(s). You can use more than one too. I typically use one for NATing all internal users to the outside interface IP. I then use another (2 for example) for a specific mapping, like an email server.
nat (inside) 1 0 0
global (outside) 1 interface
nat (inside) 2 10.10.1.5 255.255.255.255
global (outside) 2 [public IP & mask]
Hope that helps.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide