<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: iptables -- plz help in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714692#M85758</link>
    <description>If you are trying to restrict users on a LAN to given machiens for given services, this is as good as you can get really.&lt;BR /&gt;&lt;BR /&gt;You DHCP to given MAC's, then only allow those details through the firewall for given services.&lt;BR /&gt;&lt;BR /&gt;At my friends church, this is exactally how we do it for the network.&lt;BR /&gt;&lt;BR /&gt;Two networks over-lap there, so the restrictions only allow given area's given access based on the machine's MAC.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;.. Then you add username details on top of that, and well, you've got a pretty secure network ..</description>
    <pubDate>Sun, 22 Jan 2006 05:34:19 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2006-01-22T05:34:19Z</dc:date>
    <item>
      <title>iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714688#M85754</link>
      <description>Dear Gurus&lt;BR /&gt;&lt;BR /&gt;iptables -A INPUT -s 10.2.2.255 -p tcp --dport 80 -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;plz let me know the syntax when instead of "Source IP" i allow/deny on the basis of Sources' MAC address&lt;BR /&gt;&lt;BR /&gt;Thanks n Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Sun, 22 Jan 2006 04:26:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714688#M85754</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2006-01-22T04:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714689#M85755</link>
      <description>try this:&lt;BR /&gt;iptables -A INPUT  -m mac -mac-source xx:xx:xx:xx:xx -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;This will accept packets from matching MAC address</description>
      <pubDate>Sun, 22 Jan 2006 04:48:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714689#M85755</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2006-01-22T04:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714690#M85756</link>
      <description>MAC address matching is an extension module to iptables, so the syntax is a bit different. For example:&lt;BR /&gt;&lt;BR /&gt;iptables -A INPUT -m mac --mac-source 00:11:22:33:44:55 -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;If your Linux will not accept that, it is possible that your iptables command and/or kernel are either too old or don't have MAC address matching module configured.&lt;BR /&gt;&lt;BR /&gt;Remember that MAC address filters work in your local network segment only: anything that's coming in through a router has the router's MAC address when it gets to you. &lt;BR /&gt;&lt;BR /&gt;Another thing that limits the usability of MAC address filtering is that the MAC addresses are easy to change: in Linux, it is usually as simple as "ifconfig eth0 hw ether 00:11:22:33:44:55". Even Windows usually allows you to do that, but the option is hidden rather deep in the network card's "Properties..." dialogs.</description>
      <pubDate>Sun, 22 Jan 2006 05:00:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714690#M85756</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2006-01-22T05:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714691#M85757</link>
      <description>Shalom Maaz,&lt;BR /&gt;&lt;BR /&gt;As far as this goes, be careful on the denial side. Mac addresses are easy to clone and spoof.&lt;BR /&gt;&lt;BR /&gt;If I may ask, what are you trying to accomplish? I've done a lot with iptables and can suggest a few things.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sun, 22 Jan 2006 05:01:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714691#M85757</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-01-22T05:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714692#M85758</link>
      <description>If you are trying to restrict users on a LAN to given machiens for given services, this is as good as you can get really.&lt;BR /&gt;&lt;BR /&gt;You DHCP to given MAC's, then only allow those details through the firewall for given services.&lt;BR /&gt;&lt;BR /&gt;At my friends church, this is exactally how we do it for the network.&lt;BR /&gt;&lt;BR /&gt;Two networks over-lap there, so the restrictions only allow given area's given access based on the machine's MAC.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;.. Then you add username details on top of that, and well, you've got a pretty secure network ..</description>
      <pubDate>Sun, 22 Jan 2006 05:34:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714692#M85758</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2006-01-22T05:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714693#M85759</link>
      <description>Dear All Zillions of thanks for help.. even a Great Help ;).&lt;BR /&gt;&lt;BR /&gt;Dear Alexander Chuzhoy thanks for such a prompt reply .. esp thanks goes to u.&lt;BR /&gt;&lt;BR /&gt;Dear Matti Kurkela... u r a very nice person ;), Zillions of thanks for such a nice and detailed reply.&lt;BR /&gt;&lt;BR /&gt;Thanks Dear SEP... u too a nice/kind person ;). I am going to use S-MAC to only restric access to my own lan resources.&lt;BR /&gt;&lt;BR /&gt;And Stuart Browne thank u so much for sharing ur knowledge ;). Dear Stuart Browne u wrote:&lt;BR /&gt;".. Then you add username details on top of that, and well, you've got a pretty secure network .."&lt;BR /&gt;I m sorry .. i always admit that i m dumb... what i understand is that its also possible that we can also use username as a source for deny/allow in IPtables ?</description>
      <pubDate>Sun, 22 Jan 2006 09:35:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714693#M85759</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2006-01-22T09:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714694#M85760</link>
      <description>No, unfortunately it's not possible to use IPTables on that level.&lt;BR /&gt;&lt;BR /&gt;You do that on the protocol level (with Apache's Allow/Deny in this case).</description>
      <pubDate>Sun, 22 Jan 2006 14:59:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714694#M85760</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2006-01-22T14:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: iptables -- plz help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714695#M85761</link>
      <description>Thanks Stuart</description>
      <pubDate>Mon, 23 Jan 2006 00:07:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-plz-help/m-p/3714695#M85761</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2006-01-23T00:07:23Z</dc:date>
    </item>
  </channel>
</rss>

