Connector maintenance console
You can use the Maintenance Console to configure the Connector to use a transparent proxy server.
Access the Maintenance Console
You can access the Maintenance Console from the Connector host. Navigate to the following directory:
/opt/application/netapp/service-manager-2/connector-maint-console
Transparent proxy commands
The Maintenance Console provides commands to configure the Connector to use a transparent proxy server.
View the current transparent proxy configuration
To view the current transparent proxy configuration, use the following command:
./connector-maint-console proxy get
Add a transparent proxy server
To add a transparent proxy server, use the following command, where /home/ubuntu/myCA1.pem
is the path to the certificate file for the proxy server. The certificate file must be in PEM format:
./connector-maint-console proxy add -c /home/ubuntu/myCA1.pem
Ensure that the certificate file is in the same directory as the command or specify the full path to the certificate file.
Update the certificate for a transparent proxy server
To update the certificate for a transparent proxy server, use the following command, where /home/ubuntu/myCA1.pem
is the path to the new certificate file for the proxy server. The certificate file must be in PEM format:
./connector-maint-console proxy update -c /home/ubuntu/myCA1.pem
Ensure that the certificate file is in the same directory as the command or specify the full path to the certificate file.
Remove a transparent proxy server
To remove transparent proxy server, use the following command:
./connector-maint-console proxy remove
View help for any command
To view help for any command, append --help
to the command. For example, to view help for the proxy add
command, use the following command:
./connector-maint-console proxy add --help