Web Hosting Talk







View Full Version : IP Script Needed


MikeA
04-26-2001, 09:10 PM
I posted about this before, but thought I would do it again. I need a script that, when ran, will switch old IP's to the new Class C that I enter. It will go through and change both zone and httpd.conf files. It also needs to be compatible with Cpanel 3.x

If you have such a script or can write one quickly, please send me an e-mail. I do not want to pay an arm and a leg, so if your charge is like $100 an hour, don't bother e-mailing.

service@webauthorities.com

erik
05-06-2001, 11:40 AM
perl -i.bk -p -e 's/62\.70\.45\.31/62\.70\.45\.35/g' *

Running this from /var/named/domains will replace
62.70.45.31 with 62.70.45.35 in *all* zones
in /var/named/domains.

Remember to run backup before you try this ;)
I use it all the time so I am sure it works, but you
must be sure it does exactly what you want it to do.

(SH)Saeed
05-06-2001, 11:50 AM
erik, heheehe. I remember before I started programming in Perl, I saw the s///; function.. I was like "huh!? What the hell is that? Do I have to learn that?".. :D