<< October 2011 | Home | December 2011 >>

Protect the Internet

On November 16th, Congress holds hearings on the first American Internet censorship system. This bill can pass. If it does, the Internet and free speech will never be the same.

Join us to stop this bill.

 

http://www.mozilla.org/sopa/

https://wfc2.wiredforchange.com/o/9042/p/dia/action/public/?action_KEY=8173

Social Bookmarks :  Add this post to Slashdot    Add this post to Digg    Add this post to Reddit    Add this post to Delicious    Add this post to Stumble it    Add this post to Google    Add this post to Technorati    Add this post to Bloglines    Add this post to Facebook    Add this post to Furl    Add this post to Windows Live    Add this post to Yahoo!

Export this post as PDF document  Export this post to PDF document

iptables - Setting Up HTTP Services

One common task when setting up a new HTTP server is to configure iptables to allow traffic to your HTTP server. The commands below will allow traffic on ports 80 and 443. You may need to adjust the 5 and 6 values to your environment - these are appropriate for a clean CentOS 6.0 installation.

sudo iptables -L -v
sudo iptables -I INPUT 5 -p tcp --dport 80 -j ACCEPT
sudo iptables -I INPUT 6 -p tcp --dport 443 -j ACCEPT
sudo /sbin/service iptables save
sudo iptables -L -v
Social Bookmarks :  Add this post to Slashdot    Add this post to Digg    Add this post to Reddit    Add this post to Delicious    Add this post to Stumble it    Add this post to Google    Add this post to Technorati    Add this post to Bloglines    Add this post to Facebook    Add this post to Furl    Add this post to Windows Live    Add this post to Yahoo!

Export this post as PDF document  Export this post to PDF document