ispCP - Board - Support
[WIP] ipv6 - ipv4 - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Contributions Area (/forum-40.html)
+--- Forum: Enhancements (/forum-43.html)
+--- Thread: [WIP] ipv6 - ipv4 (/thread-9630.html)



[WIP] ipv6 - ipv4 - Shin - 02-16-2010 08:20 AM

This is the modification (front-side) fot ipv6/4 support

First you need to update your database
Code:
-- Generato il: 14 feb, 2010 at 05:38 PM
-- Versione MySQL: 5.1.37
-- Versione PHP: 5.2.10-2ubuntu6.4

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-- --------------------------------------------------------

--
-- Struttura della tabella `server_ips`
--

CREATE TABLE IF NOT EXISTS `server_ips` (
  `ip_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ip_number` varchar(39) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip_type` int(1) unsigned DEFAULT '4',
  `ip_domain` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip_alias` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip_card` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip_ssl_domain_id` int(10) DEFAULT NULL,
  `ip_status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `ip_subnet` varchar(15) COLLATE utf8_unicode_ci DEFAULT NULL,
  UNIQUE KEY `ip_id` (`ip_id`),
  UNIQUE KEY `ip_number` (`ip_number`,`ip_subnet`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=0 ;
;

SVN Branch
Code:
http://isp-control.net/ispcp/browser/branches/ipv6

Status: WIP
Backend doesn't recognize the new format, so the system will not work.


RE: [WIP] ipv6 - ipv4 - BeNe - 02-16-2010 05:37 PM

Attachment (Zip-File) is missing Sad

Greez BeNe


RE: [WIP] ipv6 - ipv4 - Shin - 02-16-2010 07:33 PM

Modified Wink