• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Resolved Create domain via API and ipv6

matoh12

New Pleskian
Hello,

For creating domains in PLESK (Plesk Obsidian Version 18.0.42 Update # 1, last updated on Mar 18, 2022 08:12 AM) Im use the REST API command, example:

{
"name": "example.com",
"description": "My website",
"hosting_type": "virtual",
"hosting_settings": {
"ftp_login": "test_login",
"ftp_password": "changeme1Q**"
},
"owner_client": {
"login": "admin"

},
"ipv6": [
"2001:4118:0200:1000:0000:0000:0000:0052"
],
"ipv4": [
"192.168.16.52"
],
"plan": {
"name": "Unlimited"
}
}

However, after the domain is created, only the IPv6 address is set. The IPv4 address is ignored. If im try ip_addresses directive in REST API:

"ip_addresses": [
"2001:4118:0200:1000:0000:0000:0000:0052",
"192.168.16.52"
],

im get error for IP validation proces:

{
"code": 0,
"message": "Validation error",
"errors": [
{
"property": "ip_addresses[0]",
"message": "This is not a valid IP address."
}
]
}


My question is what form of IPv6 address should be entered when creating a domain?


Thanks
 
It is related to known Plesk bug EXTREST-143
The fix is expected in Plesk 18.0.43
 
Back
Top