<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://townx.org" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>townx - Page - Comments</title>
 <link>http://townx.org</link>
 <description>Comments for &quot;Page&quot;</description>
 <language>en</language>
<item>
 <title>With all due respect, it’s</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-38659</link>
 <description>&lt;p&gt;With all due respect, it’s all very well to love and care for animals, but sharing a bed or couch with them is annoying. For one, it’s not really hygienic. What’s more, it’s dangerous coz you never know when they could just go wild (no pun intended) &lt;/p&gt;</description>
 <pubDate>Fri, 19 Dec 2008 07:57:59 -0600</pubDate>
 <dc:creator>Wood Shutters</dc:creator>
 <guid isPermaLink="false">comment 38659 at http://townx.org</guid>
</item>
<item>
 <title>great step by step</title>
 <link>http://townx.org/installing-ubuntu-6-10-edgy-guest-operating-system-vmware#comment-38623</link>
 <description>&lt;p&gt;great step by step installing guide, thanks&lt;/p&gt;</description>
 <pubDate>Sun, 07 Dec 2008 12:02:56 -0600</pubDate>
 <dc:creator>sts</dc:creator>
 <guid isPermaLink="false">comment 38623 at http://townx.org</guid>
</item>
<item>
 <title>Hey, very interesting</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-38552</link>
 <description>&lt;p&gt;Hey, very interesting post.&lt;/p&gt;

&lt;p&gt;My written English is not so good so I write in German:&lt;/p&gt;

&lt;p&gt;&quot;Lieber den Spatz in der Hand, als die Taube auf dem Dach.&quot;&lt;br /&gt;
	&lt;br /&gt;
Yours sincerely&lt;br /&gt;
Fett&lt;/p&gt;</description>
 <pubDate>Sun, 09 Nov 2008 03:49:36 -0600</pubDate>
 <dc:creator>Fettverbrennung</dc:creator>
 <guid isPermaLink="false">comment 38552 at http://townx.org</guid>
</item>
<item>
 <title>My cat enjoys tearing</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-38542</link>
 <description>&lt;p&gt;My cat enjoys tearing pillows &lt;/p&gt;</description>
 <pubDate>Mon, 03 Nov 2008 07:47:34 -0600</pubDate>
 <dc:creator>David</dc:creator>
 <guid isPermaLink="false">comment 38542 at http://townx.org</guid>
</item>
<item>
 <title>i know, i know.</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-38538</link>
 <description>&lt;p&gt;My parents Jack Russell dog loves to get in bed with me in the morning! I know its not normal and sounds a bit wierd, but i love him jumping an and having a snooze with me.  &lt;/p&gt;

&lt;p&gt;I did see a program on the tv very recently where a women did the same with her dog and in actually attacked her.. not sure what the exact reason was, but it bit her nose off.... &lt;/p&gt;</description>
 <pubDate>Thu, 30 Oct 2008 10:22:20 -0500</pubDate>
 <dc:creator>chesterfield furniture</dc:creator>
 <guid isPermaLink="false">comment 38538 at http://townx.org</guid>
</item>
<item>
 <title>Thanks. That does look like</title>
 <link>http://townx.org/simple_firewall_for_ubuntu_using_iptables#comment-38531</link>
 <description>&lt;p&gt;Thanks. That does look like an improvement. Like I said in the post, I&#039;m not really an iptables expert!&lt;/p&gt;</description>
 <pubDate>Tue, 21 Oct 2008 13:26:59 -0500</pubDate>
 <dc:creator>elliot</dc:creator>
 <guid isPermaLink="false">comment 38531 at http://townx.org</guid>
</item>
<item>
 <title>Ooops! Forgot the LocalHost...</title>
 <link>http://townx.org/simple_firewall_for_ubuntu_using_iptables#comment-38525</link>
 <description>&lt;p&gt;&lt;code&gt;iptables -A INPUT -i lo -j ACCEPT&lt;/code&gt;&lt;/p&gt;</description>
 <pubDate>Sun, 19 Oct 2008 18:03:15 -0500</pubDate>
 <dc:creator>Lifenstein</dc:creator>
 <guid isPermaLink="false">comment 38525 at http://townx.org</guid>
</item>
<item>
 <title>Simpler Alternative (?)</title>
 <link>http://townx.org/simple_firewall_for_ubuntu_using_iptables#comment-38524</link>
 <description>&lt;p&gt;For a personal home computer (running no services for the outside world),  here is a simpler version :&lt;/p&gt;

&lt;p&gt;&lt;code&gt;#!/bin/bash&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;############################################################&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;#---- Script to setup a simple firewall using iptables -----&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;###&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;# * Blocks all incoming connections, except those opened by&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;#   me, or related to already open connections&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;# * Blocks all forward requests&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;# * Allows all outgoing connections&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;###&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;############################################################&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;# Clearing all previous rules&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;iptables -F&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;# Setting Default Policies&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;iptables -P INPUT DROP&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;iptables -P OUTPUT ACCEPT&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;iptables -P FORWARD DROP&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;# Allowing already-established and related-incoming connections&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;/code&gt;&lt;/p&gt;</description>
 <pubDate>Sun, 19 Oct 2008 17:48:21 -0500</pubDate>
 <dc:creator>Lifenstein</dc:creator>
 <guid isPermaLink="false">comment 38524 at http://townx.org</guid>
