Ramblings from MostlyChris

Tech stuff and a bit more

Browsing Posts published in August, 2009

There are times when you may need to migrate many IP addresses in Plesk. You could either do this by hand, one domain at a time or you can modify the database by hand which will save countless years of your life. I will assume you have logged into mysql and have selected the psa [...]

Some of you may be aware that along with my tech job I am also a deputy sheriff. A couple of years ago we were looking at replacing our records management system because it had some serious flaws. Among them was that it could not work between our two offices because it had no client/server [...]

There is a method to bypass RBL checking for certain addresses and domains in Postfix. This assumes that you are using RBL checking in the first place. First, create an rbl_override file in /etc/postfix. vi /etc/postfix/rbl_override Place the domains and/or IP addresses you would like whitelisted into that file. 192.168.0.1 192.168.0.2 domain.com subdomain.example.com Create the [...]

SSH Tunnel

No comments

You can access ports on a remote server and map them to a port on your local computer with an SSH tunnel. I do this with the command: ssh -N -L localport:127.0.0.1:remote_port user@remote_host