community.network.cnos_logging module – Manage logging on network devices
Note
This module is part of the community.network collection (version 5.1.0).
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 community.network.
To use it in a playbook, specify: community.network.cnos_logging.
Note
The community.network collection has been deprecated and will be removed from Ansible 12. See the discussion thread for more information.
DEPRECATED
- Removed in:
- version 6.0.0 
- Why:
- This collection and all content in it is unmaintained and deprecated. 
- Alternative:
- Unknown. 
Synopsis
- This module provides declarative management of logging on Cisco Cnos devices. 
Aliases: network.cnos.cnos_logging
Parameters
| Parameter | Comments | 
|---|---|
| List of logging definitions. | |
| Destination of the logs. Lenovo uses the term server instead of host in its CLI. Choices: 
 | |
| Set logging facility. This is applicable only for server logging | |
| Set logging severity levels. 0-emerg;1-alert;2-crit;3-err;4-warn; 5-notif;6-inform;7-debug Default:  | |
| If value of  | |
| Size of buffer. The acceptable value is in range from 4096 to 4294967295 bytes. Default:  | |
| State of the logging configuration. Choices: 
 | 
Notes
Note
- Tested against CNOS 10.9.1 
Examples
- name: Configure server logging
  community.network.cnos_logging:
    dest: server
    name: 10.241.107.224
    facility: local7
    state: present
- name: Remove server logging configuration
  community.network.cnos_logging:
    dest: server
    name: 10.241.107.224
    state: absent
- name: Configure console logging level and facility
  community.network.cnos_logging:
    dest: console
    level: 7
    state: present
- name: Configure buffer size
  community.network.cnos_logging:
    dest: logfile
    level: 5
    name: testfile
    size: 5000
- name: Configure logging using aggregate
  community.network.cnos_logging:
    aggregate:
      - { dest: console, level: 6 }
      - { dest: logfile, size: 9000 }
- name: Remove logging using aggregate
  community.network.cnos_logging:
    aggregate:
      - { dest: console, level: 6 }
      - { dest: logfile, name: anil, size: 9000 }
    state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| The list of configuration mode commands to send to the device Returned: always Sample:  | 
Status
- This module will be removed in version 6.0.0. [deprecated] 
- For more information see DEPRECATED. 
