Spine/Leaf のポートを閉塞する方法

スポンサーリンク
スポンサーリンク

NOTE

Spine/Leaf のポートを閉塞する方法。GUI でまとめて実行する方法が欲しい。

 

1. GUI

Fabric > Inventory > Pod x > 対象ノード > Interfaces > Physical Interfaces
から対象ポートを右クリックDisableを実行する。開放はEnable

2. CLI

APIC から

configure terminal
leaf 201
interface ethernet 1/1
shutdown

range コマンドは無いが、複数まとめて閉塞する時は

interface ethernet 1/1-5

のようにハイフンでつなぐ。

以下のようなインタフェースコンフィグレーションモードの状態で
そのまま別インタフェースにはいけない。

interface ethernet 1/1
shutdown 
interface ethernet 1/21
shutdown

一度exit を挟む必要がある。

interface ethernet 1/1
shutdown
exit 
interface ethernet 1/21
shutdown

 

3. XML

<polUni annotation="" dn="uni" nameAlias="" userdom="all">
  <fabricInst annotation="" dn="uni/fabric" name="" nameAlias="" ownerKey="" ownerTag="" userdom="all">
    <fabricOOServicePol annotation="" descr="" dn="" name="default" nameAlias="" ownerKey="" ownerTag="" userdom="all">
    <fabricRsOosPath annotation="" dn="" lc="blacklist" tDn="topology/pod-1/paths-201/pathep-[eth1/1]" userdom=":all:"/>
    <fabricRsOosPath annotation="" dn="" lc="blacklist" tDn="topology/pod-1/paths-202/pathep-[eth1/1]" userdom=":all:"/>
    <fabricRsOosPath annotation="" dn="" lc="blacklist" tDn="topology/pod-1/paths-201/pathep-[eth1/21]" userdom=":all:"/>
    <fabricRsOosPath annotation="" dn="" lc="blacklist" tDn="topology/pod-1/paths-202/pathep-[eth1/21]" userdom=":all:"/>
    </fabricOOServicePol>
  </fabricInst>
</polUni>

のように

lc="blacklist"

を使う。開放する時は

status="deleted"

で削除する。

コメント