How to assign ciphers to multiple Virtual Services without using the RESTful API
To assign a set of ciphers to multiple Virtual Services without using the RESTful API you can copy the cipher HTML code from an existing Virtual Service and use this code to modify another Virtual Service.
To do this, follow the steps below:
- Open your web browser of choice and log in to the LoadMaster Web User Interface (WUI).
- In the main menu, select Virtual Services > View/Modify Services.
- Click Modify on the SSL-accelerated service to copy from.
- Expand SSL Properties.
- Right click on the list of Assigned Ciphers.
- Select Analyze/Inspect element.
- Click on the <select name line of code associated with the ciphers.
- Press F2 on your keyboard to edit the selected HTML code.
- Copy the entire cipher section of code from (and including) <select name to </select> (see code example below).
- Close the HTML editor.
- Click View/Modify Services in the main menu of the LoadMaster WUI.
- Click Modify on the new SSL accelerated service.
- Expand SSL Properties.
- Right click on the list of Assigned Ciphers.
- Select Analyze/Inspect element.
- Click on the <select name line of code associated with the ciphers.
- Press F2 on your keyboard to edit the selected HTML code.
- Delete the existing HTML code for this section and paste the copied code in its place.
- Close the HTML editor.
- Click Set Ciphers to apply the changes.
- Repeat the steps above for each Virtual Service that will be using this set of ciphers.
Code Example:
<select name="right" size="6" multiple="" onmouseover="ht('The ciphers that are currently assigned to the VS. If no ciphers are specified, the VS will use the default cipher list. The first cipher in the list that the client supports will be used.')">
<option value="ECDHE-RSA-AES256-GCM-SHA384">ECDHE-RSA-AES256-GCM-SHA384</option>
<option value="ECDHE-ECDSA-AES256-GCM-SHA384">ECDHE-ECDSA-AES256-GCM-SHA384</option>
<option value="ECDHE-RSA-AES256-SHA384">ECDHE-RSA-AES256-SHA384</option>
<option value="ECDHE-ECDSA-AES256-SHA384">ECDHE-ECDSA-AES256-SHA384</option>
</select>
Please refer to the following article in order to Enable RESTful API Interface.
For further details on the RESTful API, including details about the commands and parameters available, please refer to the RESTful API, Interface Description document.