Brocade Network OS NETCONF Operations Guide v4.1.1 User Manual

Page 353

Advertising
background image

Network OS NETCONF Operations Guide

321

53-1003231-02

Virtual Fabric configuration with NETCONF overview

23

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. Include the <switchport>/<basic> elements to configure the port as a trunk Virtual Fabric

using the <vlan-mode> element.

c. Add the <trunk-vlan-classification> element and include the <vlan> element.

d. Specify the <trunk-vlan-id> value and the <trunk-ctag-range> value.

The following example configures 10-Gigabit Ethernet port 1/0/1 as a trunk VLAN with a C-TAG
range.

<?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>

<mode>

<vlan-mode>trunk</vlan-mode>

</mode>

<trunk>

<trunk-vlan-classification>

<allowed>

<vlan>

<add>

<trunk-vlan-id>5001</trunk-vlan-id>

<trunk-ctag-range>10</trunk-ctag-range>

</add>

</vlan>

</allowed>

</trunk-vlan-classification>

</trunk>

</switchport>

</tengigabitethernet>

</interface>

</config>

</edit-config>

</rpc>

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

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

<ok/>

</rpc-reply>

Advertising