• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Question multiple IP-Addresses ?

Tools & Settings => IP Addresses => (Click) Reread IP

That will read all your interfaces on server.
 
anyhow you should have a ip list given by your "data center", along with gateway ip that you'll have to add on your server. after that you have to click "Reread" on plesk.
 
anyhow you should have a ip list given by your "data center", along with gateway ip that you'll have to add on your server. after that you have to click "Reread" on plesk.
 
You could use the "ipmanage" CLI tool from plesk, see:
Code:
# plesk bin ipmanage -h
Also read: ipmanage: IP Addresses

If your IPs are all consecutive IP addresses then you could add them with a short shell script like this:
Code:
for i in `seq 1 254` ; do plesk bin ipmanage -c 123.123.123.$i -mask 255.255.255.0 -type shared -interface ens192 ; done

This would add IPs from 123.123.123.1 up to 123.123.123.254. You'll have to adapt the script according to your needs.
 
Back
Top