Change IP Address - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: System Setup & Installation (/forum-32.html) +--- Thread: Change IP Address (/thread-2173.html) Pages: 1 2 |
Change IP Address - diems - 01-17-2008 08:27 AM Hi, this is my first post here ... I am beginner in Ispcp ... I need change IP address, now the IP is a local IP address ex: 192.168.1.10 Now, I have to assign an WAN external IP address, but the panel stops to work. What modifications should I carry out? Some Howto ? (I am from Argentina, sorry for my english) Regards! RE: Change IP Address - BeNe - 01-17-2008 04:42 PM Here is a small HowTo --> http://www.isp-control.net/ispcp/wiki/docs/de/howto/change_ip It is only in German. But maybe you can translate it with a online Serive. Greez BeNe RE: Change IP Address - diems - 01-18-2008 07:56 AM "mini HowTo" in Spanish Como cambiar la dirección IP de un servidor instalado con ISPC-Omega Es algo común que instalemos nuestro servidor conectado a una LAN y luego tengamos que trasladarlo a un Datacenter, o simplemente conectarlo a otra red donde funcionará finalmente y es necesario poder asignar al servidor otra IP que la que utilizamos en la instalación, así que manos a la obra ! Este “mini howto” fue realizado sobre Debian-Etch, pero no debería ser muy distinto en otras distros. Los pasos a seguir son los siguientes: 1) Modificaciones en la base de datos: mysql> use ispcp; mysql> UPDATE server_ips SET ip_number = "NUEVA_IP" WHERE ip_id = "ID_DEL_REGISTRO"; mysql> UPDATE domain SET domain_status = "change" WHERE domain_ip_id = “ID_DEL_REGISTRO”; 2) Ahora ejecutamos el siguiente script: # /var/www/ispcp/engine/ispcp-rqst-mngr 3) Modificaciones en configuración Apache: Es neceario modifiquemos la IP en el archivo de configuración de apache, para esto editamos el archivo /etc/apache2/sites-enabled/ispcp.conf y remplazamos todas las IP_VIEJA por la IP_NUEVA. Seguramente hay muchas formas de hacer esto, pero como no soy un experto bash, simplemente edite el archivo con “vim” y utilize un comando para “buscar y remplazar”, el comando es el siguiente: :%s/192.168.1.6/192.168.1.15/gic :%s/X/Y/gic El comando anterior buscará el dato X y lo remplazará por Y, adicionalmente irá solicitando la confirmación del cambio. Para terminar con la configuración de apache solo falta editar el archivo /etc/apache2/sites-enabled/00_master.conf y replazar la IP por la nueva. 4) Modificaciones en archivos de BIND: Para saber en que archivos tenemos configurada o existe la IP vieja podemos ejecutar: # grep -ri IP_VIEJA /var/cache/bind/* El comando anterior nos listará aquellos archivos de bind que tengan configurada la IP vieja, ahora solo nos quedará editar y modificar la IP vieja por la nueva IP 5) Importante: debe cambiarse la direccion IP de archivos en copia de trabajo IspCp-Omega, de lo contrario al realizar algun cambio desde el panel, los cambios anteriores se restablecerán, para esto Buscamos en que archivos de copias de trabajo esta tambien configurada la IP_VIEJA grp -ri IP_VIEJA /etc/ispcp/apache/working./* Se deben modificar estos archivos con la IP_NUEVA 6) Reiniciamos los servicios: # /etc/init.d/apache2 restart #/etc/init.d/bind9 restart Con esto debería estar listo, ojo! Esto no cambia la IP del server para esto deberemos editar el archivo /etc/network/interfaces y realizar allí el cambio de IP de la interfaz ethernet. Saludos! RE: Change IP Address - digibyte - 01-18-2008 09:04 PM Please change /var/www/ispcp/engine/ispcp-rqst-mng into /var/www/ispcp/engine/ispcp-rqst-mngr RE: Change IP Address - diems - 01-22-2008 08:39 PM digibyte Wrote:Please change modified ... regards! RE: Change IP Address - gOOvER - 01-22-2008 08:45 PM Maybe when the english Howto is moved to Dokuwiki, you can put your HowTO vm the spanish Section. Simply open the english Howto an click in the right corner of the Wiki at "es" . RE: Change IP Address - diems - 01-24-2008 12:45 PM Ok, I will try to make it in english too RE: Change IP Address - diems - 01-24-2008 12:53 PM I have a problem. Some process restores the old IP it's posible? thanks! RE: Change IP Address - joximu - 01-25-2008 04:17 AM Hi diems you always should also set the manual changes in the ispcp-working copies: /etc/ispcp/apache/working (or bind instead of apache etc) There is a copy of the apache config (00_master.conf and ispcp.conf) which is taken as base if ispcp adds or deletes anything in the configurations. So if you don't change the working copy then with the next change on that part of service, you'll loose the changes... Maybe also add this to the howto. /Joximu RE: Change IP Address - diems - 01-26-2008 06:35 AM joximu Wrote:Hi diems Thanks ! |