Matt Posted August 13, 2007 Author Report Share Posted August 13, 2007 Heya shanenin. I just got back home. Have you had a chance to mess around with it? Quote Link to post Share on other sites
shanenin Posted August 13, 2007 Report Share Posted August 13, 2007 Not yet. I am going to install it with vmware.edit added//I just got vmware installed. Quote Link to post Share on other sites
Matt Posted August 14, 2007 Author Report Share Posted August 14, 2007 Hi shanenin. I've finally given up of Firestarter. Since Firestarter is just a frontend to iptables, I decided I would setup iptables myself and have that load on bootup. Here's what I did:iptables -Fiptables -P INPUT DROPiptables -P FORWARD DROPiptables -P OUTPUT ACCEPTiptables -A INPUT -i lo -j ACCEPTiptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPTiptables-save > /etc/iptables.up.rulesThen, I edited /etc/network/interfaces as follows:auto eth0iface eth0 inet dhcp pre-up iptables-restore < /etc/iptables.up.rules(The last line was added)At the first couple of tries, my computer passes HackerWatch and Shields Up tests right from bootup; however, I would like to know if you see any issues with my iptables rules. Finally, I want to remove Firestarter and all the stuff we created. What is the best way to go about that? Quote Link to post Share on other sites
shanenin Posted August 14, 2007 Report Share Posted August 14, 2007 I think that was smart of you to take the time to learn how to use iptables rules. I was never patient enough to learn. I have no advice to give.As to cleaning up firestarter. First use the following command to remove all the symlinkssudo update-rc.d -f firestarter removenow lets remove the script from the directory /etc/init.dsudo rm /etc/init.d/firestarterthen use apt-get or synaptic to uninstall firestarter Quote Link to post Share on other sites
Matt Posted August 14, 2007 Author Report Share Posted August 14, 2007 Fantastic. Looks like I've finally got a good-working firewall. I will post a new thread regarding my iptables setup. Thanks again for all your help shanenin! Quote Link to post Share on other sites
shanenin Posted August 14, 2007 Report Share Posted August 14, 2007 your welcome :-) Quote Link to post Share on other sites
RoLex Posted October 23, 2007 Report Share Posted October 23, 2007 (edited) Hey everyone.I just wanted to tell that original Firestarter script works very well. You all are expecting it to show in system process list or starting the GUI. Well, it doesn't need to do that to be running. It's enough with configuring IPTables.Here is what you need to do;$ sudo cp /etc/firestarter/firestarter.sh /etc/init.d$ sudo chmod +x /etc/init.d/firestarter.sh$ sudo update-rc.d firestarter.sh defaultsAfter rebooting you can do following to test the firewall;$ sudo /etc/firestarter/firestarter.sh statusResults are following: Firewall is running. Then, if you want to start GUI and see the events or configure traffic policy, it's your own business, you have to start it manually. Edited October 23, 2007 by RoLex Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.