<?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>Be A Cisco Expert Without Course or Certification &#187; Firewall</title>
	<atom:link href="http://ciscogeek.org/category/firewall/feed/" rel="self" type="application/rss+xml" />
	<link>http://ciscogeek.org</link>
	<description>FREE Tons Of Cisco Configuration Example</description>
	<lastBuildDate>Fri, 24 Jul 2009 07:09:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Accept Inbound Traffic To Servers Behind NAT</title>
		<link>http://ciscogeek.org/accept-inbound-traffic-behind-nat/</link>
		<comments>http://ciscogeek.org/accept-inbound-traffic-behind-nat/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 08:09:39 +0000</pubDate>
		<dc:creator>Yanurmal</dc:creator>
				<category><![CDATA[Firewall]]></category>
		<category><![CDATA[Router]]></category>
		<category><![CDATA[inbound traffic]]></category>
		<category><![CDATA[nat]]></category>

		<guid isPermaLink="false">http://ciscogeek.org/?p=82</guid>
		<description><![CDATA[This config to make inbound traffic to a web server in local network behind NAT. Req: - Private IP Address plan (eg. 192.168.1.0/24) - Public IP Address plan (eg.100.1.2.3/30) - Web Server (port 80) IP Address (eg.192.168.1.10) - Standard NAT Config work properly All incoming web traffic from the Internet that comes to 100.1.2.3 will [...]]]></description>
			<content:encoded><![CDATA[<p>This config to make inbound traffic to a web server in local network behind NAT.</p>
<p>Req:<br />
- Private IP Address plan (eg. 192.168.1.0/24)<br />
- Public IP Address plan (eg.100.1.2.3/30)<br />
- Web Server (port 80) IP Address (eg.192.168.1.10)<br />
- Standard NAT Config work properly</p>
<p>All incoming web traffic from the Internet that comes to 100.1.2.3 will be forwarded to 192.168.1.10</p>
<p>hostname CiscoNAT<br />
!<br />
enable secret 5 KjhKJGkj$57JHkkl98KJH<br />
!<br />
ip subnet zero<br />
!<br />
interface FastEthernet0/0<br />
description LAN Interface<br />
ip address <strong>192.168.1.254</strong> 255.255.255.0<br />
ip nat inside<br />
duplex auto<br />
speed auto<br />
!<br />
interface <strong>Serial0</strong><br />
description WAN Interface<br />
ip address <strong>100.1.2.3</strong> 255.255.255.248<br />
ip nat outside<br />
<strong>ip access-group 101 in</strong><br />
!<br />
<strong>ip nat inside source static 192.168.1.10 80 interface Serial0</strong><br />
!<br />
access-list 101 deny ip any host 255.255.255.255<br />
<strong>access-list 101 permit tcp any any eq 80</strong><br />
!<br />
line con0<br />
line vty 0 4<br />
login<br />
password cisco<br />
!<br />
end</p>
<img src="http://ciscogeek.org/?ak_action=api_record_view&id=82&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://ciscogeek.org/accept-inbound-traffic-behind-nat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CLI Simple Cisco ASA/PIX Config</title>
		<link>http://ciscogeek.org/cli-simple-cisco-asapix-config/</link>
		<comments>http://ciscogeek.org/cli-simple-cisco-asapix-config/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 08:25:15 +0000</pubDate>
		<dc:creator>Yanurmal</dc:creator>
				<category><![CDATA[Firewall]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[pix]]></category>

		<guid isPermaLink="false">http://ciscogeek.org/cli-simple-cisco-asapix-config/</guid>
		<description><![CDATA[This config is for simple config ASA/PIX firewall with 2 network interface. One for outside (Internet) and other for inside (LAN). All traffic from internal to external is accepted. All traffic from external to internal is droped. Requirement: - Cisco ASA/PIX with 2 network interface - IP Public/Outside IP Address (ie: 65.1.1.x) - IP Private/Inside [...]]]></description>
			<content:encoded><![CDATA[<p>This config is for simple config ASA/PIX firewall with 2 network interface. One for outside (Internet) and other for inside (LAN). All traffic from internal to external is accepted. All traffic from external to internal is droped.</p>
<p>Requirement:<br />
- Cisco ASA/PIX with 2 network interface<br />
- IP Public/Outside IP Address (ie: 65.1.1.x)<br />
- IP Private/Inside IP Address (ie: 192.168.1.x)<br />
- Next hop/Gateway IP Address (ie: 65.1.1.1)<br />
- PIX/ASA ver.7.x or above</p>
<p>Firewall&gt; enable<br />
Password:<br />
Firewall#<br />
Firewall# config terminal<br />
Firewall(config)# interface Ethernet0<br />
Firewall(config-if)# nameif outside<br />
Firewall(config-if)# security-level 0<br />
Firewall(config-if)# ip address 65.1.1.2 255.255.255.0<br />
Firewall(config-if)# speed 100<br />
Firewall(config-if)# duplex full<br />
Firewall(config-if)# exit</p>
<p>Firewall(config)# interface Ethernet1<br />
Firewall(config-if)# nameif inside<br />
Firewall(config-if)# security-level 100<br />
Firewall(config-if)# ip address 192.168.1.1 255.255.255.0<br />
Firewall(config-if)# speed 100<br />
Firewall(config-if)# duplex full</p>
<p>Firewall(config)# nat (inside) 1 0.0.0.0 0.0.0.0<br />
Firewall(config)# global (outside) 1 65.1.1.3 netmask 255.255.255.224</p>
<p>Firewall(config)# route outside 0.0.0.0 0.0.0.0 65.1.1.1</p>
<img src="http://ciscogeek.org/?ak_action=api_record_view&id=50&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://ciscogeek.org/cli-simple-cisco-asapix-config/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Activate ASDM as GUI Interface for Cisco ASA/PIX Firewall</title>
		<link>http://ciscogeek.org/activate-asdm-as-gui-interface-for-cisco-asapix-firewall/</link>
		<comments>http://ciscogeek.org/activate-asdm-as-gui-interface-for-cisco-asapix-firewall/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 15:44:34 +0000</pubDate>
		<dc:creator>Yanurmal</dc:creator>
				<category><![CDATA[Firewall]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[asdm]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[pix]]></category>

		<guid isPermaLink="false">http://ciscogeek.org/?p=45</guid>
		<description><![CDATA[pixfirewall&#62; enable Password: pixfirewall# configure terminal pixfirewall(Config)# interface ethernet1 pixfirewall(Config-if)# nameif inside pixfirewall(Config-if)# ip address 192.168.1.1 255.255.255.0 pixfirewall(Config-if)# no shutdown pixfirewall(Config-if)# Activate ASDM and enable http server. pixfirewall(Config)# asdm image flash:/asdm.bin. pixfirewall(Config)# http server enable. Open a connection for your PC. Example your pc IP address is 192.168.1.2 pixfirewall(Config)# http 192.168.1.2 255.255.255.255 inside Make sure [...]]]></description>
			<content:encoded><![CDATA[<p>pixfirewall&gt; enable<br />
Password:<br />
pixfirewall# configure terminal<br />
pixfirewall(Config)# interface ethernet1<br />
pixfirewall(Config-if)# nameif inside<br />
pixfirewall(Config-if)# ip address 192.168.1.1 255.255.255.0<br />
pixfirewall(Config-if)# no shutdown<br />
pixfirewall(Config-if)#</p>
<p><em>Activate ASDM and enable http server.</em></p>
<p>pixfirewall(Config)# asdm image flash:/asdm.bin.<br />
pixfirewall(Config)# http server enable.</p>
<p><em>Open a connection for your PC. Example your pc IP address is 192.168.1.2</em></p>
<p>pixfirewall(Config)# http 192.168.1.2 255.255.255.255 inside</p>
<p><em>Make sure all your config running properly.</em></p>
<p>pixfirewall(Config)# show running http<br />
http server enabled<br />
http 192.168.1.2 255.255.255.255 inside<br />
pixfirewall(Config)#</p>
<p><em>Now your Cisco ASA/PIX can be access from your PC.<br />
Make sure your PC and Firewall has connected and open your web browser then enter this address</em> <a href="https://192.168.1.1/admin">https://192.168.1.1/admin</a></p>
<img src="http://ciscogeek.org/?ak_action=api_record_view&id=45&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://ciscogeek.org/activate-asdm-as-gui-interface-for-cisco-asapix-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

