Monday, July 16, 2012

Database Mapping and Backwards Incompatibilities in cPanel 11.25.1

May 12, 2010 by  
Filed under cPanel

In version 11.25.1 cPa introduced Database Mapping feature. Though it may appear to helpful in some cases but it will break backward compatibility with previous version of cPanel and in some cases may loss manageability. Let’s see the benefits and problems of cPanel Database Mapping feature. This feature will give you the following benefits: Accounts [...]

Common iptables command, cheatsheet

November 12, 2009 by  
Filed under General

#!/bin/sh #File: /etc/rc.d/rc.firewall # Immediately log and drop any known abusive IPs iptables -A INPUT -p tcp -s 87.118.104.44 -m limit –limit 1/minute  –limit-burst 10  -j LOG –log-prefix “[DROPPED_NODE]“   –log-level 4 iptables -A INPUT -p tcp -s 87.118.104.44 -j DROP # Allow from any to any on 127.0.0.1/32 iptables -A INPUT -s 127.0.0.1/32 -j ACCEPT [...]