Manage Admin Accounts¶
Admin accounts log into the FortiGate GUI and CLI. The default admin account exists out of the box; create per-person accounts for everyone who'll touch the box, attach MFA, and restrict access to trusted source IPs.
Steps¶
Create a new admin¶
- System → Administrators → + Create New.
- Fill in:
- Username —
jdoe. - Type —
Local User(for FortiGate-managed creds) orRemote User(LDAP/RADIUS). - Password — strong, 12+ chars.
- Comments — optional.
- Administrator Profile — pick an Admin Profile.
super_admin= full access;prof_admin= full but no user changes; create custom profiles for restricted scopes. - Trusted Hosts — IPs/subnets this user can log in from. Add your office subnet, your home IP, your mobile hotspot. Up to 10 entries.
- Two-factor Authentication —
Email,SMS, orFortiToken. - Restrict admin to guest account provisioning only — usually No.
- Username —
- OK.
📸 Screenshot needed
System → Administrators → Create New form, showing all fields populated.
Edit an existing admin¶
- System → Administrators → click the username.
- Change fields.
- OK.
Changes apply immediately. Active sessions for that admin stay logged in until next login.
Delete an admin¶
- System → Administrators → check the user → Delete.
- Confirm.
You can't delete the last super_admin. Create a replacement first.
CLI Equivalent¶
config system admin
edit "jdoe"
set accprofile "prof_admin"
set password "StrongPassword123"
set trusthost1 203.0.113.0 255.255.255.0
set two-factor email
set email-to "jdoe@example.com"
next
end
Verify¶
Log out, log back in as the new user. Check that the GUI restricts to what you intended (e.g. prof_admin shouldn't see "Administrators" menu).
Common Issues¶
- Locked out after wrong password attempts. Default lockout is 60 seconds. Wait, or unlock via console:
diagnose user banned-ip clear - Trusted Hosts blocked you. Use console cable to fix.
- Forgot the admin password. Reset via console maintenance mode (boot menu → reset config), OR via another super_admin:
config system admin; edit <user>; set password ...; end. - Per-VDOM admin needed. Set
vdomon the admin entry.