IPv6 support v1.0

Server:
Added IPv6 support for all DNS Providers, but only tested ISC BIND & MS DNS

Enterprise Server:
Added support for IPv6. Hyper-V not tested, and probably doesn't work.
When using IPv6 with Hyper-V it assigns "/CIDR" to the subnet mask, and I don't
know if this is the correct implementation.

Portal:
Modified all IP input masks to accept and validate IPv6.
IP Ranges support IP/CIDR format.
This commit is contained in:
Administrator 2012-08-18 04:53:29 +02:00
parent 90219f284f
commit c4a1b5f4d6
44 changed files with 3221 additions and 247 deletions

View file

@ -1060,7 +1060,11 @@ namespace WebsitePanel.Providers.DNS
result = DnsRecordType.A;
break;
case "CNAME":
case "AAAA":
result = DnsRecordType.AAAA;
break;
case "CNAME":
result = DnsRecordType.CNAME;
break;
@ -1097,7 +1101,11 @@ namespace WebsitePanel.Providers.DNS
case DnsRecordType.A:
result = "A";
break;
case DnsRecordType.AAAA:
result = "AAAA";
break;
case DnsRecordType.CNAME:
result = "CNAME";
break;