Configures, modifies, or retrieves Global Loop Detection configuration.
URI | Description |
---|---|
<base_URI>/config/running/protocol/loop-detection | Configures, modifies, or retrieves Global Loop Detection configuration. |
GET URIs | Description |
---|---|
<base_URI>/config/running/protocol/loop-detection | Displays the Loop-Detection information. |
<base_URI>/config/running/protocol/loop-detection/hello-interval | Displays the Hello Interval. |
<base_URI>/config/running/protocol/loop-detection/shutdown-time | Displays the Shutdown Time. |
<base_URI>/config/running/protocol/loop-detection/raslog-duration | Displays the interval between Raslogs. |
PATCH URIs | Payload | Description |
---|---|---|
<base_URI>/config/running/protocol/loop-detection | <loop-detection><hello-interval>{uint32}</hello-interval></loop-detection> | Sets the Hello Interval globally. |
<base_URI>/config/running/protocol/loop-detection | <loop-detection><shutdown-time>{uint32}</shutdown-time></loop-detection> | Sets the Shutdown Time globally. |
<base_URI>/config/running/protocol/loop-detection | <loop-detection><raslog-duration>{uint32}</raslog-duration></loop-detection> | Sets interval between raslogs. |
PUT URIs | Payload | Description |
---|---|---|
<base_URI>/config/running/protocol/loop-detection/hello-interval | <hello-interval>{uint32}</hello-interval> | Sets the Hello Interval globally. |
<base_URI>/config/running/protocol/loop-detection/shutdown-time | <shutdown-time>{uint32}</shutdown-time> | Sets the Shutdown Time globally. |
<base_URI>/config/running/protocol/loop-detection/raslog-duration | <raslog-duration>{uint32}</raslog-duration> | Sets interval between Raslogs. |
DELETE URIs |
---|
<base_URI>/config/running/protocol/loop-detection |
GET, 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/protocol/loop-detection
None
<loop-detection xmlns="urn:brocade.com:mgmt:brocade-eld" xmlns:y="http://brocade.com/ns/rest" y:self="/rest/config/running/protocol/loop-detection"> <hello-interval>101</hello-interval> <shutdown-time>4</shutdown-time> <raslog-duration>30</raslog-duration> </loop-detection>
The following example uses the PATCH option to update the hello-interval attribute.
http://host:80/rest/config/running/protocol/loop-detection
<loop-detection><hello-interval>101</hello-interval></loop-detection>
<loop-detection xmlns="urn:brocade.com:mgmt:brocade-eld" xmlns:y="http://brocade.com/ns/rest" y:self="/rest/config/running/protocol/loop-detection"> <hello-interval>101</hello-interval> <shutdown-time>4</shutdown-time> <raslog-duration>30</raslog-duration> </loop-detection>
The following example uses the DELETE option to remove the loop detection configuration.
http://host:80/rest/config/running/protocol
None
None