Configures, retrieves, and modifies VRRPE.
| URI | Description |
|---|---|
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended | Configures VRRPE. Allowed interface type: Ve. |
| GET URI | Description |
|---|---|
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended | Displays ipv6 configuration. Valid interface type: Ve. |
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended/auth-type | Displays authentication type. Valid interface type: Ve. |
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended/auth-type/md5-auth | Displays md5 authentication. Valid interface type: Ve. |
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended/auth-type/md5-auth/auth-data | Displays authentication data. Valid interface type: Ve. |
| PUT URIs | Payload | Description |
|---|---|---|
| <base_URI>/config/running/interface/Ve/{name}/ipv6/vrrp-extended/auth-type/md5-auth/auth-data | <auth-data>{string}</auth-data> | Configures authentication data. Valid interface type: Ve. |
| PATCH URIs | Payload | Description |
|---|---|---|
| <base_URI>/config/running/{interface-type}/{interface-name}/ipv6/vrrp-extended/auth-type/md5-auth | <md5-auth><auth-data>{string}</auth-data></md5-auth> | Configures MD5 authentication. Valid interface type: Ve. |
| DELETE URIs |
|---|
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended |
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended/auth-type |
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended/auth-type/md5-auth |
| <base_URI>/config/running/interface/{interface-type}/{interface-name}/ipv6/vrrp-extended/auth-type/md5-auth/auth-data |
GET, POST, PUT, PATCH, DELETE, OPTIONS, and HEAD operations are supported.
The following example uses the GET option to retrieve the configuration details.
http://host:80/rest/config/running/interface/Ve/2/ipv6/vrrp-extended
None
<vrrp-extended xmlns="urn:brocade.com:mgmt:brocade-vrrp" y:self="/rest/config/running/interface/Ve/2/ipv6/vrrp-extended">
<auth-type y:self="/rest/config/running/interface/Ve/2/ipv6/vrrp-extended/auth-type">
<md5-auth y:self="/rest/config/running/interface/Ve/2/ipv6/vrrp-extended/auth-type/md5-auth">
</md5-auth>
</auth-type>
</vrrp-extended>
The following is an example of the PATCH operation to configure MD5 authentication.
http://host:80/rest/config/running/interface/Ve/100/ipv6/vrrp-extended/auth-type/md5-auth
<md5-auth><auth-data>vrrpe</auth-data></md5-auth>
None