Step-By-Step Configuration Guide For The Cisco Asa 5505 Firewall

The Cisco ASA 5505 Firewall is the smallest model inASA5505(config-if)# security-level 100
the new 5500 Cisco series of hardware appliances.ASA5505(config-if)# ip address 192.168.1.1
Although this model is suitable for small businesses,255.255.255.0
branch offices or even home use, its firewall securityASA5505(config-if)# no shut
capabilities are the same as the biggest models (5510,Step 2: Configure the external interface vlan
5520, 5540 etc). The Adaptive Security technology of(connected to Internet)
the ASA firewalls offers solid and reliable firewallASA5505(config)# interface Vlan 2
protection, advanced application aware security, denialASA5505(config-if)# nameif outside
of service attack protection and much more.ASA5505(config-if)# security-level 0
Moreover, the performance of the ASA 5505ASA5505(config-if)# ip address 200.200.200.1
appliance supports 150Mbps firewall throughput and255.255.255.0
4000 firewall connections per second, which is moreASA5505(config-if)# no shut
than enough for small networks.Step 3: Assign Ethernet 0/0 to Vlan 2
In this article I will explain the basic configuration stepsASA5505(config)# interface Ethernet0/0
needed to setup a Cisco 5505 ASA firewall forASA5505(config-if)# switchport access vlan 2
connecting a small network to the Internet. WeASA5505(config-if)# no shut
assume that our ISP has assigned us a static public IPStep 4: Enable the rest interfaces with no shut
address (e.g 200.200.200.1 as an example) and thatASA5505(config)# interface Ethernet0/1
our internal network range is 192.168.1.0/24. We will useASA5505(config-if)# no shut
Port Address Translation (PAT) to translate ourDo the same for Ethernet0/1 to 0/7.
internal IP addresses to the public address of theStep 5: Configure PAT on the outside interface
outside interface. The difference of the 5505 modelASA5505(config)# global (outside) 1 interface
from the bigger ASA models is that it has an 8-port 10ASA5505(config)# nat (inside) 1 0.0.0.0 0.0.0.0
100 switch which acts as Layer 2 only. That is, youStep 6: Configure default route towards the ISP
can not configure the physical ports as Layer 3 ports,(assume default gateway is 200.200.200.2)
rather you have to create interface Vlans and assignASA5505(config)# route outside 0.0.0.0 0.0.0.0
the Layer 2 interfaces in each VLAN. By default,200.200.200.2 1
interface Ethernet0/0 is assigned to VLAN 2 and it'sThe above steps are the absolutely necessary steps
the outside interface (the one which connects to theyou need to configure for making the appliance
Internet), and the other 7 interfaces (Ethernet0/1 to 0/7)operational. Of course there are much more
are assigned by default to VLAN 1 and are used forconfiguration details that you need to implement in
connecting to the internal network. Let's see the basicorder to enhance the security and functionality of your
configuration setup of the most important steps thatappliance, such as Access Control Lists, Static NAT,
you need to configure.DHCP, DMZ zones, authentication etc.
Step1: Configure the internal interface vlanDownload the best configuration tutorial for any Cisco
ASA5505(config)# interface Vlan 1ASA 5500 Firewall model Here.
ASA5505(config-if)# nameif inside