<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>Topic &#x27;[OS X] PF Firewall FrontEnd&#x27; in forum &#x27;All Things Macintosh&#x27; - dslreports.com</title>
<link>http://www.dslreports.com/forum/OS-X-PF-Firewall-FrontEnd-27775375</link>
<description></description>
<language>en</language>
<pubDate>Mon, 20 May 2013 07:54:35 EDT</pubDate>
<lastBuildDate>Mon, 20 May 2013 07:54:35 EDT</lastBuildDate>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27784815</link>
<description><![CDATA[Irish Shark posted : Maybe not all routers with stock FW can do this (SOHO) routers that most folks buy.<br><br>You may have to slap Tomato or DD-WRT on it, but it can be done.<br><small>--<br>"You can observe a lot by watching". Yogi Berra</small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27784815</guid>
<pubDate>Mon, 03 Dec 2012 18:12:49 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781611</link>
<description><![CDATA[Da Geek Kid posted : rofl. Please do. I just asked a simple "Yes/No" question. A no would have been helpful.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781611</guid>
<pubDate>Sun, 02 Dec 2012 19:31:46 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781389</link>
<description><![CDATA[colbond posted : No problem. I won't try to help next time.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781389</guid>
<pubDate>Sun, 02 Dec 2012 17:49:25 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781308</link>
<description><![CDATA[Da Geek Kid posted : did you NOT at least read the Original Post? He actually included the link himself.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781308</guid>
<pubDate>Sun, 02 Dec 2012 17:02:47 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781107</link>
<description><![CDATA[colbond posted : Check out IceFloor. It's basically a gui of pf. I haven't had much opportunity to play with it, but it sounds like exactly what you're looking for.<br><br>&raquo;<A HREF="http://www.hanynet.com/icefloor/" >www.hanynet.com/icefloor/</A>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27781107</guid>
<pubDate>Sun, 02 Dec 2012 15:59:25 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27780473</link>
<description><![CDATA[anon posted : Below is the pf.conf I am using with iOS 5 on my iPhone 4.  Since you're pretty adept I think you could use this as a starting point without having to deal with a firewall front end.  My experience has been the CLI, both with pf and iptables, are far superior than a GUI system.<br><br>Forgive me if I'm showing you things you already know.<br><br><pre><br>## Last modified Feb 03, 2012<br> <br>############## Default Policy ##############<br> <br>set skip on lo0<br>set limit states 20000<br> <br>block in all<br>pass out all keep state<br> <br>############## Ingress Firewall ##############<br> <br>##Localhost<br>pass in quick from 127.0.0.0/8 to 127.0.0.0/8 keep state<br>pass in quick from ::1 to ::1 keep state<br> <br>##Permit certain IPv4 ICMP types<br>pass in quick inet proto icmp icmp-type echoreq keep state<br>pass in quick inet proto icmp icmp-type unreach keep state<br> <br>##Permit DHCP<br>pass in quick on en0 proto udp from any to any port 67:68 keep state<br> <br>##Permit SSH access on en0 (Wifi)<br>##If you use SSH on your iOS device enable these networks here.<br>#pass in quick on en0 proto tcp from 192.168.1.0/24 to any port 22 keep state<br> <br>##Allow Push for FaceTime to Apple's CIDR /8 but don't allow rogue XMPP over SSL (Apple Pu sh Notification Service)<br>##If you are using a 3rd party Push server such as with Colloquy, then add these networks  in addition to Apple's CIDR /8.<br>pass in quick proto tcp from 17.0.0.0/8 port 5223 to any no state<br> <br>##IPv6 Required icmpv6 per RFC 4890<br>pass in quick inet6 proto ipv6-icmp icmp6-type toobig keep state<br>pass in quick inet6 proto ipv6-icmp icmp6-type timex keep state<br>pass in quick inet6 proto ipv6-icmp icmp6-type paramprob keep state<br>pass in quick inet6 proto ipv6-icmp icmp6-type echorep keep state<br>pass in quick inet6 proto ipv6-icmp icmp6-type echoreq keep state<br> <br>##IPv6 Trust link-local for all icmpv6 traffic<br>pass in quick proto ipv6-icmp from fe80::/10 to any keep state<br>pass in quick proto ipv6-icmp from ff02::/16 to any keep state<br>pass in quick proto ipv6-icmp from any to ff02::/16 keep state<br> <br>##IPv6 Trust our allocated /64 for all icmpv6 traffic on en0 (Wifi)<br>##If you are using IPv6 add your IPv6 allocation here<br>#pass in quick on en0 proto ipv6-icmp from 2001:db8::/64 to any keep state<br> <br>############## Egress Firewall ##############<br> <br>##Allow Push for FaceTime to Apple's CIDR /8 but don't allow rogue XMPP over SSL (Apple Pu sh Notification Service)<br>##If you are using a 3rd party Push server such as with Colloquy, then add these networks  in addition to Apple's CIDR /8.<br>block return-rst out quick proto tcp from any to !17.0.0.0/8 port 5223 flags S/S<br> <br>##Block mDNS egress, for many networks this is an nuisance, if you depend on mDNS then com ment or remove this line.<br>block out quick from any to 224.0.0.251<br></pre><br><br>In your example, simply add:<br><br><pre><br>block out quick from any to 208.91.196.0/22<br></pre><br><br>If you'd want to issue TCP RST you could:<br><br><pre><br>block return-rst out quick proto tcp from any to 208.91.196.0/22<br>block out quick from any to 208.91.196.0/22<br></pre><br><br>For iOS, I effect the firewall rules by running <pre>pfctl -ef /path/to/pf.conf</pre><br><br>To view the status of the firewall I simply <pre>pfctl -sa</pre><br>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27780473</guid>
<pubDate>Sun, 02 Dec 2012 12:11:16 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27779905</link>
<description><![CDATA[daveinpoway posted : It has been my experience that most consumer-grade routers will not handle advanced stuff such as country blocking- you <br>need after-market (Linux-based) software for this.<br><br>I am using the Home (free) edition of Astaro Security Gateway (now renamed as Sophos UTM) on a PC that I assembled for this purpose- it has all of these advanced blocking features. ]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27779905</guid>
<pubDate>Sun, 02 Dec 2012 01:50:41 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27779094</link>
<description><![CDATA[Da Geek Kid posted : for things like IP addresses I would use IceFloor. But I would highly recommend not using any apple device as a firewall. They are very simple in design and do not assist in anything for network troubleshooting. I would recommend anything that runs DD-WRT or any other open WRT firmware. They provide a wide range of abilities and tweaks. Although, doing this on your laptop is a good idea as always when going out to the open world. You want to make sure you are covered not just behind the firewall at home.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27779094</guid>
<pubDate>Sat, 01 Dec 2012 18:02:45 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27778823</link>
<description><![CDATA[Irish Shark posted : The reason that I asked if you have a router is because most routers will block incoming, outgoing, or both IPs, sites, Domains, even a whole country.<br><br>I am not 100% up to speed on the TC firewall, but I believe it can be done.<br><small>--<br>"You can observe a lot by watching". Yogi Berra</small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27778823</guid>
<pubDate>Sat, 01 Dec 2012 16:02:53 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27778120</link>
<description><![CDATA[TamaraB posted : <div class="bquote"><said>said by <a href="/profile/885989" onClick="this.blur(); return popup(event,'/uidpop?ajh=1&uid=885989');">Da Geek Kid</a>:</said><p>Those addresses go into your hosts file... ;)<br> </p></div>How do you put IP ranges into a hosts file? What entry in a hosts file would block 200.0.0.0 to 200.254.254.254? ]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27778120</guid>
<pubDate>Sat, 01 Dec 2012 10:52:33 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27777741</link>
<description><![CDATA[Da Geek Kid posted : Those addresses go into your hosts file... ;)<br><br>I'd use both...]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27777741</guid>
<pubDate>Sat, 01 Dec 2012 03:12:07 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27777705</link>
<description><![CDATA[TamaraB posted : Looks like an interesting program to manage specific services. What it seems to lack is the ability to do such things like drop syn packets from entire CIDR blocks. I am looking to open some services on my iMac, and want to restrict all access from certain geographic areas like all of apnic, lacnic, and much of eastern europe. Dropping all packets from 200.0.0.0/8 for instance is something which PF can do easily, but the interface to PF which Apple supplies is woefully deficient. <br><br>What I am looking for is a GUI front end to PF (pfctl). IceFloor seems to be the closest I have found. What I am concerned about is its effect on all the auto-magic OSX does. <br><small>--<br>"Remember, remember the fifth of November.<br>Gunpowder, Treason and Plot.<br>I see no reason why Gunpowder Treason<br>Should ever be forgot." <br><br>"People should not be afraid of their governments. Governments should be afraid of their people"<br><br></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27777705</guid>
<pubDate>Sat, 01 Dec 2012 02:08:37 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27777095</link>
<description><![CDATA[Da Geek Kid posted : check out Little Snitch: &raquo;<A HREF="http://www.obdev.at/products/littlesnitch/index.html" >www.obdev.at/products/littlesnit&middot;&middot;&middot;dex.html</A>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27777095</guid>
<pubDate>Fri, 30 Nov 2012 20:51:25 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27776619</link>
<description><![CDATA[TamaraB posted : <div class="bquote"><said>said by <a href="/profile/177643" onClick="this.blur(); return popup(event,'/uidpop?ajh=1&uid=177643');">Irish Shark</a>:</said><p>Do you have a router?<br> </p></div>Yes. I have two 3TB Time Capsules, one is my Internet router and backup drive. The other one is extending my local network and also a secondary Time Machine backup drive. <br><br> ]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27776619</guid>
<pubDate>Fri, 30 Nov 2012 17:49:50 EDT</pubDate>
</item>

<item>
<title>Re: [OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27775409</link>
<description><![CDATA[Irish Shark posted : Do you have a router?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-OS-X-PF-Firewall-FrontEnd-27775409</guid>
<pubDate>Fri, 30 Nov 2012 12:31:06 EDT</pubDate>
</item>

<item>
<title>[OS X] PF Firewall FrontEnd</title>
<link>http://www.dslreports.com/forum/OS-X-PF-Firewall-FrontEnd-27775375</link>
<description><![CDATA[TamaraB posted : Hi:<br><br>I am looking for more control over my Mountain Lion's PF firewall. I want to be able to block entire networks like 208.91.196.0/22. At the same time I don't want to interfere with the application portion of OSX's firewall interface, so things like back-to-my-mac still functions. I searched for and found <A HREF="http://www.hanynet.com/icefloor/index.html>IceFloor</a>. <br><br>Anyone here use this? ]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/OS-X-PF-Firewall-FrontEnd-27775375</guid>
<pubDate>Fri, 30 Nov 2012 12:23:09 EDT</pubDate>
</item>

</channel>
</rss>
