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