AOS 8 Tipps und Tricks: Unterschied zwischen den Versionen

Aus QBWiki
Zur Navigation springenZur Suche springen
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
{{#css:
+
==== Disable auto-fabric mode ====
.mw-highlight {
 
  padding-left: 25px;
 
  border-left: 5px solid #F50;
 
}
 
.mw-highlight > pre {
 
  border-left: 1px dotted #999;
 
  border-top: none;
 
  line-height: 1.88em;
 
}
 
  
.mw-highlight > pre > .lineno {
+
<syntaxhighlight lang="bash" line="1">
  margin-left: -30px;
+
#Enables or disables the Automatic Fabric functionality globally for the switch.
  color: #666;
+
-> 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>
  
=== Virtual-Chassis ===
 
  
 
==== Connect to other virtual-chassis members ====
 
==== Connect to other virtual-chassis members ====
  
 
<syntaxhighlight lang="bash" line="1">
 
<syntaxhighlight lang="bash" line="1">
debug show virtual-chassis connection
+
-> debug show virtual-chassis connection
 
</syntaxhighlight>
 
</syntaxhighlight>
 
Outputs the following content:
 
Outputs the following content:
Zeile 34: Zeile 35:
  
 
Be aware that you are not allowed to enter commands such as "show ip interface" etc. on a slave.
 
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.