2023-08-01 Extreme VOSS まとめ

提供:hkatou_Lab
2023年8月1日 (火) 11:47時点におけるHkatou (トーク | 投稿記録)による版 (ページの作成:「Extreme Networks の VSP Operating System Software (VOSS) のまとめです。 = イメージ = [https://github.com/extremenetworks/Virtual_VOSS Virtual_VOSS] で入手…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

Extreme Networks の VSP Operating System Software (VOSS) のまとめです。

イメージ

Virtual_VOSS で入手可能、EVE-NG でも動作します。

VOSS 8.10.1 は動作しました。8.1.5 は起動できましたが、インターフェースの疎通が取れませんでした。

デフォルトのユーザ名とパスワードは rwa / rwa です。

テンプレートの変更

git から Extreme VOSS のテンプレートを clone できますが、mgmt ポートが設定されていません。

以下のように変更します。

/opt/unetlab/html/templates/intel/extremevoss.yml
eth_format: Gig1/{1}

  VVVVV

eth_name:
- mgmt
eth_format: Gig1/{1}

マニュアル

VOSS User Guide Version 8.10

カテゴリー: Extreme Campus Fabric (SPB)

  • Extremenetworks Fabric Connect コンフィグレーション設定ガイド が網羅的で良いです

特権モード

#enable


グローバル コンフィギュレーション モード

#configure terminal

バージョン確認

#show sys software
************************************************************************************
                Command Execution Time: Tue Aug 01 02:41:00 2023 UTC
************************************************************************************

System Software Info :

Default Runtime Config File : /intflash/config.cfg
Config File :
Last Runtime Config Save : 0

Boot Config Table
Version : Build 8.10.1.0 (GA) on Wed Jun 21 16:01:35 EDT 2023
PrimaryConfigSource : /intflash/config.cfg
SecondaryConfigSource : /intflash/config.cfg
EnableFactoryDefaults : false
EnableDebugMode : false
EnableRebootOnError : true
EnableTelnetServer : true
EnableRloginServer : false
EnableFtpServer : false
EnableTftpServer : false


コンフィグ確認

#show running-config

show run interface が無いのは、かなりめんどいですね・・・ 代替えとして、

#show running-config module port

#show running-config module vlan

を使うと良いです。

パイプ後のフィルターの種類

#show running-config | ?
Pipe Filter
  begin    Begin with the line that matches a regular expression
  count    Count lines of output
  exclude  Ignore lines of output matching a regular expression
  head     Display only the first few lines of output
  include  Only show output lines matching a regular expression
  no-more  Disable pagination for the current command
  tail     Display only the last few lines of output

早く section を実装してほしいですね。

コンフィグの部分確認

#show running-config module vlan
Preparing to Display Configuration...
<omit>
#
# VLAN CONFIGURATION
#

vlan members remove 1 1/1-1/26 portmember
vlan create 4048 name "onboarding-vlan" type pvlan-mstprstp 0 secondary 4049
vlan i-sid 4048 15999999
<omit>

| section のかわりに、こいつを使いましょう。

コンフィグの保存

#write memory

管理ポートの設定

mgmt oob
ip address x.x.x.x/xx
enable
exit

新しい Version では telnet がデフォルトで動作しなくなっています。使用したい場合は、

(config)#boot config flags telnetd

で telnetd の起動が必要です。これは即時反映されます。

電源 off

#sys shutdown

引用