cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2709
Views
25
Helpful
17
Replies

Network setup with Cisco ASA 5510

kingnation
Level 1
Level 1

Hello guys,

 

i need your help and idea to setup a network for a small company. Right now the company having a internet connection from an ISP using the ISP's modem. They would like to place a Cisco ASA 5510 after the modem and would like to connect the Cisco ASA to a switch and from switch will go to LAN.Below is the idea to setup the network connection. Please let me know if it is possible to setup like this.

 

 

17 Replies 17

Seb Rupik
VIP Alumni
VIP Alumni

Hi there,

That would be a fairly standard setup, although ASA are typically deployed at 'large' branch sites (going by Cisco design docs). You state this is for a small company.

Unless you have have already purchased the 5510 perhaps look at using an ISR router and configuring Zone Based Firewalling on it.

 

cheers,

Seb.

Hey thanks for the reply. Actually they already purchase a ASA 5510 and they ask me to setup connection based on the diagram. The ISP has given a /30 ip. Can u guide me on how to start? im not good in cisco commands.Is there any doc that i can refer?

Ok thank you sir. Im not sure about the public the ISP provide them. They didnt tell me about it. What they told me is that the ISP gives them a /30. While for internal network they plan to use private ip 192.168.10.0/24. The want all the lan connected pc has ip from this range.

 

So basically what they want is to have a outside public connection and inside private connection. Thank you

Connecting ASA Gi0/0 to the ISP router and Gi0/1 to the HP switch (to an access mode switchport), try this config:

!
interface GigabitEthernet0/0
  nameif OUTSIDE
  security-level 0
  ip address <ISP_SUBNET> 255.255.255.252
  no shutdown
!
interface GigabitEthernet0/1
  nameif INSIDE
  security-level 100
  ip address 192.168.10.254 255.255.255.0
  no shutdown 
!
!
nat (INSIDE,OUTSIDE) after-auto source dynamic any interface
!
dhcpd address 192.168.10.1-192.168.10.253 INSIDE
dhcpd dns 8.8.8.8
dhcpd option 3 ip 192.168.10.254
dhcpd enable INSIDE
!
aaa authentication ssh console LOCAL
!
ssh 192.168.10.0 255.255.255.0 INSIDE
!
route OUTSIDE 0.0.0.0 0.0.0.0 <ISP_ROUTER_IP>
!

You may want ot consider using ASDM if you've never configred an ASA before.

 

cheers,

Seb.

ok thank you so much sir...i will try and will let you know if it works. Thank you for your time

Between i dont understand this line

 

nat (INSIDE,OUTSIDE) after-auto source dynamic any interface

can you explain to me sir? 

It will perform dynamic PAT for any device behind the INSIDE interface which is being routed via the OUTSIDE interface.

I have added the after-auto command to ensure that this NAT rule is one of the last to be hit, assuming you add object NAT rules at a later date.

 

You ISP router probably has NAT funationality, but you would need to add static routes to so that to it could route packets back to the ASA for the 192.168.10.0/24 subnet. By doing the NAT on the ASA we do not need to adjust the configuration the ISP router.

 

Please rate helpful posts :)

Ok thank you sir.. I will try and let u know through this post. Thank you

Hello Sir,

 

If im done with the config one ASA what should do on switch side. Is it i just need to create a vlan and connect it using switchport mode access? should i assign any ip on the switch side and on the interface from cisco asa that connects to switch? Thank you sir

Hi there,

Just conenct the switch to Gi0/1 on the ASA with switchport mode access. No need to configure an IP for the VLAN on the switch. The switch will just operate at Layer2 for the VLAN, the ASA will be the gateway.

 

cheers,

Seb.

Hello Sir, 

Sorry for my very late reply. I was out for a business trip. Im going to install the Cisco ASA this week and before that i tried the setup using cisco packet tracer. I use a easy setup and yet there is a log error message in cisco asa. Attached is the picture for the error and the network diagram. Please assist me on this. Thank you

I able to ping ASA's local internal ip from PC, but i couldn't ping 192.168.200.21/30 ip which i assigned to Router and 192.168.200.22/30 which is the ASA. Is there anything i need to do? or should i do a routing from router to another router using ospf or rip to simulate the real time scenario? Please let me know sir. Thank you.

Hi there,

What is the configuration for Fa0/1 on Switch3 and Eth0/1 on the ASA?

 

Regarding the the issue of not being able to ping interfaces on the 192.168.200.20 /30 subnet, issue the following command on the ASA:

!
fixup protocol icmp
!

...to allow inspection of ICMP traffic and permit its flow through the ASA.

cheers,

Seb.