<?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>The Linux Blog &#187; filter</title>
	<atom:link href="http://linuxblog.ro/tag/filter/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxblog.ro</link>
	<description>UNIX, LINUX, BSD, OSX</description>
	<lastBuildDate>Thu, 19 Aug 2010 14:32:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>IPTables: Filtering by MAC Address</title>
		<link>http://linuxblog.ro/iptables-filtering-by-mac-address/</link>
		<comments>http://linuxblog.ro/iptables-filtering-by-mac-address/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 14:15:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[deny]]></category>
		<category><![CDATA[drop]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://linuxblog.ro/?p=373</guid>
		<description><![CDATA[If we want filter a MAC in our firewall, we can use IPTables to this.]]></description>
			<content:encoded><![CDATA[<p>If we want filter a MAC in our firewall, we can use IPTables to this. For example, if we want to filter a MAC like 00:12:8D:EE:6E:AB (Must type the MAC with this format -&gt; HH:HH:HH:HH:HH:HH) and deny their access to our Firewall we can put type this:</p>
<p><code>iptables -A INPUT -m -mac --mac-source 00:12:8D:EE:6E:AB -j DROP</code></p>
<p>Also, we can use the ! operator, wich inverts the operation, for example, if we type:</p>
<p><code>iptables -A INPUT -m -mac --mac-source <strong>!</strong> 00:12:8D:EE:6E:AB -j DROP</code></p>
<p>All the packets will be dropped, except the packets from 00:12:8D:EE:6E:AB MAC.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxblog.ro/iptables-filtering-by-mac-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
