Disabling 802.1x globally – Brocade Network OS NETCONF Operations Guide v4.1.1 User Manual

Page 507

Advertising
background image

Network OS NETCONF Operations Guide

475

53-1003231-02

802.1x authentication configuration tasks

30

Before running the readiness check, you can set a timeout value in seconds. The default timeout
value is 10 seconds. To configure a readiness check timeout value, perform the following steps.

1. Issue the <edit-config> RPC to configure the <dot1x> node in the

urn:brocade.com:mgmt:brocade-dot1x namespace.

2. Under the <dot1x> node, include the <test> node element.

3. Under the <test> node, include the <timeout> leaf element and set a value in seconds for the

readiness check timeout.

4. Issue the <bna-config-cmd> RPC to save the running-config file to the startup-config file.

<?xml version="1.0" encoding="UTF-8"?>

<rpc message-id="2401" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">

<edit-config>

<target>

<running/>

</target>

<config>

<dot1x xmlns="urn:brocade.com:mgmt:brocade-dot1x">

<test>

<timeout>40</timeout>

</test>

</dot1x>

</config>

</edit-config>

</rpc>

<rpc-reply message-id="2401" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">

<ok/>

</rpc-reply>

Disabling 802.1x globally

To disable 802.1x authentication globally, perform the following steps.

1. Issue the <edit-config> RPC to configure the <dot1x> node in the

urn:brocade.com:mgmt:brocade-dot1x namespace.

2. Under the <dot1x> node, include the <enable> element, and include the delete operation in

the <enable> element tag.

3. Issue the <bna-config-cmd> RPC to save the running-config file to the startup-config file.

<?xml version="1.0" encoding="UTF-8"?>

<rpc message-id="2402" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">

<edit-config>

<target>

<running/>

</target>

<config>

<dot1x xmlns="urn:brocade.com:mgmt:brocade-dot1x">

<enable xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"

operation="delete"/>

</dot1x>

</config>

</edit-config>

</rpc>

<rpc-reply message-id="2402" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">

Advertising