</item>
<item>
 <title>Solution</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-38477</link>
 <description>&lt;p&gt;I have 3 dogs and 2 cats and had a terrible time keeping them off the furniture.  My cats especially - they would spray or claw my couches.  A few months ago, I started using Feliway&#039;s Anti-Marking Spray.  It works really well - my cats have only had a few accidents since.  Does anyone else notice that when one has an accident, the others will try to spray the same spot?&lt;/p&gt;</description>
 <pubDate>Thu, 18 Sep 2008 11:52:51 -0500</pubDate>
 <dc:creator>Quality Outdoor Furniture</dc:creator>
 <guid isPermaLink="false">comment 38477 at http://townx.org</guid>
</item>
<item>
 <title>Yep</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-38452</link>
 <description>&lt;p&gt;Pretty much sums it up, you&#039;re right!&lt;/p&gt;</description>
 <pubDate>Thu, 04 Sep 2008 10:07:35 -0500</pubDate>
 <dc:creator>Outdoor Furniture</dc:creator>
 <guid isPermaLink="false">comment 38452 at http://townx.org</guid>
</item>
<item>
 <title>Only if you&#039;re running a web</title>
 <link>http://townx.org/simple_firewall_for_ubuntu_using_iptables#comment-38371</link>
 <description>&lt;p&gt;Only if you&#039;re running a web server :)&lt;/p&gt;</description>
 <pubDate>Sat, 02 Aug 2008 15:40:41 -0500</pubDate>
 <dc:creator>elliot</dc:creator>
 <guid isPermaLink="false">comment 38371 at http://townx.org</guid>
</item>
<item>
 <title>firewall</title>
 <link>http://townx.org/simple_firewall_for_ubuntu_using_iptables#comment-38131</link>
 <description>&lt;p&gt;Hi,&lt;br /&gt;
Great script - I&#039;ve used it as the starter for my setup.&lt;/p&gt;

&lt;p&gt;ShieldsUP notes that your script shows ports 0 and 1 as closed rather than in stealth mode, and also doesn&#039;t drop &lt;span class=&quot;caps&quot;&gt;ICMP &lt;/span&gt;packets - meaning that if the machines are directly attached to the internet via ppp, or with an &lt;span class=&quot;caps&quot;&gt;ADSL &lt;/span&gt;modem with no firewall, then they can be discovered.&lt;/p&gt;

&lt;p&gt;Also your script doesn&#039;t handle dialup connections.&lt;/p&gt;

&lt;p&gt;The following changes mitigates against these:&lt;/p&gt;


&lt;ol&gt;
&lt;li&gt;drop everything else on ppp&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-i ppp+ -p udp -j &lt;span class=&quot;caps&quot;&gt;DROP&lt;/span&gt;&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-i ppp+ -p tcp -m tcp --syn -j &lt;span class=&quot;caps&quot;&gt;DROP&lt;/span&gt;&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-i ppp+ -p icmp -j &lt;span class=&quot;caps&quot;&gt;DROP&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Explcitly deal with port 0&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p tcp --sport 0&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p udp --sport 0&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p tcp --dport 0&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p udp --dport 0&lt;/li&gt;
&lt;li&gt;Explcitly deal with port 1&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p tcp --sport 1&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p udp --sport 1&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p tcp --dport 1&lt;br /&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-j &lt;span class=&quot;caps&quot;&gt;DROP &lt;/span&gt;-p udp --dport 1&lt;/li&gt;
&lt;/ol&gt;



&lt;p&gt;regards&lt;/p&gt;

&lt;p&gt;Colin&lt;/p&gt;</description>
 <pubDate>Thu, 08 May 2008 03:01:53 -0500</pubDate>
 <dc:creator>Guest</dc:creator>
 <guid isPermaLink="false">comment 38131 at http://townx.org</guid>
</item>
<item>
 <title>Thx ;)</title>
 <link>http://townx.org/simple_firewall_for_ubuntu_using_iptables#comment-38122</link>
 <description>&lt;p&gt;thanks!though  iptables -A &lt;span class=&quot;caps&quot;&gt;INPUT &lt;/span&gt;-p tcp -s 0/0 --dport 80 -j &lt;span class=&quot;caps&quot;&gt;ACCEPT &lt;/span&gt;is needed!&lt;/p&gt;</description>
 <pubDate>Wed, 30 Apr 2008 18:18:12 -0500</pubDate>
 <dc:creator>Prakash</dc:creator>
 <guid isPermaLink="false">comment 38122 at http://townx.org</guid>
</item>
<item>
 <title>Well, we&#039;ve only got a</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-34383</link>
 <description>&lt;p&gt;Well, we&#039;ve only got a rabbit, and she&#039;s in a hutch. So no furniture issues.&lt;/p&gt;</description>
 <pubDate>Thu, 17 Apr 2008 18:15:49 -0500</pubDate>
 <dc:creator>elliot</dc:creator>
 <guid isPermaLink="false">comment 34383 at http://townx.org</guid>
</item>
<item>
 <title>Off the furniture?</title>
 <link>http://townx.org/animals_2_why_animals_should_be_kept_off_furniture_17_12_1991#comment-26961</link>
 <description>&lt;p&gt;That&#039;s assuming that you still have furniture. Most of the time they just tear it up with their claws. I still can&#039;t live without them :)&lt;/p&gt;</description>
 <pubDate>Tue, 25 Mar 2008 15:52:13 -0500</pubDate>
 <dc:creator>Pet Websites</dc:creator>
 <guid isPermaLink="false">comment 26961 at http://townx.org</guid>
</item>
</channel>
</rss>
