• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • 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.

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