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 ====“)
 
Zeile 1: Zeile 1:
 +
{{#css:
 +
.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 {
 +
  margin-left: -30px;
 +
  color: #666;
 +
}
 +
}}
 +
 
=== Virtual-Chassis ===
 
=== Virtual-Chassis ===
  
==== Auf andere VC-Member zugreifen ====
+
==== 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.

Version vom 25. Februar 2019, 14:46 Uhr


Virtual-Chassis

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.