Administration in FortiAnalyzer involves managing user access, allocating resources, and maintaining the system to ensure its stability and security. Each aspect focuses on specific tasks critical for smooth operations.
User management defines who can access FortiAnalyzer, what they can do, and how their activities are monitored.
Defining User Roles:
Assigning Access Permissions:
Two-Factor Authentication (2FA):
Centralized Authentication with LDAP or RADIUS:
Tracking User Activities:
Monitoring Significant Changes:
Administrative Domains (ADOMs) are logical partitions that help organize and isolate data for different users or customers.
Logical Isolation:
Improved Scalability:
Create New ADOMs:
Switch Between ADOMs:
Enable Resource Sharing:
Collaboration Between ADOMs:
Disk and backup management ensures efficient use of storage and protects data from loss.
Log Storage Quotas:
Quota Alerts:
Automating Backups:
Disaster Recovery:
Monitor Disk Usage:
Plan for Expansion:
System maintenance keeps FortiAnalyzer running optimally and up to date.
Check for Updates:
Backup Before Upgrading:
Resource Monitoring:
Dashboard Tools:
Review System Error Logs:
Quick Problem Resolution:
Administration is a critical aspect of FortiAnalyzer that ensures secure and efficient system operation. By managing users, organizing data with ADOMs, maintaining storage, and regularly updating the system, you can create a stable and scalable environment.
FortiAnalyzer automatically records user activity logs, including:
Example scenario:
Administrator A logs in at 10:30 AM and modifies the log retention policy in the HR-Logs ADOM.
The audit log captures:
User: AdminA
Time: 10:30 AM
Action: Modified ADOM HR-Logs retention policy
This record allows security teams to verify whether the change was authorized.
Where to check user logs?
Purpose: Enables quick recovery from incorrect configurations, minimizing downtime and data loss.
Rollback scenarios:
How to rollback a configuration?
Best practice:
To enhance account security:
Brute force protection:
How to enable account lockout?
Why?
How it works?
How to configure session timeouts?
FortiAnalyzer provides REST API access for automated management.
Use Cases:
How to enable API access?
Example API call (Retrieve log data):
curl -X GET "https://<FortiAnalyzer_IP>/api/v2/logs/events" -H "Authorization: Bearer <API_KEY>"
Purpose:
Example automated task:
Weekly log cleanup script (Python):
import requests
FAZ_IP = "192.168.1.100"
API_KEY = "your_api_key"
headers = {"Authorization": f"Bearer {API_KEY}"}
cleanup_url = f"https://{FAZ_IP}/api/v2/logs/cleanup"
response = requests.post(cleanup_url, headers=headers)
print(response.json())
Automated backup script:
Best Practices:
These additional details enhance Administration by covering:
What is the difference between an administrator account and an admin profile in FortiAnalyzer?
An administrator account identifies the user, while an admin profile defines that user’s permissions.
FortiAnalyzer separates user identity from access privileges. An administrator account represents the login credentials used to access the system. The admin profile attached to that account determines what actions the user can perform, such as viewing logs, managing devices, or configuring reports. This separation allows organizations to apply consistent permission sets across multiple users. For example, several analysts may share the same read-only profile but have separate login accounts. Misconfiguring admin profiles is a common cause of access issues.
Demand Score: 72
Exam Relevance Score: 86
Why might an administrator be unable to see devices in FortiAnalyzer?
Because the administrator does not have permission for the ADOM containing those devices.
FortiAnalyzer uses ADOM-based access control. Administrators must be granted permissions for specific ADOMs. If a user account lacks access to a particular ADOM, the devices and logs within that domain will not be visible in the interface. This design allows organizations to separate management responsibilities across teams or customers. To resolve the issue, an administrator with full privileges must update the user’s ADOM access settings.
Demand Score: 60
Exam Relevance Score: 82
What security benefit does role-based administration provide in FortiAnalyzer?
It limits administrative actions according to defined permission roles.
Role-based administration helps enforce the principle of least privilege. Each administrator receives only the permissions necessary to perform their tasks. For example, a security analyst might only view logs and reports, while a system administrator manages device configurations. This separation reduces the risk of accidental changes and improves accountability through audit logs. Properly configured roles also simplify compliance with security policies.
Demand Score: 58
Exam Relevance Score: 80