<?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>Techinvasion.net &#187; Networking</title>
	<atom:link href="http://www.techinvasion.net/tag/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techinvasion.net</link>
	<description></description>
	<lastBuildDate>Tue, 13 Jul 2010 15:44:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Introduction to Filter list for JUNOS</title>
		<link>http://www.techinvasion.net/2009/06/14/introduction-to-filter-list-for-junos/</link>
		<comments>http://www.techinvasion.net/2009/06/14/introduction-to-filter-list-for-junos/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 02:10:02 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Juniper]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[access list]]></category>
		<category><![CDATA[ACL]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[filter-list]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.techinvasion.net/?p=122</guid>
		<description><![CDATA[Junipers JUNOS is a very robust operating system, not only is the OS very advanced but the ASIC heavy design of Juniper hardware is akin to calorie free chocolate bars! Juniper Filter Lists which are non-stateful packet filters similar to Cisco Access-Lists are compiled and processed using hardware, what this means is that you can [...]]]></description>
			<content:encoded><![CDATA[<p>Junipers JUNOS is a very robust operating system, not only is the OS very advanced but the ASIC heavy design of Juniper hardware is akin to calorie free chocolate bars! Juniper Filter Lists which are non-stateful packet filters similar to Cisco Access-Lists are compiled and processed using hardware, what this means is that you can have as many Filter-Lists as you want and as long as you want without degrading performance.</p>
<p>Juniper is also big on naming things, in JUNOS everything has a name, the Filter Lists have names, the terms in the Filter Lists have names, and even the address&#8217;s you are matching on have names. This is a big concept in JUNOS because it allows you to write snippets of Filter-Lists and use them for many different Filter Lists. JUNOS also supports grouping Filter Lists and applying an entire group of filter to an interface. If you apply Filter groups to a JUNOS interface they individual Filter Lists are evaluated in order sequentially.<br />
<span id="more-122"></span><br />
To facilitate out discussion of Filter-Lists let’s take a look at a standard anti-spoofing access list which would be applied to most edge routers. First let’s talk about what a vanilla anti-spoofing ACL should contain! A standard ACL at a minimum should block all RFC-1918 address space from the internet, it should also block undesirable types of ICMP traffic, and depending on the setup should block packets with illegal combinations of TCP flags set, for example packets with the SYN-FIN flag set at the same time or FIN-URG-PSH or URG-ACK-PSH-RST-SYN-FIN at the same time. All of these combinations of TCP flags are illegal and should never be together as part of a legitimate packet. So without further ado lets talk about Filter Lists.<br />
Filter Lists are defined under the Firewall section of the JUNOS configuration. Prefix Lists which are groups of networks, IP address ranges, or single hosts such as 1.1.1.1/32 are defined in these lists. These lists can later be used in as many Filter Lists as you define.</p>
<p>Below I will show you the actual Filter Lists as it looks in the configuration and some of the commands to create the list. For brevity I have opted to only show some of the commands used in creating the list as they are basically repetitive. The important thing to remember is that like all Access-Lists the terms in the Filter List are evaluated from top to bottom so it is important that the last term be an allow all statement otherwise the anti-spoofing filter will block all communication even legitimate communication.</p>
<pre class="prettyprint">[edit]
john#set policy-options prefix-list rfc1918-prefix-list 192.168.0.0/16

[edit]
john#set policy-options prefix-list rfc1918-prefix-list 172.16.0.0/12

[edit]
john#set policy-options prefix-list rfc1918-prefix-list 10.0.0.0/8

[edit]
john# edit firewall

[edit firewall]
john# edit filter anti-spoofing

[edit firewall filter anti-spoofing]
john# edit term block-rfc1918

[edit firewall filter anti-spoofing term block-rfc1918]
john# set from source-prefix-list rfc1918-prefix-list

[edit firewall filter anti-spoofing term block-rfc1918]
john# set then log discard

[edit]
john# show policy-options

prefix-list rfc1918-prefix-list {
    10.0.0.0/8;
    172.16.0.0/12;
    192.168.0.0/16;
}

[edit firewall]
john# show

filter anti-spoofing {
    term block-rfc1918 {
        from {
            source-prefix-list {
                rfc1918-prefix-list; ## 'rfc1918-prefix-list' is not defined
            }
        }
        then {
            log;
            discard;
        }
    }
    term block-fin-urg-psh {
        from {
            protocol tcp;
            tcp-flags fin,psh,urg;
        }
        then {
            log;
            discard;
        }
    }
    term block-syn-fin {
        from {
            protocol tcp;
            tcp-flags fin,syn;
        }
        then {
            log;
            discard;
        }
    }
    term block-urg-ack-syn-fin-rst-psh {
        from {
            protocol tcp;
            tcp-flags urg,ack,psh,rst,fin,syn;
        }
        then {
            log;
            discard;
        }
    }
    term block-icmp {
        from {
            protocol icmp;
            icmp-type-except echo-reply,unreachable,source-quench,time-exceeded;
        }
        then {
            log;
            discard;
        }
    }
    term accept-all {
        then accept;
    }
}</pre>
<p>Remember to apply the Filter-List to the interface with the following command:</p>
<pre class="prettyprint">[edit]
john#set interfaces fe-0/0/0.0 family inet filter input anti-spoofing</pre>
<p><a href="http://www.alltimedefense.com/uncategorized/time-based-access-control-lists/" target="_blank">Here is a related Article on ACL&#8217;s</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techinvasion.net/2009/06/14/introduction-to-filter-list-for-junos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blast From the Past &#8211; BBS.Techinvasion.net</title>
		<link>http://www.techinvasion.net/2009/02/02/blast-from-the-past-bbs-and-door-games/</link>
		<comments>http://www.techinvasion.net/2009/02/02/blast-from-the-past-bbs-and-door-games/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 16:12:17 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[personal News]]></category>
		<category><![CDATA[BBS]]></category>
		<category><![CDATA[gopher]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.techinvasion.net/?p=109</guid>
		<description><![CDATA[Recently as a project cleaning up some old files and software, I came across a software disk for an old BBS I used to run. This got my interest peaked as I wondered if there were still BBS systems Alive and well on the internet. Information on BBS systems was few and far between in [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 7.5pt; color: #000000; font-family: Verdana;">Recently as a project cleaning up some old files and software, I came across a software disk for an old BBS I used to run. This got my interest peaked as I wondered if there were still BBS systems Alive and well on the internet. Information on BBS systems was few and far between in my research and it took me a while to make some headway. Eventually I came across <a href="http://synchro.net/">http://Synchro.net</a>  BBS software. This software is very similar to old school dos BBS&#8217;s. I installed the software which was no small feet given the inadequate build instructions. Once the system was built and installed I had allot of fun setting up classic door games such as Trade wars and others.</span></p>
<p><span style="font-size: 7.5pt; color: #000000; font-family: Verdana;"><span id="more-109"></span></span></p>
<p><span style="font-size: 7.5pt; color: #000000; font-family: Verdana;">I also discovered that Dove-net and Fido-net are still alive and well, and there are a great many BBS’s connected all over the world. If the internet is a vast global city such as Coruscant (in Star Wars) then BBS’s and protocols such as telnet and gopher are its seedy underworld. An eclectic grouping of forgotten protocols running on forgotten systems, used by a hand full of lost souls who still cling to the web as it was. I had allot of fun setting up this BBS and I would like to use it in some way as a fun addition to part of my site. </span></p>
<p><span style="font-size: 7.5pt; color: #000000; font-family: Verdana;"> </span></p>
<p><span style="font-size: 7.5pt; color: #000000; font-family: Verdana;">In the spirit of the above and to old memories and a simpler if not better time I want to announce that <a href="telnet://bbs.techinvasion.net/">telnet://bbs.techinvasion.net</a> is open for business, with door games and all. Accounts are free, and I have even put up a forum for people to request firmware and various other things that they might need for a networking project. I hope everyone has as much fun using the system as I had creating it and I hope to see everyone in a session of Trade Wars.</span></p>
<p><a href="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs1.jpg"><img class="alignnone size-medium wp-image-110" title="BBS Login Screen" src="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs1-300x108.jpg" alt="" width="300" height="108" /></a></p>
<p><a href="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs2.jpg"><img class="alignnone size-medium wp-image-111" title="ASCII ART" src="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs2-300x128.jpg" alt="" width="300" height="128" /></a></p>
<p><a href="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs3.jpg"><img class="alignnone size-medium wp-image-112" title="Login Status" src="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs3-300x140.jpg" alt="" width="300" height="140" /></a></p>
<p><a href="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs4.jpg"><img class="alignnone size-medium wp-image-113" title="main Menu" src="http://www.techinvasion.net/wp-content/uploads/2009/02/bbs4-300x141.jpg" alt="" width="300" height="141" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techinvasion.net/2009/02/02/blast-from-the-past-bbs-and-door-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
