Enable or disable global IPv6 attributes

Prev Next

Enables or disables global IPv6 attributes.

API URL

GET https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config

or

POST https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config

GET https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config/global_enable

or

POST https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config/global_enable

GET https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config/mgmt_interface_enable

or

POST https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config/mbmt_interface_enable

GET https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config/smtp_interface_enable

or

POST https://<host>/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config/smtp_interface_enable

Sample curl requests

GET Global IPv6

curl -skg -H "$auth-token" https://172.16.12.151/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config
{
  "mgmt_interface_enable": true,
  "global_enable": true,
  "smtp_interface_enable": false
}

Update IPv6 configuration

curl -skg -H "$c" https://172.16.12.151/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config -d '{"smtp_interface_enable" : true}' -H "content-type:application/json"
{
  "error": false,
  "message": "updated object"
}

Read-back

curl -skg -H "$c" https://172.16.12.151/wsapis/v2.0.0/devicemgmt/mgmtinterface/ipv6/config
{
  "mgmt_interface_enable": true,
  "global_enable": true,
  "smtp_interface_enable": true
}

Availability

This command is available on the following appliances:

  • Network Security

  • Helix Enterprise

Authentication

Standard WSAPI authentication

Response mime type

application/json