Thursday, November 3, 2011

AOL ignored.

If you think you're really clever and log into your aol account and try and fool AOL, you have another thing coming.

I know what you're thinking, I'll just send a junk load of messages and mark them all not spam and or click all the messages and mark them as read.

AOL is smarter than that - AOL thinks you just want to ignore them.

----------------------------------------------
Status for 'Re: Re: Meeting tomorrow':
redacted@aol.com ignored

Status for 'Re: Re: Meeting tomorrow':
redacted@aol.com ignored

Status for 'Learn and Speak another L...':
redacted@aol.com read Fri, Nov 4, 2011 1:34 am

Status for 'Re: Fwd: Re: Re: Fwd: Re:...':
redacted@aol.com read Fri, Nov 4, 2011 1:35 am

Status for 'Re: Fwd: Re: Re: Fwd: Re:...':
redacted@aol.com read Fri, Nov 4, 2011 1:39 am

----------------------------------------------

Tuesday, November 1, 2011

Adding IPs it's simple!

Two commands:

$ /sbin/ifconfig eth0:0 192.168.0.4
$ /sbin/route add -host 192.168.0.4 dev eth0:0

(replace that IP with the one you'd like to add)
This change will no longer be in effect after rebooting. Therefor you must add the two commands to the bottom of your /etc/rc.local file. Your NIC should now be listening and responding on both this and the original IP address found in /etc/sysconfig/network-scripts/ifcfg-eth0

If you want to add add more than one additional IP address, continue like this:

$ /sbin/ifconfig eth0:0 192.168.0.4
$ /sbin/ifconfig eth0:1 192.168.0.5
$ /sbin/ifconfig eth0:2 192.168.0.6
$ /sbin/route add -host 192.168.0.4 dev eth0:0
$ /sbin/route add -host 192.168.0.5 dev eth0:1
$ /sbin/route add -host 192.168.0.6 dev eth0:2