<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Networks Training &#187; Cisco ASA Firewall ebook</title>
	<atom:link href="http://www.networkstraining.com/category/cisco-asa-firewall-ebook/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.networkstraining.com</link>
	<description>IP Networks Training and Tutorials</description>
	<lastBuildDate>Sun, 15 Jan 2012 10:35:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Configure a Cisco ASA 5510 Firewall &#8211; Basic Configuration Tutorial</title>
		<link>http://www.networkstraining.com/how-to-configure-a-cisco-asa-5510-firewall-basic-configuration-tutorial/</link>
		<comments>http://www.networkstraining.com/how-to-configure-a-cisco-asa-5510-firewall-basic-configuration-tutorial/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 18:51:49 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco ASA Firewall ebook]]></category>
		<category><![CDATA[Cisco Firewalls]]></category>
		<category><![CDATA[asa 5510]]></category>
		<category><![CDATA[asa 5510 configuration]]></category>
		<category><![CDATA[asa 5510 tutorial]]></category>
		<category><![CDATA[cisco asa 5510]]></category>
		<category><![CDATA[how to configure asa 5510]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=463</guid>
		<description><![CDATA[This article gets back to the basics regarding Cisco ASA firewalls. I&#8217;m offering you here a basic configuration tutorial for the Cisco ASA 5510 security appliance. This device is the second model in the ASA series (ASA 5505, 5510, 5520 etc) and is fairly popular since is intended for small to medium enterprises. Like the [...]]]></description>
			<content:encoded><![CDATA[<p>This article gets back to the basics regarding Cisco ASA firewalls. I&#8217;m offering you here a basic configuration tutorial for the <strong>Cisco ASA 5510</strong> security appliance. This device is the second model in the ASA series (ASA 5505, 5510, 5520 etc) and is fairly popular since is intended for small to medium enterprises. Like the smallest ASA 5505 model, the 5510 comes with two license options: The Base license and the Security Plus license. The second one (security plus) provides some performance and hardware enhancements over the base license, such as 130,000 Maximum firewall connections (instead of 50,000), 100 Maximum VLANs (instead of 50), Failover Redundancy, etc. Also, the security plus license enables two of the five firewall network ports to work as 10/100/1000 instead of only 10/100.</p>
<p>Next we will see a simple Internet Access scenario which will help us to understand the basic steps needed to setup an ASA 5510. Assume that we are assigned a static public IP address 100.100.100.1 from our ISP. Also, the internal LAN network belongs to subnet 192.168.10.0/24. Interface Ethernet0/0 will be connected to the outside (towards the ISP), and Ethernet0/1 will be connected to the Inside LAN switch. Refer to the diagram below for our example scenario.</p>
<p style="text-align: center;"><img class="aligncenter" title="cisco asa 5510 basic configuration tutorial" src="http://www.networkstraining.com/images/asa-5510-basic-configuration.jpg" alt="" width="450" height="450" /></p>
<p>The firewall will be configured to supply IP addresses dynamically (using DHCP) to the internal hosts. All outbound communication (from inside to outside) will be translated using Port Address Translation (PAT) on the outside public interface. Let&#8217;s see a snippet of the required configuration steps for this basic scenario:</p>
<p><strong>Step1: Configure a privileged level password (enable password)</strong></p>
<p>By default there is no password for accessing the ASA firewall, so the first step before doing anything else is to configure a privileged level password, which will be needed to allow subsequent access to the appliance. Configure this under Configuration Mode:</p>
<p>ASA5510(config)# enable password mysecretpassword</p>
<p><strong>Step2: Configure the public outside interface</strong></p>
<p>ASA5510(config)# interface Ethernet0/0<br />
ASA5510(config-if)# nameif outside<br />
ASA5510(config-if)# security-level 0<br />
ASA5510(config-if)# ip address 100.100.100.1 255.255.255.252<br />
ASA5510(config-if)# no shut</p>
<p><strong>Step3: Configure the trusted internal interface</strong></p>
<p>ASA5510(config)# interface Ethernet0/1<br />
ASA5510(config-if)# nameif inside<br />
ASA5510(config-if)# security-level 100<br />
ASA5510(config-if)# ip address 192.168.10.1 255.255.255.0<br />
ASA5510(config-if)# no shut</p>
<p><strong>Step 4: Configure PAT on the outside interface</strong></p>
<p>ASA5510(config)# global (outside) 1 interface<br />
ASA5510(config)# nat (inside) 1 0.0.0.0 0.0.0.0</p>
<p><span style="color: #ff0000;"><strong>UPDATE for ASA Version 8.3</strong></span></p>
<p>From March 2010, Cisco announced the new Cisco ASA software version 8.3. This version introduced several important configuration changes, especially on the NAT/PAT mechanism. The &#8220;global&#8221; command is no longer supported. NAT (static and dynamic) and PAT are configured under network objects. The PAT configuration below is for ASA 8.3 and later:</p>
<p><span style="color: #ff0000;">object network obj_any<br />
subnet 0.0.0.0 0.0.0.0<br />
nat (inside,outside) dynamic interface</span></p>
<p><strong>Step 5: Configure Default Route towards the ISP (assume default gateway is 100.100.100.2)</strong></p>
<p>ASA5510(config)# route outside 0.0.0.0 0.0.0.0 100.100.100.2 1</p>
<p><strong>Step 6: Configure the firewall to assign internal IP and DNS address to hosts using DHCP</strong></p>
<p>ASA5510(config)# dhcpd dns 200.200.200.10<br />
ASA5510(config)# dhcpd address 192.168.10.10-192.168.10.200 inside<br />
ASA5510(config)# dhcpd enable inside</p>
<p>The above basic configuration is just the beginning for making the appliance operational. There are many more configuration features that you need to implement to increase the security of your network, such as Static and Dynamic NAT, Access Control Lists to control traffic flow, DMZ zones, VPN etc. I just tried to offer you a starting point for a basic configuration from where you can build your knowledge further. For a more complete practical guide about Cisco ASA Firewall configuration I suggest you to read the &#8220;<a title="Cisco ASA Firewall Fundamentals" rel="nofollow" href="http://www.networkstraining.com/ciscoasaebook.php" target="_blank"><strong>Cisco ASA Firewall Fundamentals &#8211; Second Edition</strong></a>&#8221; ebook at the link <a title="Cisco ASA Configuration ebook" rel="nofollow" href="http://www.networkstraining.com/ciscoasaebook.php" target="_self"><strong>HERE</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/how-to-configure-a-cisco-asa-5510-firewall-basic-configuration-tutorial/feed/</wfw:commentRss>
		<slash:comments>77</slash:comments>
		</item>
		<item>
		<title>Cisco ASA Firewall Fundamentals ebook : Rapidshare and Torrent Free Download</title>
		<link>http://www.networkstraining.com/cisco-asa-firewall-fundamentals-ebook-rapidshare-and-torrent-free-download/</link>
		<comments>http://www.networkstraining.com/cisco-asa-firewall-fundamentals-ebook-rapidshare-and-torrent-free-download/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 19:24:20 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco ASA Firewall ebook]]></category>
		<category><![CDATA[asa fundamentals ebook free download]]></category>
		<category><![CDATA[asa fundamentals ebook rapidshare]]></category>
		<category><![CDATA[asa fundamentals ebook torrent]]></category>
		<category><![CDATA[cisco asa firewall fundamentals ebook free download]]></category>
		<category><![CDATA[harris andrea asa firewall fundamentals]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=403</guid>
		<description><![CDATA[The &#8220;Cisco ASA Firewall Fundamentals&#8221; ebook, that I have authored and been selling on this website, took me many hours of hard work to write and promote. In addition to the work effort of writing this ebook, it encompasses also enormous value from many years of experience in administering and implementing Cisco ASA firewalls. Why [...]]]></description>
			<content:encoded><![CDATA[
<p>The &#8220;<strong>Cisco ASA Firewall Fundamentals</strong>&#8221; ebook, that I have authored and been selling on this website, took me many hours of hard work to write and promote. In addition to the work effort of writing this ebook, it encompasses also enormous value from many years of experience in administering and implementing Cisco ASA firewalls.</p>
<p>Why am I saying all that? Because I feel angry and pity that many people try to find and download my ebook for free from various torrent sites or Rapidshare. My website statistics and keyword research revealed all this activity from people trying to get my ebook for free. I hate to say that but I will have to resort to legal measures if I find that my ebook is being shared on peer-to-peer or download sites. Believe me, paying $29 bucks for an ebook like that is nothing compared to the valuable knowledge that you will gain by purchasing it. Moreover, the updated second edition ebook is probably the only ASA tutorial available that covers all latest Cisco ASA version 8.3 features which are different from the older versions (for example NAT, ACL etc).</p>
<p>I believe that the best reward for my efforts to write this Cisco ASA tutorial are the excellent feedback and comments that I receive everyday in my email and on this blog from people who purchased the ebook. Take a look below for some comments from happy customers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/cisco-asa-firewall-fundamentals-ebook-rapidshare-and-torrent-free-download/feed/</wfw:commentRss>
		<slash:comments>89</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.networkstraining.com @ 2012-02-04 07:29:20 -->
