Note
This module is part of the f5networks.f5_modules collection (version 1.37.1).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install f5networks.f5_modules.
To use it in a playbook, specify: f5networks.f5_modules.bigip_firewall_log_profile_network.
New in f5networks.f5_modules 1.0.0
Parameter | Comments |
|---|---|
log_format_delimiter string | Specifies the delimiter string when using a When creating a new profile, if this parameter is not specified, the default value of This option is valid when the Depending on the delimiter used, it may be necessary to wrap the delimiter in quotes to prevent YAML errors from occurring. The special character The maximum length allowed for this parameter is |
log_ip_errors dictionary | Modifies log settings for logging of IP error packets. |
|
enabled boolean |
This option enables or disables the logging of IP error packets. Choices:
|
|
rate_limit string |
This option sets rate limits for the logging of IP error packets. This option is effective only if logging of this message type is enabled. |
log_matches_accept_rule dictionary | Modifies log settings for ACL rules configured with an “accept” or “accept decisively” action. |
|
enabled boolean |
This option enables or disables the logging of packets that match ACL rules configured with an “accept” or “accept decisively” action. Choices:
|
|
rate_limit string |
This option sets rate limits for the logging of packets that match ACL rules configured with an “accept” or “accept decisively” action. This option is effective only if logging of this message type is enabled. |
log_matches_drop_rule dictionary | Modifies log settings for ACL rules configured with a drop action. |
|
enabled boolean |
This option enables or disables the logging of packets that match ACL rules configured with a drop action. Choices:
|
|
rate_limit string |
This option sets rate limits for the logging of packets that match ACL rules configured with a drop action. This option is effective only if logging of this message type is enabled. |
log_matches_reject_rule dictionary | Modifies log settings for ACL rules configured with a reject action. |
|
enabled boolean |
This option enables or disables the logging of packets that match ACL rules configured with a reject action. Choices:
|
|
rate_limit string |
This option sets rate limits for the logging of packets that match ACL rules configured with a reject action. This option is effective only if logging of this message type is enabled. |
log_message_fields list / elements=string | Specifies a set of fields to be logged. This option is valid when the The order of the list is important, as the server displays the selected traffic items in the log sequentially according to it. Choices:
|
log_publisher string | Specifies the name of the log publisher used for Network events. To specify the log_publisher on a different partition from the AFM log profile, specify the name in fullpath format, e.g. |
log_storage_format string | Specifies the type of the storage format. When creating a new log profile, if this parameter is not specified, the default is When When Choices:
|
log_tcp_errors dictionary | Modifies log settings for the logging of TCP error packets. |
|
enabled boolean |
This option enables or disables the logging of TCP error packets. Choices:
|
|
rate_limit string |
This option sets rate limits for the logging of TCP error packets. This option is effective only if logging of this message type is enabled. |
log_tcp_events dictionary | Modifies the log settings for logging of TCP events on the client side. |
|
enabled boolean |
This option enables or disables the logging of TCP events on the client side. Only Established and Closed states of a TCP session are logged if this option is enabled. Choices:
|
|
rate_limit string |
This option sets rate limits for the logging of TCP events on the client side. This option is effective only if logging of this message type is enabled. |
log_translation_fields boolean | This option enables or disables the logging of translated (i.e server side) fields in ACL match and TCP events. Translated fields include (but are not limited to) source address/port, destination address/port, IP protocol, route domain, and VLAN. Choices:
|
partition string | Device partition to create log profile on. This parameter is also used when specifying names for log publishers, unless log publisher names are in fullpath format. Default: |
profile_name string / required | Specifies the name of the AFM (Advanced Firewall Manager) log profile to be updated. |
provider dictionary added in f5networks.f5_modules 1.0.0 | A dict object containing connection details. |
|
auth_provider string |
Configures the auth provider for to obtain authentication tokens from the remote device. This option is really used when working with BIG-IQ devices. |
|
no_f5_teem boolean |
If You may omit this option by setting the environment variable Previously used variable Choices:
|
|
password aliases: pass, pwd string / required |
The password for the user account used to connect to the BIG-IP or the BIG-IQ. You may omit this option by setting the environment variable |
|
server string / required |
The BIG-IP host or the BIG-IQ host. You may omit this option by setting the environment variable |
|
server_port integer |
The BIG-IP server port. You may omit this option by setting the environment variable Default: |
|
timeout integer |
Specifies the timeout in seconds for communicating with the network device for either connecting or sending commands. If the timeout is exceeded before the operation is completed, the module will error. |
|
transport string |
Configures the transport connection to use when connecting to the remote device. Choices:
|
|
user string / required |
The username to connect to the BIG-IP or the BIG-IQ. This user must have administrative privileges on the device. You may omit this option by setting the environment variable |
|
validate_certs boolean |
If You may omit this option by setting the environment variable Choices:
|
rate_limit string | Defines a rate limit for all combined network firewall log messages per second. Beyond this rate limit, log messages are not logged. To specify an indefinite rate, use the value If specifying a numeric rate, the value must be between |
state string | When The only built-in profile that allows updating network log settings is global-network, attempts to do so on other built-in profiles will be ignored. When The Choices:
|
Note
- name: Add network settings to log profile
bigip_firewall_log_profile_network:
profile_name: barbaz
rate_limit: "150000"
log_publisher: local-db-pub
log_tcp_errors:
enabled: true
rate_limit: "10000"
log_tcp_events:
enabled: true
rate_limit: "40000"
log_storage_format: "field-list"
log_message_fields:
- vlan
- translated_vlan
- src_ip
provider:
password: secret
server: lb.mydomain.com
user: admin
delegate_to: localhost
- name: Change delimiter and log fields
bigip_firewall_log_profile_network:
profile_name: barbaz
log_format_delimiter: '.'
log_message_fields:
- translated_dest_ip
- translated_dest_port
provider:
password: secret
server: lb.mydomain.com
user: admin
delegate_to: localhost
- name: Modify built-in profile
bigip_firewall_log_profile_network:
profile_name: "global-network"
log_publisher: "/foobar/log1"
log_ip_errors:
enabled: true
rate_limit: "60000"
log_matches_reject_rule:
enabled: true
rate_limit: "2000"
log_translation_fields: true
log_storage_format: "field-list"
log_format_delimiter: '.'
log_message_fields:
- protocol
- dest_ip
- dest_port
provider:
password: secret
server: lb.mydomain.com
user: admin
delegate_to: localhost
- name: Remove custom log profile network log settings
bigip_firewall_log_profile_network:
profile_name: "{{ log_profile }}"
state: absent
provider:
password: secret
server: lb.mydomain.com
user: admin
delegate_to: localhost
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
log_format_delimiter string | The delimiter string when using a log_storage_format of field-list. Returned: changed Sample: |
log_ip_errors complex | Log settings for logging of IP error packets. Returned: changed Sample: |
|
enabled boolean |
Enable or disable the logging of IP error packets. Returned: changed Sample: |
|
rate_limit string |
The rate limit for the logging of IP error packets. Returned: changed Sample: |
log_matches_accept_rule complex | Log settings for ACL rules configured with an “accept” or “accept decisively” action. Returned: changed Sample: |
|
enabled boolean |
Enable or disable the logging of packets that match ACL rules. Returned: changed Sample: |
|
rate_limit string |
The rate limit for the logging of packets that match ACL rules. Returned: changed Sample: |
log_matches_drop_rule complex | Log settings for ACL rules configured with a drop action. Returned: changed Sample: |
|
enabled boolean |
Enable or disable the logging of packets that match ACL rules. Returned: changed Sample: |
|
rate_limit string |
The rate limit for the logging of packets that match ACL rules. Returned: changed Sample: |
log_matches_reject_rule complex | Log settings for ACL rules configured with a reject action. Returned: changed Sample: |
|
enabled boolean |
Enable or disable the logging of packets that match ACL rules. Returned: changed Sample: |
|
rate_limit string |
The rate limit for the logging of packets that match ACL rules. Returned: changed Sample: |
log_message_fields list / elements=string | The delimiter string when using a log_storage_format of field-list. Returned: changed Sample: |
log_publisher string | The name of the log publisher used for Network events. Returned: changed Sample: |
log_storage_format string | The type of the storage format. Returned: changed Sample: |
log_tcp_errors complex | Log settings for logging of TCP error packets. Returned: changed Sample: |
|
enabled boolean |
Enable or disable the logging of TCP error packets. Returned: changed Sample: |
|
rate_limit string |
The rate limit for the logging of TCP error packets. Returned: changed Sample: |
log_tcp_events complex | Log settings for logging of TCP events on the client side. Returned: changed Sample: |
|
enabled boolean |
Enable or disable the logging of TCP events on the client side. Returned: changed Sample: |
|
rate_limit string |
The rate limit for the logging of TCP events on the client side. Returned: changed Sample: |
log_translation_fields boolean | Enable or disable the logging of translated (i.e server side) fields in ACL match and TCP events. Returned: changed Sample: |
rate_limit string | The rate limit for all combined network firewall log messages per second. Returned: changed Sample: |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/f5networks/f5_modules/bigip_firewall_log_profile_network_module.html