Disabling Wire-level Security
About this task
Disable wire encryption for a volume using the Control System, the CLI, and REST API.
Disabling Wire-level Security for a Volume Using the Control System
Procedure
- Log in to the Control System and click .
- Click Create Volume to display the Create New Volume page or go to the Edit Volume page.
-
Set the value for the Data on Wire Encryption property to
No (to disable).
See Creating a Volume or Modifying a Volume for more information.
-
Complete the steps to create or modify the volume.
See Creating a Volume or Modifying a Volume for more information.
Disabling Wire-Level Security for a Volume Using the CLI and REST API
About this task
You can disable encryption of data on wire at the volume level.
Set the value for the
wiresecurityenabled
parameter to
false
when you:- Create the volume. For example:
maprcli volume create -name <volName> -path <volMountPath> -wiresecurityenabled false
- Modify the volume. For example:
maprcli volume modify -name <volName> -wiresecurityenabled false
Send a request of type POST and set the value for the
wiresecurityenabled
parameter to false
when you:- Create the volume. For example:
curl -X POST 'https://server.sj.us:8443/rest/volume/create?name=<volName>&path=<volMountPath>&wiresecurityenabled=false' --user <username>:<password>
- Modify the volume. For example:
curl -X POST 'https://server.sj.us:8443/rest/volume/modify?name=<volName>&wiresecurityenabled=false' --user <username>:<password>
volume create
and
volume modify
for more
information.