How To Configure Dual Isp Backup With Cisco Asa 5505 Firewall

article I will explain how to configure a Cisco ASAASA5505(config)# interface ethernet 0/1
5505 firewall to connect to dual ISPs forASA5505(config-if)# switchport access vlan 1
redundancy purposes. Suppose that we have aASA5505(config-if)# no shutdown
primary high-speed ISP connection, and a cheaperASA5505(config)# interface ethernet 0/2
DSL line connected to a Secondary ISP. NormallyASA5505(config-if)# switchport access vlan 3
all of our traffic should flow through the primaryASA5505(config-if)# no shutdown
ISP. If the primary link fails, the secondary DSLASA5505(config)# interface vlan 1
connection should be utilized for Internet access.ASA5505(config-if)# nameif inside
Please note that the above scenario is valid onlyASA5505(config-if)# security-level 100
for Outbound traffic (i.e. from our internalASA5505(config-if)# ip address 192.168.1.1
network towards the Internet). The functionality255.255.255.0
that I will describe below works for ASA 5505ASA5505(config-if)# no shutdown
version 7.2(1) and above.ASA5505(config)# interface vlan 2
Assume that we are assigned a static Public IPASA5505(config-if)# nameif primary-isp
address of 100.100.100.1 from Primary ISP andASA5505(config-if)# security-level 0
another static Public IP address of 200.200.200.1ASA5505(config-if)# ip address 100.100.100.1
from our Backup ISP. We will use Ethernet 0/0255.255.255.0
for connecting to Primary ISP, Ethernet 0/1 forASA5505(config-if)# backup interface vlan 3
connecting to our Internal LAN, and Ethernet 0/2ASA5505(config-if)# no shutdown
for connecting to our Backup ISP. We will createASA5505(config)# interface vlan 3
three VLANs to support our configuration. VLAN1ASA5505(config-if)# nameif backup-isp
(the default Vlan) will be assigned to Ethernet 0/1ASA5505(config-if)# security-level 1
(inside), VLAN2 will be assigned to Ethernet 0/0ASA5505(config-if)# ip address 200.200.200.1
(primary-isp) and VLAN3 will be assigned to255.255.255.0
Ethernet 0/2 (backup-isp). We also have toASA5505(config-if)# no shutdown
configure two static default routes pointing to theASA5505(config)# route primary-isp 0.0.0.0 0.0.0.0
ISP gateway address. The primary ISP default100.100.100.2 1
route shall have a metric of 1 and the backup ISPASA5505(config)# route backup-isp 0.0.0.0 0.0.0.0
default route shall have a metric bigger than 1200.200.200.2 2
(let's say 2). Let us see the configuration below:DOWNLOAD the best step-by-step configuration
ASA5505(config)# interface ethernet 0/0tutorial for any Cisco ASA 5500 Firewall model
ASA5505(config-if)# switchport access vlan 2Here.
ASA5505(config-if)# no shutdown