<?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>AOIP - Anything Over IP &#187; ISCW</title>
	<atom:link href="http://www.anythingoverip.co.za/category/tutorials/course-content/iscw/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anythingoverip.co.za</link>
	<description>Anything Over IP</description>
	<lastBuildDate>Wed, 27 Jul 2011 05:24:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>ISDN and Multilink with load-threshold</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-and-multilink-with-load-threshold/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-and-multilink-with-load-threshold/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 14:46:42 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[ISCW]]></category>
		<category><![CDATA[WAN]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=548</guid>
		<description><![CDATA[ISDN is a fantastic option as a backup in cases where your primary link has failed. However often your primary line has much more bandwidth than a single ISDN line (Channel). The ISDN BRI B-Channels run at 56kb/s or 64 kb/s (depending on country) and although this is a good start, often you need more [...]]]></description>
			<content:encoded><![CDATA[<p>ISDN is a fantastic option as a backup in cases where your primary link has failed. However often your primary line has much more bandwidth than a single ISDN line (Channel). The ISDN BRI B-Channels run at 56kb/s or 64 kb/s (depending on country) and although this is a good start, often you need more bandwidth to accommodate the traffic.</p>
<p>ISDN BRI (Basic Rate Interface) interfaces have 2 B-channels. By default when you create a connection using ISDN only one of these channels will dial. In order for us to use the additional B-channel we need to insert an additional command under our BRI interface (PPP Multilink)</p>
<p>Similarly ISDN PRI (Primary Rate Interface) interfaces have (23 B-Channels on T1, 30 B-Channels on E1) each of the channels on a PRI line run at 64kb/s and often we would like to use more than just one channel for our backup.</p>
<p>Although we can have all channels connect immediately when the ISDN becomes active; this results in all lines been billed by the PSTN. Instead we would rather have additional lines been brought up one at a time when the traffic demands it. We can achieve this by defining a load threshold that the line must be under before bringing up additional channels.</p>
<p>The load-threshold command is on a scale from 1 to 255 where 255 is equal to 100% utilisation.</p>
<p><strong>AOIP.ORG(config)# interface bri 2/0<br />
AOIP.ORG(config-if)# ppp multilink<br />
AOIP.ORG(config-if)# dialer load-threshold 128 either</strong></p>
<p>In the above example, I have set a threshold of 128 (50%) and this is based on traffic either inbound or outbound. In order to only monitor traffic inbound, replace ‘either’ with inbound. The same applied to outbound traffic.</p>
<p><strong>NOTE:</strong> In order to use PPP multilink, both sides of the link need to be configured for its use.</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-switch-type/' rel='bookmark' title='Permanent Link: ISDN Switch-type'>ISDN Switch-type</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-basic-isdn-with-interesting-traffic/' rel='bookmark' title='Permanent Link: Configuring Basic ISDN with Interesting Traffic'>Configuring Basic ISDN with Interesting Traffic</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/bcmsn/creating-layer-2-and-layer-3-ether-channels/' rel='bookmark' title='Permanent Link: Creating Layer 2 and Layer 3 Ether Channels'>Creating Layer 2 and Layer 3 Ether Channels</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-and-multilink-with-load-threshold/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Floating Static Routes</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/floating-static-routes/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/floating-static-routes/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 19:09:36 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[WAN]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=542</guid>
		<description><![CDATA[In order to have a fully fault tolerant network, a backup solution for WAN links is vital. There are many options for configuring a backup line incase the primary line fails and in this tutorial we are going to look at using floating static routes to achieve a dial-up connection to act as our backup [...]]]></description>
			<content:encoded><![CDATA[<p>In order to have a fully fault tolerant network, a backup solution for WAN links is vital. There are many options for configuring a backup line incase the primary line fails and in this tutorial we are going to look at using floating static routes to achieve a dial-up connection to act as our backup for our primary serial line.</p>
<p> </p>
<p>Using floating static routing as a backup solution works on the following principle.</p>
<p>-          A <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/what-is-a-routing-protocol/">dynamic routing protocol </a>is running over your primary line</p>
<p>-          When the link fails, the routing updates will fail and the routing table will flush</p>
<p>-          A <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/static-routing/">static route </a>that uses the dial-up interface will become the best route</p>
<p>-          The backup interface will dial and traffic will continue to flow</p>
<p>-          When the primary line comes back up the dynamic routing protocol will fill the routing table, overwriting the floating static.</p>
<p> </p>
<p>NOTE: Any type of dial-up interface may be used (modem / <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-basic-isdn-with-interesting-traffic/">ISDN</a> / 3G etc)</p>
<p> </p>
<p>Based on the above it’s important to understand a few things about routing.</p>
<p>-          A router will look for a route with the longest match (most specific route wins).</p>
<p>-          If more than one identical route exists, the route with the LOWEST <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/cisco-administrative-distance/">administration distance </a>will be inserted into the routing table</p>
<p> </p>
<p>So in order for us to configure floating static routes, we need 2 things configured.</p>
<p>-          A <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/what-is-a-routing-protocol/">dynamic routing protocol </a>MUST be configured for this solution</p>
<p>-          An identical <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/static-routing/">static route </a>must be created with an administrative distance higher than our routing protocol.</p>
<p> </p>
<p>Example:</p>
<p>If I am running <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-eigrp-on-a-cisco-router/">EIGRP</a> as my routing protocol and it has learnt a route to network 192.168.1.0 /24 with an admin distance of 90 ( EIGRP has an <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/cisco-administrative-distance/">administrative distance </a>of 90 by default). I must create a static route for the network 192.168.1.0 /24 with a next hop of my remote routers dial-up interface. A static route however has a default administrative distance of 1, which at this point would mean it would overwrite my dynamically learnt route and all my traffic would be sent over my dial-up interface leaving me with a rather large phone bill. So when I create my static route it’s imperative that I change the default administrative distance to something higher than that of my routing protocol – I suggest a value of 250.</p>
<p> </p>
<p>My static route would look like this:</p>
<p> </p>
<p><strong>AOIP.ORG(config)# ip route 192.168.1.0 255.255.255.0 10.0.1.1 200</strong></p>
<p> </p>
<p><strong>Destination network :</strong> 192.168.1.0</p>
<p><strong>Subnetmask for destination :</strong> 255.255.255.0</p>
<p><strong>Next hop address of the remote routers dial-up interface:</strong> 10.0.1.1</p>
<p><strong>Administrative Distance :</strong> 200</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/static-routing/' rel='bookmark' title='Permanent Link: Static Routing'>Static Routing</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/cisco-administrative-distance/' rel='bookmark' title='Permanent Link: Cisco Administrative Distance'>Cisco Administrative Distance</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-and-multilink-with-load-threshold/' rel='bookmark' title='Permanent Link: ISDN and Multilink with load-threshold'>ISDN and Multilink with load-threshold</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/floating-static-routes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Configuring Basic ISDN with Interesting Traffic</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-basic-isdn-with-interesting-traffic/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-basic-isdn-with-interesting-traffic/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 14:10:17 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Access-Lists]]></category>
		<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[WAN]]></category>
		<category><![CDATA[ISDN]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=537</guid>
		<description><![CDATA[When configuring ISDN with interesting traffic, it’s important to first understand how Cisco defines ‘interesting’ and what this means in terms of the connection been formed. Interesting traffic is traffic that we define in the form of an access-list that is allowed to cause the ISDN to dial. This does NOT mean it is the [...]]]></description>
			<content:encoded><![CDATA[<p>When configuring ISDN with interesting traffic, it’s important to first understand how Cisco defines ‘interesting’ and what this means in terms of the connection been formed. Interesting traffic is traffic that we define in the form of an <a href="http://www.anythingoverip.co.za/networking-101/introduction-to-acls-access-control-list/">access-list </a>that is allowed to cause the ISDN to dial. This does NOT mean it is the only traffic allowed to use the link but this does tie in directly with the idle-timeout value that we need to set on the ISDN interface.</p>
<p> </p>
<p>For example: If I define an access-list that allows telnet and denies everything else, then telnet is the only traffic that will cause my ISDN interface to dial the remote router. Once the line has connected, ANY traffic may flow over the ISDN line. The router is looking purely for ‘interesting traffic’ so if no telnet traffic is sent over the line for the idle-timeout value, the line will drop.</p>
<p> </p>
<p>This type of installation of ISDN is fantastic for very small branch offices that do not need to be connected to HQ permanently and you only need the link to be established for short periods of time. This however is not a good link backup solution.</p>
<p> </p>
<p>In the below configuration we have created an <a href="http://www.anythingoverip.co.za/networking-101/introduction-to-acls-access-control-list/">access-list </a>that will allow telnet traffic to cause the link to be established.</p>
<p> </p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-539" title="isdn" src="http://www.anythingoverip.co.za/wp-content/uploads/2009/08/isdn.jpg" alt="isdn" width="350" height="79" /></p>
<p> </p>
<p><strong>AOIP.ORG(config)# access-list 102 permit tcp any any eq telnet</strong></p>
<p>Create the Access-list to be used to specify interesting traffic</p>
<p> </p>
<p><strong>AOIP.ORG(config)# dialer-list 2 protocol ip list 102    </strong></p>
<p>The dialer-list defines what traffic is interesting, in this case – Access list 102</p>
<p> </p>
<p><strong>AOIP.ORG(config)# isdn switch-type basic-net3</strong></p>
<p>Define the <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/isdn-switch-type/">switch-type </a>needed for ISDN, This is the settings for BRI interfaces in Europe and Africa</p>
<p> </p>
<p><strong>AOIP.ORG(config)# int bri 2/0</strong></p>
<p>Enter the BRI interface you wish to configure</p>
<p><strong>AOIP.ORG(config-if)# ip address 10.0.1.1</strong></p>
<p>Set an IP address on the ISDN interface</p>
<p><strong>AOIP.ORG(config-if)# encapsulation ppp</strong></p>
<p>Define <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-ppp-encapsulation/">PPP as the encapsulation </a>method</p>
<p><strong>AOIP.ORG(config-if)# ppp authentication chap</strong></p>
<p>Authentication for PPP has been set to CHAP</p>
<p><strong>AOIP.ORG(config-if)# dialer-group 2 </strong></p>
<p>This tells our ISDN interface to use Dialer-list 2, you will notice the numbers for ‘dialer-group’ and ‘dialer-list’ match</p>
<p><strong>AOIP.ORG(config-if)# dialer idle-timeout 180</strong></p>
<p>If no interesting traffic is sent for 180 seconds, the line will drop</p>
<p><strong>AOIP.ORG(config-if)# dialer map ip 10.0.1.2 name Router2 5551234   </strong></p>
<p>If you need to connect to the IP address 10.0.1.2 (The remote routers ISDN interface), The remote router is name “Router2” and the telephone number to dial is “5551234”</p>
<p><strong>AOIP.ORG(config-if)# no shut</strong></p>
<p> </p>
<p><strong>AOIP.ORG(config)# ip route 192.168.2.0 255.255.255.0 10.0.1.2</strong></p>
<p>Create a <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/static-routing/">static route </a>for the remote subnet with a next hop of Router2’s ISDN interface.</p>
<p> </p>
<p><strong>AOIP.ORG(config)# username Router2 password aoip</strong></p>
<p>The remote routers hostname and a password that will be used for PPP authentication</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-and-multilink-with-load-threshold/' rel='bookmark' title='Permanent Link: ISDN and Multilink with load-threshold'>ISDN and Multilink with load-threshold</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-switch-type/' rel='bookmark' title='Permanent Link: ISDN Switch-type'>ISDN Switch-type</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/floating-static-routes/' rel='bookmark' title='Permanent Link: Floating Static Routes'>Floating Static Routes</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-basic-isdn-with-interesting-traffic/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>ISDN Switch-type</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-switch-type/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-switch-type/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:55:32 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[WAN]]></category>
		<category><![CDATA[Dial-UP]]></category>
		<category><![CDATA[ISDN]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=529</guid>
		<description><![CDATA[In order for any ISDN lines to establish Layer-1 connectivity the switch-type has to be defined correctly. The switch-type is very much country dependant so it’s also important to memorize the switch-type that applies to where you do most of your installations.   If Layer-1 is showing ‘Deactivated’ when using the show isdn status command, [...]]]></description>
			<content:encoded><![CDATA[<p>In order for any ISDN lines to establish Layer-1 connectivity the switch-type has to be defined correctly.</p>
<p>The switch-type is very much country dependant so it’s also important to memorize the switch-type that applies to where you do most of your installations.</p>
<p> </p>
<p>If Layer-1 is showing ‘Deactivated’ when using the <strong>show isdn status</strong> command, only 3 things can be the source of the problem.</p>
<p> </p>
<p>1/ isdn switch-type has not been set, or has not been set correctly (The most common problem)</p>
<p>2/ There is a problem with the PSTN (call your telephony service provider)</p>
<p>3/ Cable problems</p>
<p>4/ Physical port failure on the Router.</p>
<p> </p>
<p>In order to configure the switch-type you can enter the command</p>
<p><strong>Isdn switch-type <em>{switch-type}</em></strong></p>
<p> </p>
<p>This can be done either in global configuration mode, or on the interface depending on the router and IOS version.</p>
<p> </p>
<p>Below are all the switch-type options available<span id="_marker"> </span></p>
<p><span> </span></p>
<p><span> </span></p>
<table border="1" cellspacing="1" cellpadding="0" width="80%">
<tbody>
<tr>
<td>basic-1tr6</td>
<td>German 1TR6 ISDN switches</td>
</tr>
<tr>
<td>basic-5ess</td>
<td>AT&amp;T basic rate switches</td>
</tr>
<tr>
<td>basic-dms100</td>
<td>NT DMS-100 basic rate switches</td>
</tr>
<tr>
<td>basic-net3</td>
<td>NET3 ISDN and Euro-ISDN switches (UK and others), also called E-DSS1 or DSS1</td>
</tr>
<tr>
<td>basic-ni</td>
<td>National ISDN-1 switches</td>
</tr>
<tr>
<td>basic-nwnet3</td>
<td>Norway Net3 switches</td>
</tr>
<tr>
<td>basic-nznet3</td>
<td>New Zealand Net3 switches</td>
</tr>
<tr>
<td>basic-ts013</td>
<td>Australian TS013 switches</td>
</tr>
<tr>
<td>none</td>
<td>No switch defined</td>
</tr>
<tr>
<td>ntt</td>
<td>Japanese NTT ISDN switches (ISDN BRI only)</td>
</tr>
<tr>
<td>primary-4ess</td>
<td>AT&amp;T 4ESS switch type for the U.S. (ISDN PRI only)</td>
</tr>
<tr>
<td>primary-5ess</td>
<td>AT&amp;T 5ESS switch type for the U.S. (ISDN PRI only)</td>
</tr>
<tr>
<td>primary-dms100</td>
<td>NT DMS-100 switch type for the U.S. (ISDN PRI only)</td>
</tr>
<tr>
<td>primary-net5</td>
<td>NET5 ISDN PRI switches (Europe)</td>
</tr>
<tr>
<td>primary-ntt</td>
<td>INS-Net 1500 for Japan (ISDN PRI only)</td>
</tr>
<tr>
<td>primary-ts014</td>
<td>Australian TS014 switches (ISDN PRI only)</td>
</tr>
<tr>
<td>vn2</td>
<td>French VN2 ISDN switches (ISDN BRI only)</td>
</tr>
<tr>
<td>vn3</td>
<td>French VN3 ISDN switches (ISDN BRI only)</td>
</tr>
<tr>
<td>vn4</td>
<td>French VN4 ISDN switches (ISDN BRI only)</td>
</tr>
</tbody>
</table>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-basic-isdn-with-interesting-traffic/' rel='bookmark' title='Permanent Link: Configuring Basic ISDN with Interesting Traffic'>Configuring Basic ISDN with Interesting Traffic</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-and-multilink-with-load-threshold/' rel='bookmark' title='Permanent Link: ISDN and Multilink with load-threshold'>ISDN and Multilink with load-threshold</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/floating-static-routes/' rel='bookmark' title='Permanent Link: Floating Static Routes'>Floating Static Routes</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/isdn-switch-type/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>DoS TCP SYN Attack Mitigation</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/dos-tcp-syn-attack-mitigation/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/dos-tcp-syn-attack-mitigation/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 14:22:40 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Access-Lists]]></category>
		<category><![CDATA[Intrusion Prevention]]></category>
		<category><![CDATA[IPS]]></category>
		<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Access Lists]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=525</guid>
		<description><![CDATA[TCP SYN flooding is often used in conjunction with IP spoofing. The main aim of a TCP SYN flood is to send a TCP SYN packet to a host inside your network from a spoofed IP address. The TCP SYN ACK is then sent to a machine that is not expecting one, or a machine [...]]]></description>
			<content:encoded><![CDATA[<p>TCP SYN flooding is often used in conjunction with <a href="http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/">IP spoofing</a>.</p>
<p>The main aim of a TCP SYN flood is to send a TCP SYN packet to a host inside your network from a spoofed IP address. The TCP SYN ACK is then sent to a machine that is not expecting one, or a machine that doesn’t exist. This causes a ‘half-opened’ connection (Embryonic Connection) to exist since the 3-way handshake has not completed with a ACK.</p>
<p> </p>
<p>A Cisco router is only capable of having a certain amount of connections open to it (This is different depending on the router model) so if an attacker was to send thousands of spoofed TCP SYN packets the router would reach maximum allowed connections, even though the connections are not complete. This would prevent the router from allowing legitimate connections been created.</p>
<p> </p>
<p>In order to completely fix this problem, a firewall that supports dynamic embryonic connections would need to be installed, however a router can prevent the flood of TCP SYN packets by disallowing connections from the outside coming into your network.</p>
<p> </p>
<p>This means that only connections that were created from inside your network would work and all connections from the outside would be denied.</p>
<p> </p>
<p>Here is the configuration breakdown. (FastEthernet 0/0 is the outside network)</p>
<p style="text-align: center;"> <img class="aligncenter size-full wp-image-392" title="ACL_Diagram" src="http://www.anythingoverip.co.za/wp-content/uploads/2009/08/ACL_Diagram.jpg" alt="ACL_Diagram" width="350" height="89" /></p>
<p><strong>AOIP.ORG(config)# access-list 101 permit tcp any 192.168.1.0 0.0.0.255 established</strong></p>
<p><strong>AOIP.ORG(config)# access-list 101 deny ip any any log</strong></p>
<p><strong>AOIP.ORG(config)# interface fa0/0</strong></p>
<p><strong>AOIP.ORG(config-if)# ip access-group 101 in</strong></p>
<p><strong>AOIP.ORG(config-if)# exit</strong></p>
<p><strong>AOIP.ORG(config)#</strong></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/' rel='bookmark' title='Permanent Link: IP Address Spoofing Mitigation with Access Control Lists (ACL)'>IP Address Spoofing Mitigation with Access Control Lists (ACL)</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-subseven-attacks/' rel='bookmark' title='Permanent Link: Mitigating SubSeven attacks'>Mitigating SubSeven attacks</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-smurf-dos-attacks/' rel='bookmark' title='Permanent Link: Mitigating Smurf DoS Attacks'>Mitigating Smurf DoS Attacks</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/dos-tcp-syn-attack-mitigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mitigating SubSeven attacks</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-subseven-attacks/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-subseven-attacks/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:10:47 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Access-Lists]]></category>
		<category><![CDATA[IINS]]></category>
		<category><![CDATA[Intrusion Prevention]]></category>
		<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[Access Lists]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=414</guid>
		<description><![CDATA[SubSeven – aka: Sub7 and Sub7Server is a backdoor program, in the form of a Trojan, used mostly for causing trouble on computer networks. It can be used for simple attacks such as hiding the mouse cursor and opening applications, but it can also be used for more serious attacks including retrieving all your personal [...]]]></description>
			<content:encoded><![CDATA[<p>SubSeven – aka: Sub7 and Sub7Server is a backdoor program, in the form of a Trojan, used mostly for causing trouble on computer networks. It can be used for simple attacks such as hiding the mouse cursor and opening applications, but it can also be used for more serious attacks including retrieving all your personal information stored on your machine and all computer settings.</p>
<p> </p>
<p>The name SubSeven was derived by reversing the word Netbus (also a famous backdoor program) and replacing with the world ‘ten’ with ‘seven’</p>
<p>netbus = subten = subseven</p>
<p> </p>
<p> </p>
<p>In order to mitigate this application from attacking your network the following <a href="http://www.anythingoverip.co.za/networking-101/introduction-to-acls-access-control-list/">Access-list </a>can be configured on your routers interfaces. Most Anti-Virus programs will also prevent it from attacking your machine.</p>
<p> </p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 1243 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 2773 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any range 6711 6713 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 6776 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 7000 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 7215 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 27374 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 27573 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny tcp any any eq 54283 log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 permit ip any any</strong></p>
<p><strong>AOIP.ORG(config)# interface fa0/0 </strong></p>
<p><strong>AOIP.ORG(config-if)# ip access-group 100 in</strong></p>
<p><strong>AOIP.ORG(config-if)# exit</strong></p>
<p><strong>AOIP.ORG(config)# interface fa0/1 </strong></p>
<p><strong>AOIP.ORG(config-if)# ip access-group 100 in</strong></p>
<p><strong>AOIP.ORG(config-if)# exit</strong></p>
<p><strong>AOIP.ORG(config)#</strong></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-smurf-dos-attacks/' rel='bookmark' title='Permanent Link: Mitigating Smurf DoS Attacks'>Mitigating Smurf DoS Attacks</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/' rel='bookmark' title='Permanent Link: IP Address Spoofing Mitigation with Access Control Lists (ACL)'>IP Address Spoofing Mitigation with Access Control Lists (ACL)</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/dos-tcp-syn-attack-mitigation/' rel='bookmark' title='Permanent Link: DoS TCP SYN Attack Mitigation'>DoS TCP SYN Attack Mitigation</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-subseven-attacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mitigating Smurf DoS Attacks</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-smurf-dos-attacks/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-smurf-dos-attacks/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 06:00:41 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Access-Lists]]></category>
		<category><![CDATA[IINS]]></category>
		<category><![CDATA[Intrusion Prevention]]></category>
		<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[Access Lists]]></category>
		<category><![CDATA[ACL]]></category>
		<category><![CDATA[IPS]]></category>
		<category><![CDATA[Spoofing]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=393</guid>
		<description><![CDATA[Before looking at how to mitigate a Smurf attack, let’s first understand what it is and why it’s such a problem.   A Smurf works on a weakness of IP and ICMP by sending an ICMP packet to the broadcast address of a network. For example, I could send an ICMP (Ping packet) to every [...]]]></description>
			<content:encoded><![CDATA[<p>Before looking at how to mitigate a Smurf attack, let’s first understand what it is and why it’s such a problem.</p>
<p> </p>
<p>A Smurf works on a weakness of IP and ICMP by sending an ICMP packet to the broadcast address of a network. For example, I could send an ICMP (Ping packet) to every computer on the network 192.168.1.0 /24</p>
<p>I would do this by sending an ICMP packet to the address 192.168.1.255. This would result in every computer in that network (possibly 254 machines) sending me an echo-reply message. So far, this is not the end of the world, however Smurf adds <a href="http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/">ip spoofing </a>to the equation&#8230;</p>
<p> </p>
<p>When someone does a Smurf attack, the first thing that they do is an IP Spoof to make the their <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP address </a>look like an <a href="http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/">internal address</a>. For example, I would spoof my address to have a source IP address of 192.168.1.10. Let’s assume that the IP address 192.168.1.10 was the Domain Controller, or perhaps the E-mail or Web server of that network. If I was to now send multiple echo packets to the destination address 192.168.1.255, every machine on that network would now send a echo-reply to the source IP of 192.168.1.10 (The internal server). This means I have just caused every machine on the target network to attack the internal target machine with echo-replies. Of course this is not the end of the world if this happens once or twice, but what if I did this a few thousand, or a few hundred thousand times? What if the target network was larger and had more than 254 machines? On a larger scale this could cause the target machine to be so over loaded with echo-replies that its network card becomes saturated to a point where its prevented from doing its job&#8230; denying it from doing it’s service&#8230; “Denial of Service” (DoS). Since this attack is not coming from me directly, and I&#8217;m forcing multiple machines to attack a single host, this now becomes a &#8220;Distributed Denial of Service&#8221; (DDos) attack.</p>
<p> </p>
<p>So in order for us to prevent Smurf attacks happening on our networks, we need to make sure we block directed broadcast traffic coming into our network.</p>
<p> </p>
<p>Below is the configuration required to stop Smurf Attacks. Use the diagram as a reference for the <a href="http://www.anythingoverip.co.za/networking-101/introduction-to-acls-access-control-list/">ACL’s</a></p>
<p> </p>
<p style="text-align: center;"> <img class="aligncenter size-full wp-image-392" title="ACL_Diagram" src="http://www.anythingoverip.co.za/wp-content/uploads/2009/08/ACL_Diagram.jpg" alt="ACL_Diagram" width="350" height="89" /></p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# access-list 101 deny ip any host 192.168.1.255 log</strong></p>
<p>Deny the directed broadcast</p>
<p><strong>AOIP.ORG(config)# access-list 101 permit ip any 192.168.1.0 0.0.0.255 log</strong></p>
<p>Allow unicast traffic</p>
<p><strong>AOIP.ORG(config)# interface fa0/0</strong></p>
<p><strong>AOIP.ORG(config-if)# ip access-group 101 in</strong></p>
<p>Attach the ACL to the interface for inbound traffic</p>
<p><strong>AOIP.ORG(config-if)# exit</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>Now for the other direction&#8230;&#8230;</strong></p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# access-list 102 deny ip any host 10.0.1.255 log</strong></p>
<p>Deny the directed broadcast</p>
<p><strong>AOIP.ORG(config)# access-list 102 permit ip any 10.0.1.0 0.0.0.255 log</strong></p>
<p>Allow unicast traffic</p>
<p><strong>AOIP.ORG(config)# interface fa0/1</strong></p>
<p><strong>AOIP.ORG(config-if)# ip access-group 102 in</strong></p>
<p>Attach the ACL to the interface for inbound traffic</p>
<p><strong>AOIP.ORG(config-if)# exit</strong></p>
<p><strong>AOIP.ORG(config)#</strong></p>
<p> </p>
<p> </p>
<p> </p>
<p>In the above configuration we have now mitigated Smurf attacks from either network segments in either direction.</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-subseven-attacks/' rel='bookmark' title='Permanent Link: Mitigating SubSeven attacks'>Mitigating SubSeven attacks</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/' rel='bookmark' title='Permanent Link: IP Address Spoofing Mitigation with Access Control Lists (ACL)'>IP Address Spoofing Mitigation with Access Control Lists (ACL)</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/dos-tcp-syn-attack-mitigation/' rel='bookmark' title='Permanent Link: DoS TCP SYN Attack Mitigation'>DoS TCP SYN Attack Mitigation</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-smurf-dos-attacks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IP Address Spoofing Mitigation with Access Control Lists (ACL)</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 14:06:29 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Access-Lists]]></category>
		<category><![CDATA[IINS]]></category>
		<category><![CDATA[Intrusion Prevention]]></category>
		<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[Access Lists]]></category>
		<category><![CDATA[ACL]]></category>
		<category><![CDATA[IP Addresses]]></category>
		<category><![CDATA[IPS]]></category>
		<category><![CDATA[SNRS]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=389</guid>
		<description><![CDATA[IP spoofing is the act of camouflaging your IP address to make it look like you are someone else. Although IP spoofing is not an attack by itself, it is the starting point of many of the most common attacks found on today’s networks.   Most, but not all, of the spoofing attacks that take [...]]]></description>
			<content:encoded><![CDATA[<p>IP spoofing is the act of camouflaging your <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP address </a>to make it look like you are someone else. Although IP spoofing is not an attack by itself, it is the starting point of many of the most common attacks found on today’s networks.</p>
<p> </p>
<p>Most, but not all, of the spoofing attacks that take place start with someone on the outside of your network spoofing their IP address to make it look like they are part of the inside of your network. Since all private networks worldwide follow the standards of <a href="http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/">RFC 1918</a>, knowing what IP addresses a company is using inside their network is not complex.</p>
<p> </p>
<p>RFC 1918 defines that the following IP addresses are usable inside private networks.</p>
<p>10.0.0.0 – 10.255.255.255</p>
<p>172.16.0.0 – 172.31.255.255</p>
<p>192.168.0.0 – 192.168.255.255</p>
<p> </p>
<p>Based on the above, the most obvious first step is to deny traffic that has a source IP address inside the RFC 1918 block that is coming into your network from the outside interface. The outside interface should have outside (public) IP addresses as their source. There would be no valid reason for an IP address on the outside of your network falling within that range.</p>
<p> </p>
<p>Further to the RFC 1918 block of addresses, we also need to block any source coming from the following:</p>
<p>local loopback (127.0.0.1)</p>
<p>network address (0.0.0.0)</p>
<p>broadcast address (255.255.255.255)</p>
<p>Private multicast range (224.0.0.0 /4 )</p>
<p> </p>
<p> </p>
<p>Here is the configuration breakdown for the above scenario</p>
<p> </p>
<p><strong>AOIP.ORG(config)# access-list 100 deny ip 10.0.0.0 0.255.255.255 any log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny ip 172.16.0.0 0.15.255.255 any log</strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny ip 192.168.0.0 0.0.255.255 any log</strong></p>
<p>The above are the RFC 1918 Unicast IP addresses</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny ip 127.0.0.0 0.255.255.255 any log</strong></p>
<p>Local loopback restriction</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny ip 0.0.0.0 0.255.255.255 any log</strong></p>
<p>Network address restriction</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny ip 224.0.0.0 15.255.255.255 any log</strong></p>
<p>Private multicast range restriction</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 deny ip host 255.255.255.255 any log</strong></p>
<p>Broadcast source address restriction</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# access-list 100 permit ip any 192.168.1.0 0.0.0.255</strong></p>
<p>There is an implicit deny any at the bottom of every <a href="http://www.anythingoverip.co.za/networking-101/introduction-to-acls-access-control-list/">access list</a>, so without a permit statement, NO traffic would be allowed. In the above entry I have allowed any traffic to go to the destination address 192.168.1.0 /24 (My internal network)</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# interface fa0/0</strong></p>
<p>For example purposes FastEthernet 0/0 is my outside interface</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config-if)# ip access-group 100 in</strong></p>
<p>I have applied this ACL inbound, which will also protect the router from been attacked.</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config-if)# exit</strong></p>
<p><strong>AOIP.ORG(config)#</strong></p>
<p> </p>
<p> </p>
<p>Not only do we want to prevent people from the outside of our network ‘pretending’ they are inside our network, we also want to prevent our inside people from spoofing to a different IP address as well. The above configuration had a focus on traffic INBOUND to our network, the below configuration is focused on preventing OUTBOUND traffic from spoofing.</p>
<p> </p>
<p><strong>AOIP.ORG(config)# access-list 105 permit ip 192.168.1.0 0.0.0.255 any</strong></p>
<p>The only range that is allowed to transmit is my internal network, in this case 192.168.1.0 /24</p>
<p> </p>
<p><strong>AOIP.ORG(config)# access-list 105 deny ip any any log</strong></p>
<p>Although there is an implicit ‘deny any’ at the end of all ACL’s, I have included this with the log statement so I can see how many attempts have been made by internal machines to spoof their address before leaving the network</p>
<p> </p>
<p><strong>AOIP.ORG(config)# interface fa0/1</strong></p>
<p>For example purposes, interface FastEthernet 0/1 is my inside interface</p>
<p> </p>
<p><strong>AOIP.ORG(config-if)# ip access-group 105 in</strong></p>
<p>I have applied this ACL inbound, which will also protect the router from been attacked.</p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config-if)# exit</strong></p>
<p><strong>AOIP.ORG(config)#</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-smurf-dos-attacks/' rel='bookmark' title='Permanent Link: Mitigating Smurf DoS Attacks'>Mitigating Smurf DoS Attacks</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/dos-tcp-syn-attack-mitigation/' rel='bookmark' title='Permanent Link: DoS TCP SYN Attack Mitigation'>DoS TCP SYN Attack Mitigation</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/mitigating-subseven-attacks/' rel='bookmark' title='Permanent Link: Mitigating SubSeven attacks'>Mitigating SubSeven attacks</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/ip-address-spoofing-mitigation-with-access-control-lists-acl/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Configuring Syslog on Cisco Routers</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 12:42:52 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[IINS]]></category>
		<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[SNRS]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=331</guid>
		<description><![CDATA[As part of any management and audit solution for networking, Syslog is vital.   Syslog messages allow us to track system error messages, exceptions, and other information, such as device configuration changes. It allows for historical reporting, depending on the application keeping the logs, as well as help in fault finding.   Cisco devices support [...]]]></description>
			<content:encoded><![CDATA[<p>As part of any management and audit solution for networking, Syslog is vital.</p>
<p> </p>
<p>Syslog messages allow us to track system error messages, exceptions, and other information, such as device configuration changes.</p>
<p>It allows for historical reporting, depending on the application keeping the logs, as well as help in fault finding.</p>
<p> </p>
<p>Cisco devices support 8 levels of logging information from Facility level 0 through 7</p>
<table border="1" cellspacing="1" cellpadding="0" width="60%">
<tbody>
<tr>
<td>Emergency</td>
<td>0</td>
</tr>
<tr>
<td>Alert</td>
<td>1</td>
</tr>
<tr>
<td>Critical</td>
<td>2</td>
</tr>
<tr>
<td>Error</td>
<td>3</td>
</tr>
<tr>
<td>Warning</td>
<td>4</td>
</tr>
<tr>
<td>Notification</td>
<td>5</td>
</tr>
<tr>
<td>Informational</td>
<td>6</td>
</tr>
<tr>
<td>Debug</td>
<td>7</td>
</tr>
</tbody>
</table>
<p> </p>
<p>To enable Syslog 2 things are required</p>
<p>                1/ Configuration on the device to send Syslog messages</p>
<p>                2/ An application that will receive the messages and store them in a database.</p>
<p> </p>
<p>In the below live demo, you will see my putty screen with my telnet session into my router, and behind it you will see my Syslog application. There are many of these products on the market, each with its own pro’s and con’s, so use whatever you prefer. In my Live demo I am using an application called  ‘Syslog Watcher Personal Edition’, it’s a very easy to use application and is freeware. You will notice after I configured logging on the router, the log messages appear in my application.</p>
<p> </p>
<p>The command breakdown for the live demo is as follows</p>
<p> </p>
<p><strong>AOIP.ORG# conf t</strong></p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# logging 192.168.1.1</strong></p>
<p>This instructs the router to send Syslog messages to my application hosted on a machine with the IP 192.168.1.1</p>
<p><strong>AOIP.ORG(config)# logging trap info</strong></p>
<p>I have chosen to have level 6 messages sent to my application.</p>
<p> </p>
<p>Additionally you could have used the <strong>‘service timestamps log datetime localtime’</strong> command to force the time on the logs.</p>
<p> </p>
<p>If you still do not see any log messages after using the above commands, make sure that logging has not been disabled on the device. To force logging on a Cisco device use the <strong>‘logging on’</strong> command.</p>
<p> </p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/syslog.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/syslog.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/cisco-router-login-lockdown/' rel='bookmark' title='Permanent Link: Cisco Router Login Lockdown'>Cisco Router Login Lockdown</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-pat-on-cisco-routers-nat-overload/' rel='bookmark' title='Permanent Link: Configuring PAT on Cisco Routers (NAT Overload)'>Configuring PAT on Cisco Routers (NAT Overload)</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/security-topic-tutorials/configuring-the-console-port-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Configuring the Console port on a Cisco Device'>Configuring the Console port on a Cisco Device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco Router Login Lockdown</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/cisco-router-login-lockdown/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/cisco-router-login-lockdown/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:00:05 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=314</guid>
		<description><![CDATA[Additional configuration to further lockdown Cisco router security.]]></description>
			<content:encoded><![CDATA[<p>Cisco offers many additional ways to secure our routers further by hardening passwords and creating methods to prevent brute force attacks. In this post, which is more a show and tell, we will look at additional commands that you may want to implement on your devices to secure them further. The live demo at the end of this post, demonstrates the commands on a live Cisco router and the configuration used in the demo is explained below.</p>
<p><strong>AOIP.ORG# conf t</strong></p>
<p><strong>AOIP.ORG(config)# security passwords min-length 10</strong><br />
Defines a minimum password length for all passwords on the device.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# enable password aoip</strong><br />
<strong> % Password too short &#8211; must be at least 10 characters. Password configuration failed</strong></p>
<p>When I tried to create a password under 10 characters in length, I received an error.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# security authentication failure rate 10 log</strong><br />
This command will allow 10 login failures before implementing a 15 second delay (default), it will also send a <a href="http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/">syslog</a> message to a pre-configured syslog server<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# login block-for 100 attempts 2 within 100</strong><br />
This enforces a quiet period where login attempts will not be accepted for 100 seconds, if 2 failed attempts occur within 100 seconds&lt;<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# login quiet-mode access-class 1</strong><br />
To prevent certain key administrators from been locked out of the router due to the previous command, we can include them in an <a href="http://www.anythingoverip.co.za/networking-101/introduction-to-acls-access-control-list/">access-list</a> for exclusion from the quiet-mode period.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# login on-success log</strong><br />
Use this command if you wish to log all SUCCESSFULL login attempts to a syslog server for historical and audit purposes.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# login on-failure log</strong><br />
Use this command if you wish to log all UNSUCCESSFULL login attempts to a syslog server for historical and audit purposes. An example can be seen in the live demo below.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# login delay 10</strong><br />
This configures a delay between successive login attempts on the device which help mitigate dictionary and brute force attacks. An example can be seen in the live demo below.<br />
<strong> </strong></p>
<p><strong>AOIP.ORG(config)# exit<br />
AOIP.ORG# exit</strong></p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/lockdown.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/lockdown.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/snd/login-local-on-a-cisco-router/' rel='bookmark' title='Permanent Link: &#8216;Login local&#8217; on a Cisco Router'>&#8216;Login local&#8217; on a Cisco Router</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/setting-the-enable-password-and-secret-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Setting the enable password and secret on a Cisco device'>Setting the enable password and secret on a Cisco device</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/' rel='bookmark' title='Permanent Link: Configuring Syslog on Cisco Routers'>Configuring Syslog on Cisco Routers</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/cisco-router-login-lockdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

