• 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.

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