Brocade Network OS NETCONF Operations Guide v4.1.1 User Manual
Page 357

Network OS NETCONF Operations Guide
325
53-1003231-02
Virtual Fabric configuration with NETCONF overview
23
</rpc-reply>
Configuring an access Virtual Fabric with a MAC group
To configure the interface as an access Virtual Fabric interface requires two RPCs. The first RPC
configures the port as a Layer 2 interface; the second RPC configures the interface port as an
access Virtual Fabric with a MAC group.
1. Issue an <edit-config> RPC to configure the <interface> node in the
urn:brocade.com:mgmt:brocade-interface namespace.
2. Under the <interface> node, specify the interface type element (<gigabitethernet>,
<tengigabitethernet>, <fortygigabitethernet>, or <hundredgigabitethernet>).
3. Under the <gigabitethernet>, <tengigabitethernet>, <fortygigabitethernet>, or
<hundredgigabitethernet> element, include the following elements:
a. In the <name> element, specify the port name in [rbridge-id/]slot/port format.
b. In the <shutdown> element, include the delete operation in the element opening tag to
enable the interface port.
c. Include the <switchport>/<basic> elements to configure the port as a Layer 2 interface.
d. Add the <access-mac-group-classification> element and include the <vlan> element.
e. Specify the <access-vlan-id> value and the <access-mac-group> value.
The following example configures 10-Gigabit Ethernet port 1/0/1 as an access VLAN with a
MAC group.
<?xml version="1.0" encoding="UTF-8"?>
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="2"
xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<edit-config>
<target>
<running/>
</target>
<config>
<interface xmlns="urn:brocade.com:mgmt:brocade-interface">
<tengigabitethernet xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<name>1/0/1</name>
<switchport-basic>
<basic/>
</switchport-basic>
<switchport>
<access-mac-group-vlan-classification>
<access>
<vlan>
<access-vlan-id>5001</access-vlan-id>
<access-mac-group>1</access-mac-group>
</vlan>
</access>
</access-mac-group-vlan-classification>
</switchport>
</tengigabitethernet>
</interface>
</config>
</edit-config>
</rpc>