ネットワーク機器を触っていると、一括で設定を表示したい時があります。
そんなとき、Cisco 機器なら terminal length 0
が有名です。
しかし、Cisco IOS 搭載のデバイス以外で、これに相当するコマンドを毎回探すのはしんどいため、今回、私がよく使う機器での一例を並べておきます。
Cisco ASA
- 一時的に変更する場合;
terminal pager 0
- 恒久的に変更する場合; “conf t” モードで
pager lines 0
Juniper Screen OS
- 恒久的に変更する場合;
set console page 0
- 設定を解除する場合;
unset console page
Juniper Junos
- show コマンドだけ見る場合;
show configuration | no-more
showコマンドの後にパイプ “|” + “no-more” で一括表示が可能に(一時的に)。
- 恒久的に変更する場合;
set cli screen-length 0
- 設定を解除する場合;
delete cli screen-length 0
Alaxala AX シリーズ
- 恒久的に変更する場合;
set terminal pager disable
- 設定を解除する場合;
set terminal pager enable
NEC IX シリーズ
- 恒久的に変更する場合; “config” モードで
terminal length 0
- 設定を解除する場合;
terminal length 24
NEC QX シリーズ
- 恒久的に変更する場合;
screen-length disable
- 設定を解除する場合;
screen-length 24
YAMAHA RTX シリーズ
- 恒久的に変更する場合;
console lines infinity
- 設定を解除する場合;
console lines 24
Paloalto PA シリーズ
- 恒久的に変更する場合;
set cli pager off
- 設定を解除する場合;
set cli pager on
Mellanox MLNX-OS(2015/10 追記)
no cli session paging enable
F5 BIG-IP シリーズ(2015/10 追記)
- 一時的に shell で実行する場合;
yes | tmsh show running-config
- 恒久的に変更する場合;
tmsh modify cli preference pager disabled
Cisco WLC(2020/3 追記)
config paging disable
Brocade (Extreme) Network OS(2020/3 追記)
- ページャーを切る場合;
terminal length 0
- 設定を解除する場合;
terminal no length
Brocade (Foundry, Extreme) IronWare(2020/3 追記)
- ページャーを切る場合;
skip-page-display
- 設定を解除する場合;
page-display
とりあえず、これを知っていると、既存の config を楽に眺めることができるので、何をするにも便利です。
No comment yet, add your voice below!