WIPFW Free Firewall For Windows
If you need a free and easy to use firewall for Windows, you can try WIPFW. WIPFW is a port from FreeBSD IPFW. You can download it for free from Source Forge website at: http://sourceforge.net/projects/wipfw
To install WIPFW you need to download two files, one is the WIPFW firewall and one is the GUI Frontend.
I use the stable version wipfw-0.2.7.zip, to install it extract the zip file and run install.cmd file. It will install the firewall and setup initial rules.
The extract the GUI frontend qtfw_win-beta.zip and double click on qtfw.exe, you will get a window where you can create firewall rules.
For example you want to deny all requests to port 80 on your computer. You can use the GUI Frontend so it will form a rule that will look like:
Add 00101 deny tcp from any to me 80
Combined with SquidNT you can force all users to use proxy server instead of direct connection to the internet. For that you need to open port 3128 for users on your network:
Add 00101 deny tcp from 192.168.0.0/24 to any 80
Add 00102 allow tcp from 192.168.0.0/24 to me 3128
Where 192.168.0.0/24 is your LAN IP ranges.
Markus
Most Commented Posts
Sideblog 
- Mozilla Released Thunderbird 3 9 December 2009
The long waited open source email client Thunderbird 3 is now released! Upgrading from Thunderbird 2 to Thunderbird 3 is very easy and almost automatically. Once you finished installing version 3, you. […] - Microsoft Wireless Comfort Desktop 5000 Keyboard and Mouse 22 October 2009
The Microsoft Wireless Comfort Desktop 5000 has been designed to enhance your Windows 7 experience. You can easily access programs in the task bar with convenient hot keys. Applications in the taskbar. […] - WooFunction: 178 Amazing Web Design Icons 28 September 2009
The WooFunction Icon Set includes 178 amazing web-related icons in a sophisticated and glossy design style. All 178 icons are available as 32×32 pixel PNG files and we can assure you that they are in. […] - Moblin the Next Generation OS for Netbook 27 September 2009
Moblin is an open source project that supports Linux-based software platform and is optimized for the next generation of mobile devices including netbooks, mobile Internet devices (MIDs), in-vehicle i. […] - Twitterify Your Wordpress Blog Using P2 Theme 21 September 2009
Twitter is becoming more and more popular due to its requirement as micro blogging is not much, only 140 characters that even less than a text message limit which is 160 characters. Blogger that is no. […]

June 20th, 2007 - 08:56
i’ve tried
Add 00101 deny tcp from any to me 80
but, the client on my network still can access the internet directly
is there something wrong ?
June 20th, 2007 - 10:04
the rule:
Add 00101 deny tcp from any to me 80
is for blocking all port 80 connection to your computer. what you want to do is blocking all connection to port 80 of other computer/server. so this rule should be used instead:
Add 00101 deny tcp from 192.168.0.0/24 to any 80
where 192.168.0.0/24 is your LAN IP addresses
October 1st, 2008 - 13:42
Markus, Thanks for sharing knowledge!!
But… some bad news…. WIPFW does not work on v1sta.
Works fine on XP !
October 1st, 2008 - 13:49
Hi Khaled,
thanks for the news, but i hate vista so i didn’t use it
June 22nd, 2009 - 14:27
Hi Markus
Thanks for your sharing.