<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Networks Training</title>
	<atom:link href="http://www.networkstraining.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.networkstraining.com</link>
	<description>IP Networks Training and Tutorials</description>
	<lastBuildDate>Thu, 02 Sep 2010 06:01:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on How to Configure a Cisco ASA 5510 Firewall &#8211; Basic Configuration Tutorial by Blog Admin</title>
		<link>http://www.networkstraining.com/how-to-configure-a-cisco-asa-5510-firewall-basic-configuration-tutorial/comment-page-1/#comment-636</link>
		<dc:creator>Blog Admin</dc:creator>
		<pubDate>Thu, 02 Sep 2010 06:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=463#comment-636</guid>
		<description>To allow communication between any two ASA interfaces (security zones) you need two things: 1) proper NAT 2)proper access lists.

So, yes if you have the proper nat in place between DMZ and inside (provided that nat-control is enabled) then you just need to apply the correct access list on the DMZ interface to allow web server to communicate with the internal SQL server.</description>
		<content:encoded><![CDATA[<p>To allow communication between any two ASA interfaces (security zones) you need two things: 1) proper NAT 2)proper access lists.</p>
<p>So, yes if you have the proper nat in place between DMZ and inside (provided that nat-control is enabled) then you just need to apply the correct access list on the DMZ interface to allow web server to communicate with the internal SQL server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Configure a Cisco ASA 5510 Firewall &#8211; Basic Configuration Tutorial by andrew</title>
		<link>http://www.networkstraining.com/how-to-configure-a-cisco-asa-5510-firewall-basic-configuration-tutorial/comment-page-1/#comment-633</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Wed, 01 Sep 2010 13:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=463#comment-633</guid>
		<description>Blog Admin,

Thanks. Regarding the access lists, well i have exchange server on the internal network as well and I am also planning to add an MS SQL 2008 internally. On the DMZ, I was thinking of putting up a web/ftp server. How do I treat this in access list as well? Excuse my ignorance, i am novice to Cisco.

