fmgd_system_netflow – Configure NetFlow.
Added in version 1.0.0.
Synopsis
This module is able to configure a FortiManager device.
Examples include all parameters and values need to be adjusted to data sources before usage.
Tested with FortiManager v7.x.
Requirements
The below requirements are needed on the host that executes this module.
ansible-core>=2.16.0
FortiManager Version Compatibility
Supported Version Ranges: v7.2.6 -> v7.2.12, v7.4.3 -> latest
Parameters
- access_token -The token to access FortiManager without using username and password. type: str required: false
- bypass_validation - Only set to True when module schema diffs with FortiManager API structure, module continues to execute without validating parameters. type: bool required: false default: False
- enable_log - Enable/Disable logging for task. type: bool required: false default: False
- forticloud_access_token - Access token of forticloud managed API users, this option is available with FortiManager later than 6.4.0. type: str required: false
- proposed_method - The overridden method for the underlying Json RPC request. type: str required: false choices: set, update, add
- rc_succeeded - The rc codes list with which the conditions to succeed will be overriden. type: list required: false
- rc_failed - The rc codes list with which the conditions to fail will be overriden. type: list required: false
- workspace_locking_adom - Acquire the workspace lock if FortiManager is running in workspace mode. type: str required: false choices: global, custom adom including root
- workspace_locking_timeout - The maximum time in seconds to wait for other users to release workspace lock. type: integer required: false default: 300
- device - The parameter in requested url type: str required: true
- system_netflow - Configure NetFlow. type: dict
- active_flow_timeout (Alias name: active-flow-timeout) Timeout to report active flows (60 - 3600 sec, default = 1800). type: int more...
- collector_ip (Alias name: collector-ip) Collector ip. type: str more...
- collector_port (Alias name: collector-port) Netflow collector port number. type: int more...
- collectors Collectors. type: list
more...
- collector_ip (Alias name: collector-ip) Collector ip. type: str more...
- collector_port (Alias name: collector-port) Netflow collector port number. type: int more...
- id Id. type: int more...
- interface Specify outgoing interface to reach server. type: list more...
- interface_select_method (Alias name: interface-select-method) Specify how to select outgoing interface to reach server. type: str choices: [auto, sdwan, specify] more...
- source_ip (Alias name: source-ip) Source ip address for communication with the netflow agent. type: str more...
- source_ip_interface (Alias name: source-ip-interface) Name of the interface used to determine the source ip for exporting packets. type: list more...
- vrf_select (Alias name: vrf-select) Vrf id used for connection to server. type: int more...
- inactive_flow_timeout (Alias name: inactive-flow-timeout) Timeout for periodic report of finished flows (10 - 600 sec, default = 15). type: int more...
- interface Specify outgoing interface to reach server. type: list more...
- interface_select_method (Alias name: interface-select-method) Specify how to select outgoing interface to reach server. type: str choices: [auto, sdwan, specify] more...
- source_ip (Alias name: source-ip) Source ip address for communication with the netflow agent. type: str more...
- template_tx_counter (Alias name: template-tx-counter) Counter of flowset records before resending a template flowset record. type: int more...
- template_tx_timeout (Alias name: template-tx-timeout) Timeout for periodic template flowset transmission (60 - 86400 sec, default = 1800). type: int more...
- exclusion_filters (Alias name: exclusion-filters) Exclusion filters. type: list
more...
- destination_ip (Alias name: destination-ip) Session destination address. type: str more...
- destination_port (Alias name: destination-port) Session destination port number or range. type: str more...
- id Filter id. type: int more...
- protocol Session ip protocol (0 - 255, default = 255, meaning any). type: int more...
- source_ip (Alias name: source-ip) Session source address. type: str more...
- source_port (Alias name: source-port) Session source port number or range. type: str more...
- session_cache_size (Alias name: session-cache-size) Maximum ram usage allowed for netflow session cache. type: str choices: [max, min, default] more...
Notes
Note
Running in workspace locking mode is supported in this FortiManager module, the top level parameters workspace_locking_adom and workspace_locking_timeout help do the work.
To create or update an object, use state: present directive.
To delete an object, use state: absent directive
Normally, running one module can fail when a non-zero rc is returned. you can also override the conditions to fail or succeed with parameters rc_failed and rc_succeeded
Examples
- name: Example playbook (generated based on argument schema)
hosts: fortimanagers
connection: httpapi
gather_facts: false
vars:
ansible_httpapi_use_ssl: true
ansible_httpapi_validate_certs: false
ansible_httpapi_port: 443
tasks:
- name: Configure NetFlow.
fortinet.fmgdevice.fmgd_system_netflow:
# bypass_validation: false
# workspace_locking_adom: <global or your adom name>
# workspace_locking_timeout: 300
# rc_succeeded: [0, -2, -3, ...]
# rc_failed: [-2, -3, ...]
device: <your own value>
system_netflow:
# active_flow_timeout: <integer>
# collector_ip: <string>
# collector_port: <integer>
# collectors:
# - collector_ip: <string>
# collector_port: <integer>
# id: <integer>
# interface: <list or string>
# interface_select_method: <value in [auto, sdwan, specify]>
# source_ip: <string>
# source_ip_interface: <list or string>
# vrf_select: <integer>
# inactive_flow_timeout: <integer>
# interface: <list or string>
# interface_select_method: <value in [auto, sdwan, specify]>
# source_ip: <string>
# template_tx_counter: <integer>
# template_tx_timeout: <integer>
# exclusion_filters:
# - destination_ip: <string>
# destination_port: <string>
# id: <integer>
# protocol: <integer>
# source_ip: <string>
# source_port: <string>
# session_cache_size: <value in [max, min, default]>
Return Values
Common return values are documented: https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values, the following are the fields unique to this module:
- meta - The result of the request.returned: always type: dict
- request_url - The full url requested. returned: always type: str sample: /sys/login/user
- response_code - The status of api request. returned: always type: int sample: 0
- response_data - The data body of the api response. returned: optional type: list or dict
- response_message - The descriptive message of the api response. returned: always type: str sample: OK
- system_information - The information of the target system. returned: always type: dict
- rc - The status the request. returned: always type: int sample: 0
- version_check_warning - Warning if the parameters used in the playbook are not supported by the current FortiManager version. returned: if at least one parameter not supported by the current FortiManager version type: list
Status
This module is not guaranteed to have a backwards compatible interface.