Veritas Access Appliance Initial Configuration Guide
- Getting to know the Access Appliance
- Preparing to configure the appliance
- Configuring the appliance for the first time
- Getting started with the Veritas Access GUI
- Storage management
- Network connection management
- Configuring network address settings on the appliance nodes
- About the Veritas Remote Management Console
- Monitoring the appliance
- Resetting the appliance to factory settings
- Appliance security
- About Access appliance user account privileges
- About the Access Appliance intrusion detection system
- About Access appliance operating system security
- Recommended IPMI settings on the Access appliance
- Troubleshooting
Replacing the default IPMI SSL certificate on the Access appliance
Use the following procedure to create a minimal self-signed certificate on a Linux computer and import it into the IPMI web interface:
To create and implement a minimal self-signed certificate
- On a Linux computer, type the following command to generate the private key:
openssl genrsa -out ipmi.key 2048
In this case, the private key is named
ipmi.key
. - Type the following command to generate a certificate signing request (
ipmi.csr
) usingipmi.key
:openssl req -new -key ipmi.key -out ipmi.csr
Fill in each field with the appropriate values. To leave a field blank, enter a period (.).
Note:
To avoid extra warnings in your browser, set the common name to the fully qualified domain name of the IPMI interface.
- Type the following command to sign
ipmi.csr
withipmi.key
and create a certificate calledipmi.crt
that is valid for 1 year:openssl x509 -req -in ipmi.csr -out ipmi.crt -signkey ipmi.key -days 365
- Type the following command to concatenate
ipmi.crt
andipmi.key
to create a certificate in PEM format calledipmi.pem
:cat ipmi.crt ipmi.key > ipmi.pem
- Log on to the Veritas Remote Management Console.
Note:
If you need to access the Veritas Remote Management Console from another computer, copy the
ipmi.pem
file to that computer. - On the Configuration tab, select SSL from the left pane.
Next to New SSL Certificate, click Browse... and select the
ipmi.pem
file.Click Upload.
Note:
A warning may appear that says an SSL certificate already exists. Press OK to continue.
- Click Browse... again to import the privacy key. (Note that it now says New Privacy Key next to the button instead of New SSL Certificate.)
Select the
ipmi.pem
file and click Upload.When the confirmation dialog appears, click OK to restart the web service.
- (Optional) Close and reopen the Veritas Remote Management Console to verify that the new certificate is being presented.