AOS 8 Tipps und Tricks: Unterschied zwischen den Versionen

Aus QBWiki
Zur Navigation springenZur Suche springen
(Die Seite wurde neu angelegt: „=== Virtual-Chassis === ==== Auf andere VC-Member zugreifen ====“)
 
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
=== Virtual-Chassis ===
+
==== Disable auto-fabric mode ====
  
==== Auf andere VC-Member zugreifen ====
+
<syntaxhighlight lang="bash" line="1">
 +
#Enables or disables the Automatic Fabric functionality globally for the switch.
 +
-> auto-fabric admin-state enable
 +
-> auto-fabric admin-state disable
 +
 
 +
#Enables or disables the Automatic Fabric functionality specifically on individual or group of interfaces of the switch.
 +
-> auto-fabric interface 1/1/1 admin-state disable
 +
-> auto-fabric interface 1/1/5-10 admin-state enable
 +
 
 +
#Enables or disables the Automatic Fabric functionality of the following;
 +
-> auto-fabric protocols lacp admin-state disable
 +
-> auto-fabric protocols mvrp admin-state disable
 +
-> auto-fabric protocols ip isis admin-state disable
 +
-> auto-fabric protocols ip ospfv2 admin-state disable
 +
-> auto-fabric protocols ip ospfv3 admin-state disable
 +
</syntaxhighlight>
 +
 
 +
 
 +
==== Connect to other virtual-chassis members ====
 +
 
 +
<syntaxhighlight lang="bash" line="1">
 +
-> debug show virtual-chassis connection
 +
</syntaxhighlight>
 +
Outputs the following content:
 +
 
 +
  Chas  MAC-Address        Local IP          Remote IP        Status
 +
-----+------------------+-----------------+-----------------+-------------
 +
  2    2c:fa:a2:be:ef:aa  127.10.1.65      127.10.2.65      Connected
 +
  3    2c:fa:a2:co:ff:ee  127.10.1.65      127.10.3.65      Connected
 +
 
 +
We can now SSH to each of the chassis members using the 'Remote IP' and list directory contents
 +
or search for Crash files, change vc-files ..
 +
 
 +
Be aware that you are not allowed to enter commands such as "show ip interface" etc. on a slave.
 +
 
 +
 
 +
[[Kategorie:Alcatel_Lucent]]

Aktuelle Version vom 22. Mai 2019, 08:00 Uhr

Disable auto-fabric mode

 1 #Enables or disables the Automatic Fabric functionality globally for the switch.
 2 -> auto-fabric admin-state enable
 3 -> auto-fabric admin-state disable
 4 
 5 #Enables or disables the Automatic Fabric functionality specifically on individual or group of interfaces of the switch.
 6 -> auto-fabric interface 1/1/1 admin-state disable
 7 -> auto-fabric interface 1/1/5-10 admin-state enable
 8 
 9 #Enables or disables the Automatic Fabric functionality of the following;
10 -> auto-fabric protocols lacp admin-state disable
11 -> auto-fabric protocols mvrp admin-state disable
12 -> auto-fabric protocols ip isis admin-state disable
13 -> auto-fabric protocols ip ospfv2 admin-state disable
14 -> auto-fabric protocols ip ospfv3 admin-state disable


Connect to other virtual-chassis members

1 -> debug show virtual-chassis connection

Outputs the following content:

 Chas  MAC-Address        Local IP          Remote IP         Status
-----+------------------+-----------------+-----------------+-------------
 2     2c:fa:a2:be:ef:aa  127.10.1.65       127.10.2.65       Connected
 3     2c:fa:a2:co:ff:ee  127.10.1.65       127.10.3.65       Connected

We can now SSH to each of the chassis members using the 'Remote IP' and list directory contents or search for Crash files, change vc-files ..

Be aware that you are not allowed to enter commands such as "show ip interface" etc. on a slave.