Thanks</description>
		<content:encoded><![CDATA[<p>Blog Admin,</p>
<p>Thanks. Regarding the access lists, well i have exchange server on the internal network as well and I am also planning to add an MS SQL 2008 internally. On the DMZ, I was thinking of putting up a web/ftp server. How do I treat this in access list as well? Excuse my ignorance, i am novice to Cisco.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Blocking peer-to-peer using Cisco IOS NBAR by Aakil</title>
		<link>http://www.networkstraining.com/blocking-peer-to-peer-using-cisco-ios-nbar/comment-page-1/#comment-625</link>
		<dc:creator>Aakil</dc:creator>
		<pubDate>Tue, 31 Aug 2010 08:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=206#comment-625</guid>
		<description>I found this article very accurate and useful too for those student and security professional who are implementing application layer security services on a Layer 3 device. 

With NBAR the PDLM feature is very useful.

Kind Regards,
Aakil</description>
		<content:encoded><![CDATA[<p>I found this article very accurate and useful too for those student and security professional who are implementing application layer security services on a Layer 3 device. </p>
<p>With NBAR the PDLM feature is very useful.</p>
<p>Kind Regards,<br />
Aakil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco Router-on-a-stick with Switch by Blog Admin</title>
		<link>http://www.networkstraining.com/cisco-router-on-a-stick-with-switch/comment-page-1/#comment-597</link>
		<dc:creator>Blog Admin</dc:creator>
		<pubDate>Wed, 25 Aug 2010 04:58:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=77#comment-597</guid>
		<description>Yeap, Warren is right. I haven&#039;t played much with 2960 switches but seems they support only 802.1q as Vlan protocol, so you just need to specify &quot;&lt;strong&gt;switchport mode trunk&lt;/strong&gt;&quot; only in your configuration.</description>
		<content:encoded><![CDATA[<p>Yeap, Warren is right. I haven&#8217;t played much with 2960 switches but seems they support only 802.1q as Vlan protocol, so you just need to specify &#8220;<strong>switchport mode trunk</strong>&#8221; only in your configuration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco Router-on-a-stick with Switch by Warren Sullivan</title>
		<link>http://www.networkstraining.com/cisco-router-on-a-stick-with-switch/comment-page-1/#comment-596</link>
		<dc:creator>Warren Sullivan</dc:creator>
		<pubDate>Wed, 25 Aug 2010 03:30:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=77#comment-596</guid>
		<description>Jack,
You only have to enter the command:
(config-if)# switchport trunk encapsulation dot1q
if your switch supports 203.1q AND ISL (ISL is an old school cisco proprietry protocol)
If the option isnt there, it only supports 203.1q so there is no need to specify 203.1q, just skip the line....as in:
# conf t
(config)# vlan database
(config-vlan)# vlan 10 name RED
(config-vlan)# vlan 20 name GREEN
(config-vlan)# exit
(config)# interface FastEthernet1/0/1
(config-if)# description trunk-to-router-on-a-stick
(config-if)# switchport mode trunk
(config-if)# exit
(config)# interface FastEthernet1/0/2
(config-if)# description connection-to-RED-VLAN
(config-if)# switchport mode access
(config-if)# switchport access vlan 10
(config-if)# exit
(config)# interface FastEthernet1/0/3
(config-if)# description connection-to-GREEN-VLAN
(config-if)# switchport mode access
(config-if)# switchport access vlan 20
(config-if)# exit
(config)# exit
# copy run start</description>
		<content:encoded><![CDATA[<p>Jack,<br />
You only have to enter the command:<br />
(config-if)# switchport trunk encapsulation dot1q<br />
if your switch supports 203.1q AND ISL (ISL is an old school cisco proprietry protocol)<br />
If the option isnt there, it only supports 203.1q so there is no need to specify 203.1q, just skip the line&#8230;.as in:<br />
# conf t<br />
(config)# vlan database<br />
(config-vlan)# vlan 10 name RED<br />
(config-vlan)# vlan 20 name GREEN<br />
(config-vlan)# exit<br />
(config)# interface FastEthernet1/0/1<br />
(config-if)# description trunk-to-router-on-a-stick<br />
(config-if)# switchport mode trunk<br />
(config-if)# exit<br />
(config)# interface FastEthernet1/0/2<br />
(config-if)# description connection-to-RED-VLAN<br />
(config-if)# switchport mode access<br />
(config-if)# switchport access vlan 10<br />
(config-if)# exit<br />
(config)# interface FastEthernet1/0/3<br />
(config-if)# description connection-to-GREEN-VLAN<br />
(config-if)# switchport mode access<br />
(config-if)# switchport access vlan 20<br />
(config-if)# exit<br />
(config)# exit<br />
# copy run start</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Configure Static Routing on Cisco Routers by Blog Admin</title>
		<link>http://www.networkstraining.com/how-to-configure-static-routing-on-cisco-routers/comment-page-1/#comment-562</link>
		<dc:creator>Blog Admin</dc:creator>
		<pubDate>Wed, 18 Aug 2010 11:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=838#comment-562</guid>
		<description>You mean R2 right? Yes, on R2 you can either use a dedicated network interface for connecting to R3 and R4 or also use a single physical ethernet interface and configure two subinterfaces on it for connecting to R3 and R4.</description>
		<content:encoded><![CDATA[<p>You mean R2 right? Yes, on R2 you can either use a dedicated network interface for connecting to R3 and R4 or also use a single physical ethernet interface and configure two subinterfaces on it for connecting to R3 and R4.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Configure Static Routing on Cisco Routers by Azim Norazmi &#124; ITechPrince</title>
		<link>http://www.networkstraining.com/how-to-configure-static-routing-on-cisco-routers/comment-page-1/#comment-561</link>
		<dc:creator>Azim Norazmi &#124; ITechPrince</dc:creator>
		<pubDate>Wed, 18 Aug 2010 11:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=838#comment-561</guid>
		<description>Nice tutorial,

Should we make subinterface in R1 for network 2 and 3?</description>
		<content:encoded><![CDATA[<p>Nice tutorial,</p>
<p>Should we make subinterface in R1 for network 2 and 3?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Configure a Cisco ASA 5510 Firewall &#8211; Basic Configuration Tutorial by Blog Admin</title>
		<link>http://www.networkstraining.com/how-to-configure-a-cisco-asa-5510-firewall-basic-configuration-tutorial/comment-page-1/#comment-560</link>
		<dc:creator>Blog Admin</dc:creator>
		<pubDate>Wed, 18 Aug 2010 10:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=463#comment-560</guid>
		<description>Andrew,

If you have a dedicated DHCP server in your network, then you must not activate DHCP service on the ASA appliance. If you have an ISA server, you can connect the ISA server in the internal network (or preferably on a DMZ) and force all internal users to use the ISA as proxy for their HTTP traffic. You can configure an access-list which allows only the ISA server to access the internet for ports 80/443.

Regarding the global IPs, you don&#039;t need to configure sub-interfaces to assign them. With sub-interfaces you just create separate network security zones. If the global IPs are routed towards your outside interface, you can create static NAT commands and redirect those IP addresses to internal hosts for example.</description>
		<content:encoded><![CDATA[<p>Andrew,</p>
<p>If you have a dedicated DHCP server in your network, then you must not activate DHCP service on the ASA appliance. If you have an ISA server, you can connect the ISA server in the internal network (or preferably on a DMZ) and force all internal users to use the ISA as proxy for their HTTP traffic. You can configure an access-list which allows only the ISA server to access the internet for ports 80/443.</p>
<p>Regarding the global IPs, you don&#8217;t need to configure sub-interfaces to assign them. With sub-interfaces you just create separate network security zones. If the global IPs are routed towards your outside interface, you can create static NAT commands and redirect those IP addresses to internal hosts for example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Configure a Cisco ASA 5510 Firewall &#8211; Basic Configuration Tutorial by andrew</title>
		<link>http://www.networkstraining.com/how-to-configure-a-cisco-asa-5510-firewall-basic-configuration-tutorial/comment-page-1/#comment-558</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Wed, 18 Aug 2010 05:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=463#comment-558</guid>
		<description>Thanks for this. As for the Step 6, I have an internal DNS to resolve internal addresses and DHCP assigning addresses internally. Do I still need to have ASA 5510 run DHCP? I also currently have ISA server 2006 on which I had a stub copy of DNS and forwards queries to external DNSs. I would like to continue using ISA server with ASA 5510, the latter will be at the perimeter. How can I accommodate both? Also, I have several global IPs and I do not know how to define sub-interfaces to assign several global IPs to a single physical interface. Please help!</description>
		<content:encoded><![CDATA[<p>Thanks for this. As for the Step 6, I have an internal DNS to resolve internal addresses and DHCP assigning addresses internally. Do I still need to have ASA 5510 run DHCP? I also currently have ISA server 2006 on which I had a stub copy of DNS and forwards queries to external DNSs. I would like to continue using ISA server with ASA 5510, the latter will be at the perimeter. How can I accommodate both? Also, I have several global IPs and I do not know how to define sub-interfaces to assign several global IPs to a single physical interface. Please help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CWNA Certification-Certified Wireless Network Administrator by CWNA Certification-Certified Wireless Network Administrator &#124; AvaLAN Wireless Systems, Inc.</title>
		<link>http://www.networkstraining.com/cwna-certification-certified-wireless-network-administrator/comment-page-1/#comment-534</link>
		<dc:creator>CWNA Certification-Certified Wireless Network Administrator &#124; AvaLAN Wireless Systems, Inc.</dc:creator>
		<pubDate>Wed, 11 Aug 2010 10:47:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.networkstraining.com/?p=634#comment-534</guid>
		<description>[...] a CWNA Certification is a smart move for networking professionals who want to differentiate themselves from the crowd. A [...]</description>
		<content:encoded><![CDATA[<p>[...] a CWNA Certification is a smart move for networking professionals who want to differentiate themselves from the crowd. A [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
