FGT50E5XXXXXXXXX # ? config Configure object. get Get dynamic and system information. show Show configuration. diagnose Diagnose facility. execute Execute static commands. exit Exit the CLI.
設定内容を表示する
show コマンドで保存されている設定内容を表示する
1
FGT50E5XXXXXXXXX # show full-configuration
grep <キーワード>でキーワードを含む行だけを表示することもできる。
1 2
FGT50E5XXXXXXXXX # show full-configuration | grep -f <キーワード> `
ping コマンド
ネットワーク機器なので、ping コマンドを使える。
1 2 3 4 5 6 7 8 9 10 11
FGT50E5XXXXXXXXX # execute ping 192.168.1.1 PING 192.168.1.1 (192.168.1.1): 56 data bytes 64 bytes from 192.168.1.1: icmp_seq=0 ttl=64 time=0.3 ms 64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=0.3 ms 64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=0.2 ms 64 bytes from 192.168.1.1: icmp_seq=3 ttl=64 time=0.3 ms 64 bytes from 192.168.1.1: icmp_seq=4 ttl=64 time=0.3 ms
--- 192.168.1.1 ping statistics --- 5 packets transmitted, 5 packets received, 0% packet loss round-trip min/avg/max = 0.2/0.2/0.3 ms
インターフェース設定
インターフェースに IP アドレスを設定する
1 2 3 4
# config system interface // インターフェース設定の階層に移動する # edit wan1 // インターフェースを指定する # set ip 192.168.1.244 255.255.255.0 // IP アドレスを設定する # end // 設定を保存し、元の階層に戻る
config system interface edit "mgmt" set vdom "root" set ip 192.168.21.200 255.255.255.0 set allowaccess ping https ssh snmp set type physical set dedicated-to management set role lan set snmp-index 1 next edit "wan1" set vdom "root" set mode dhcp set allowaccess ping fgfm set status down set type physical set role wan set snmp-index 2 next ... edit "test-lag" set vdom "root" set ip 172.20.11.254 255.255.255.0 set allowaccess ping https set type aggregate set member "port5" "port6" "port7" "port8" set role lan set snmp-index 23 next ... end