Many times, for TAC interactions or release notes about new FortiOS versions, to know the FortiGate BIOS is needed. The best method to find the BIOS version of a FortiGate is to use the CLI console widget, as BIOS details are not typically displayed in the standard Dashboard status widget.
If the command 'get system status' is introduced, general information about the device will be shown (included the BIOS version):
FGT-TEST # get system status
Version: FortiGate-200E v7.2.11,build1740,250210 (GA.M)
Security Level: High
Firmware Signature: certified
Virus-DB: 1.00000(2018-04-09 18:07)
Extended DB: 1.00000(2018-04-09 18:07)
AV AI/ML Model: 0.00000(2001-01-01 00:00)
IPS-DB: 6.00741(2015-12-01 02:30)
IPS-ETDB: 6.00741(2015-12-01 02:30)
APP-DB: 36.00214(2026-05-05 01:20)
FMWP-DB: 26.00040(2026-04-10 09:32)
INDUSTRIAL-DB: 6.00741(2015-12-01 02:30)
IPS Malicious URL Database: 1.00001(2015-01-01 01:01)
IoT-Detect: 0.00000(2022-08-17 17:31)
Serial-Number: FGXXXXXXXXXXXXXXXXX
BIOS version: 05000006
System Part-Number: P19082-03
Log hard disk: Not available
Hostname: FGT-TEST
Private Encryption: Disable
Operation Mode: NAT
Current virtual domain: root
Max number of virtual domains: 10
Virtual domains status: 1 in NAT mode, 0 in TP mode
Virtual domain configuration: disable
FIPS-CC mode: disable
Current HA mode: standalone
Branch point: 1740
Release Version Information: GA
FortiOS x86-64: Yes
System time: Tue May 5 12:47:58 2026
Last reboot reason: power cycle
FGT-TEST #
To isolate the BIOS version and exclude irrelevant data, apply the 'grep' command to the 'get system status' output. The following command 'get system status | grep -fi BIOS' can be used to search case-insensitively and to mark the found line.
The grep parameter '-i' makes the search string case insensitive. The grep parameter '-f' will mark the found line with an ASCII arrow '<---'. For example:
FGT-TEST# get system status | grep -fi BIOS
BIOS version: 05000006 <---
Related article:
Technical Tip: The usage of 'grep' filter command on the FortiGate CLI |