VyOS は Linux をベースとしているため、Linux コマンドが使用できます。設定構文とコマンドライン・インターフェイスはJuniper社のJUNOSから派生しています。
詳しい内容はユーザーガイドを参照していただくとして、一通りVyOSを使えるだけの基本操作コマンドを紹介します。
終了、再起動
1.
シャットダウン
$ poweroff
VyOS をシャットダウンします。
vyos@vyos:~$ poweroff
Proceed with poweroff? (Yes/No) [No] y
Broadcast message from root@vyos (pts/0) (Sun Nov 8 11:27:18 2015):
The system is going down for system halt NOW!
2.
再起動
$ reboot
VyOS を再起動します。
vyos@vyos:~$ reboot
Proceed with reboot? (Yes/No) [No] y
Broadcast message from root@vyos (pts/0) (Sun Nov 8 11:38:18 2015):
The system is going down for reboot NOW!
設定の確認
1.
[edit] モードでない場合
$ show configs
VyOS の設定を表示します。
「↑」「↓」
表示内容のスクロール
「q」
設定表示の終了
vyos@vyos:~$ show config
interfaces {
ethernet eth0 {
address 172.16.0.1/24
description OUTSIDE
duplex auto
:
2.
[edit] モードの場合
# show
全設定を表示する
# show interfaces
interfaces設定のみ表示する
VyOS の設定を表示します。
「↑」「↓」
表示内容のスクロール
「q」
設定表示の終了
[edit]
vyos@vyos# show interfaces
ethernet eth0 {
address 172.16.0.1/24
description OUTSIDE
duplex auto
hw-id 00:0c:29:d3:a3:9b
smp_affinity auto
speed auto
}
ethernet eth1 {
address 192.168.0.1/24
description INSIDE
duplex auto
hw-id 00:0c:29:d3:a3:a5
smp_affinity auto
speed auto
}
loopback lo {
}