Ensim Zone File Template
Tue, 04/09/2013 - 08:09 — sandipAll bind templates are at "/usr/lib/opcenter/bind" location.
Modify "named_conf_zone.tmpl" file to allow for transfers adding in the IP addresses of secondary DNS.
- sandip's blog
- Login or register to post comments
- Read more
Changing IP address of Ensim server
Wed, 04/03/2013 - 15:33 — sandipTo change the IP address of an Ensim server, modify the following files replacing any instance of the old IP address with the new one:
/etc/hosts
/etc/resolv.conf
/etc/sysconfig/network
/etc/sysconfig/network-scrip ts/ifcfg-eth0
/etc/virtualhosting/namebase d_ip_addrs
/etc/httpd/conf/httpd20_app. conf
/etc/virtualhosting/localnam eserver
/etc/bind/options.conf.wp
/>/home/virtual/FILESYSTEMTEMP LATE/siteinfo/etc/resolv.conf
Reboot the server, then run the "NBDetectchanges"
/usr/local/bin/NBDetectchanges
- sandip's blog
- Login or register to post comments
- Read more
Patching gpans' ensim squirrelmail
Sat, 03/29/2008 - 00:52 — sandipHere's is how I updated gpans' squirrelmail package with the current version (1.4.13).
# cd /usr/share
# wget 'http://superb-west.dl.so urceforge.net/sourceforge/squi rrelmail/squirrelmail-1.4.13.t ar.gz'
# tar -xvzf squirrelmail-1.4.13.tar.gz
# rm squirrelmail-1.4.13.tar.gz
# rm squirrelmail-1.4.13/config/con fig.php
# rm squirrelmail-1.4.13/config/con fig_local.php
# ln -s /etc/squirrelmail/config.php squirrelmail-1.4.13/config/con fig.php
# ln -s /etc/squirrelmail/config_local .php squirrelmail-1.4.13/config/con fig_local.php
Then changed the below files to include the Ensim virtualization hack (See attached diff patch):
squirrelmail-1.4.13/functions/ prefs.php
squirrelmail-1.4.13/function s/global.php
squirrelmail-1.4.13/src/redi rect.php
squirrelmail-1.4.13/src/logi n.php
Finally, I moved the old squirrelmail folder and symlinked to the new one.
# mv squirrelmail squirrelmail-1.4.8-1.1.ensim.c t
# ln -s squirrelmail-1.4.13 squirrelmail
Migrating website from Ensim Basic 3.1.12-9 to Ensim Pro 4.0.2-7
Sun, 02/20/2005 - 22:08 — sandipThe site migration was done from a server with Ensim Basic 3.1.12-9 (secure) to a server running Ensim Pro 4.0.2-7 (serv01).
-
----- Preparation prior to migration -----
48 hrs prior to migration, edit the SOA settings with the "Refresh Interval" and the "Minimum Time To Live" to 600 for the domains.
Remove frontpage extensions from all sites.
Backup sites on secure (ensim 3.1.12-9) with ensimbackup and move it to serv01.
# ensimbackup -l </path/to/domain_list>----- In serv01 ----- Check to make sure that the default site template has enough databases to assign in pro.
Remove all instances of the domains to be restored in /etc/bind/secure_dns.conf .
Delete all corresponding /var/named/sec.domain.tld files.
# for x in `cat <domain list file>`; do rm /var/named/sec.$x; doneRestart named. Turn sim checking off for webbpliance (init.ocwhttpd off) in "/usr/local/sim/config/mods.co
`service webppliance stop`
Unhide all hidden services.
Restore with ensimprorestore on serv01 (ensim 4.0.2-7.rhel).
# ensimprorestore -a </path/to/dir/>Assign Spam Filter and Mail Scanner and remove ssh and squirrelmail for the restored domains.
# for x in `cat <domain list file>`; do \ # EditVirtDomain -c mailscanner,on -c spam_filter,on \ -c ssh,off -c sqmail,off [-c frontpage,on] $x; doneHide services, `/etc/appliance/svcdb/hide.sh hide` `service webppliance start`
Turn sim checking on for webbpliance (init.ocwhttpd on).
Run `/var/www/html/secureDNS/dns_u
Disable /etc/bind/dnsupdate for 48 hrs.
----- In secure -----
Delete all instances of the domains from the zone list, "/etc/bind/bind.conf.wp".
Delete all corresponding /var/named/zone.domain.tld files.
# for x in `cat <domain list file>`; do rm /etc/bind/zone.$x; done # for x in `cat <domain list file>`; do rm /var/named/db.$x; doneRestart named. Run `/etc/bind/dnsupdate` in secure.
Delete the accounts after 48 hrs.
----- Old Method, use only for reference -----
Create the Reseller Account.
Assign the site to the Reseller account with high security, no squirrelmail (available by default) and no SSH. Also, change the number of database back to the original number... which is normally 1.
Delete corresponding zone records from "/etc/bind/secure_dns.conf".
Add DNS records using "/etc/bind/addZone.sh <domain.com>".
#!/bin/bash # addZone.sh cat <<EOF >zone.$1 zone "$1" IN { type master; file "/var/named/db.$1"; allow-update { key "wp_default_key."; }; allow-transfer { localhost; 216.12.215.205; }; }; EOF cat <<EOF >/var/named/db.$1 \$ORIGIN . \$TTL 3600 ; 1 hour $1 IN SOA ns2.edices.com. admin.edices.com. ( 2005021308 ; serial 3600 ; refresh (1 hour) 600 ; retry (10 minutes) 86400 ; expire (1 day) 3600 ; minimum (1 hour) ) NS ns1.edices.com. NS ns2.edices.com. \$TTL 86400 ; 1 day A 207.44.206.16 MX 10 mail.$1. \$ORIGIN $1. ftp A 207.44.206.16 mail A 207.44.206.16 www A 207.44.206.16 EOF cat <<EOF >>bind.conf.wp include "/etc/bind/zone.$1"; EOF [ -f /var/named/db.$1 ] && chown named:named /var/named/db.$1 && chmod 600 /var/named/db.$1 [ -f /var/named/sec.$1 ] && rm /var/named/sec.$1 echo "Restart named manually if everything looks fine..."Run `/var/www/html/secureDNS/dns_u
Remove Zones in bind via GUI on secure.
Run `/etc/bin/dnsupdate` in secure.
- sandip's blog
- Login or register to post comments