Commit 085351
2026-02-24 02:07:56 Terry: -/-| /dev/null .. it运维/it运维/network/fortigate.md | |
| @@ 0,0 1,60 @@ | |
| + | # Fortigate |
| + | |
| + | ## 一. 如何查看 `飞塔防火墙`型号 |
| + | |
| + | 查看 FortiGate 防火墙型号,最常用的是 **CLI 命令**、**Web 界面** 和 **设备物理标签** 三种方式,以下是详细操作: |
| + | |
| + | ### A、CLI 命令行(最常用) |
| + | 1. 通过 **SSH**(默认端口 22)或 **Console 线** 登录 FortiGate |
| + | 2. 输入命令(两种均可): |
| + | ```bash |
| + | get system status |
| + | # 或简写 |
| + | get sys status |
| + | ``` |
| + | 3. 输出中找到 **Model** 字段,即为型号(如 `Model: FortiGate-60E`) |
| + | |
| + | 例如: |
| + | ```bash |
| + | NAME_FW # get system status |
| + | Version: FortiGate-*** v*.*.*,build****,****** (GA.M) |
| + | Firmware Signature: certified |
| + | Virus-DB: 93.06693(2026-02-23 15:41) |
| + | Extended DB: 93.06693(2026-02-23 15:40) |
| + | IPS-DB: 35.00172(2026-02-21 02:43) |
| + | IPS-ETDB: 0.00000(2001-01-01 00:00) |
| + | APP-DB: 35.00171(2026-02-19 02:32) |
| + | INDUSTRIAL-DB: 6.00741(2015-12-01 02:30) |
| + | IPS Malicious URL Database: 5.00620(2026-01-16 01:45) |
| + | Serial-Number: ************* |
| + | BIOS version: 05000025 |
| + | System Part-Number: P******-** |
| + | Log hard disk: Not available |
| + | Hostname: NAME_FW |
| + | 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: a-p, primary |
| + | Cluster uptime: 311 days, 9 hours, 28 minutes, 25 seconds |
| + | Cluster state change time: 2025-04-19 01:47:11 |
| + | Branch point: 2030 |
| + | Release Version Information: GA |
| + | System time: Tue Feb 24 09:59:21 2026 |
| + | |
| + | ``` |
| + | |
| + | ### B、Web 界面(GUI) |
| + | 1. 浏览器访问防火墙管理地址(默认 `https://防火墙IP`) |
| + | 2. 登录后: |
| + | - 首页 **Dashboard** → **System Information** 面板,直接显示型号 |
| + | - 或进入 **System > Status**,查看 **Model** 信息 |
| + | |
| + | ### B、物理设备查看 |
| + | - 设备前面板/后面板的 **标签贴纸**,标注 `FortiGate-XXX`(如 60E、100E、200F 等) |
| + | - 包装盒、说明书上也会标注型号 |
| + | |
| + | --- |