• 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

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