• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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