Code Monkey home page Code Monkey logo

ansible-role-dellos-logging's Introduction

Logging role

This role facilitates the configuration of global logging attributes, and it supports the configuration of logging servers. This role is abstracted for dellos6, dellos9, and dellos10.

The Logging role requires an SSH connection for connectivity to a Dell EMC Networking device. You can use any of the built-in OS connection variables .

Installation

ansible-galaxy install Dell-Networking.dellos-logging

Role variables

  • Role is abstracted using the ansible_network_os variable that can take dellos9, dellos6, and dellos10 values
  • If the dellos_cfg_generate variable is set to true, it generates the role configuration commands in a file
  • Any role variable with a corresponding state variable set to absent negates the configuration of that variable
  • Setting an empty value for any variable negates the corresponding configuration
  • Variables and values are case-sensitive

dellos_logging keys

Key Type Description Support
logging list Configures the logging server (see logging.*) dellos6, dellos9, dellos10
logging.ip string (required) Configures the IPv4 address for the logging server (A.B.C.D format) dellos6, dellos9, dellos10
logging.secure_port integer Specifies log messages over the TLS port dellos9
logging.tcp_port integer Specifies log messages over the TCP port if secure_port is not defined dellos9
logging.udp_port integer Specifies log messages over the UDP port if both TCP and the secure port key are not defined dellos9
logging.vrf dict Specifies a VRF instance to be used to reach the host dellos9
logging.vrf.name string Specifies the VRF name dellos9
logging.vrf.secure_port integer Specifies log messages over the TLS port dellos9
logging.vrf.tcp_port integer Specifies log messages over the TCP port if secure_port key is not defined dellos9
logging.vrf.udp_port integer Specifies log messages over the UDP port if both TCP and secure_port_key is not defined dellos9
logging.vrf.state string: absent,present* Deletes VRF instance of the logging server if set to absent dellos9
logging.state string: absent,present* Deletes the logging server if set to absent dellos6, dellos9, dellos10
console dictionary Configures logging to the console (see console.*) dellos10
console.enable boolean Enables/disables logging to the console dellos10
console.severity string Configures the minimum severity level for logging to the console dellos10
log_file dictionary Configures logging to a log file (see log_file.*) dellos10
log_file.enable boolean Enables/disables logging to a log file dellos10
log_file.severity string Configures the minimum severity level for logging to a log file dellos10
buffer integer Specifies the buffered logging severity level (0 to 7) dellos9
console_level integer Configures the console logging level (0 to 7) dellos9
trap_level integer Configures the syslog server severity level (0 to 7) dellos9
syslog_version integer Configures the syslog version (0/1) dellos9
monitor integer Configures the terminal line logging level (0 to 7) dellos9
history integer Configures the syslog history table (0 to 7) dellos9
history_size integer Specifies the history table size dellos9
on boolean Enables logging to all supported destinations if set to true dellos9
extended boolean Enables extended logging if set to true dellos9
coredump dict Configures coredump logging dellos9
coredump.server dict Specifies all server details dellos9
coredump.server.server_ip string (required) Specifies the IPv4/IPv6 address of the logging server dellos9
coredump.server.username string Specifies the username to be configured dellos9
coredump.server.password string Specifies the password to be configured dellos9
coredump.server.state string: present,absent* Deletes the coredump server if set to absent dellos9
coredump.stackunit dict Specifies details for enabling a coredump on the stack-unit dellos9
coredump.stackunit.all boolean Enables a coredump on all stack-units dellos9
coredump.stackunit.unit_num integer Specifies the stack-unit number (0 to 5) dellos9
coredump.stackunit.state string: present,absent* Deletes the stack-unit coredump if set to absent dellos9
source_interface string Configures the source interface for logging dellos6, dellos9, dellos10

NOTE: Asterisk (*) denotes the default value if none is specified.

Connection variables

Ansible Dell EMC Networking roles require connection information to establish communication with the nodes in your inventory. This information can exist in the Ansible group_vars or host_vars directories or inventory, or in the playbook itself.

Key Required Choices Description
ansible_host yes Specifies the hostname or address for connecting to the remote device over the specified transport
ansible_port no Specifies the port used to build the connection to the remote device; if value is unspecified, the ANSIBLE_REMOTE_PORT option is used; it defaults to 22
ansible_ssh_user no Specifies the username that authenticates the CLI login for the connection to the remote device; if value is unspecified, the ANSIBLE_REMOTE_USER environment variable value is used
ansible_ssh_pass no Specifies the password that authenticates the connection to the remote device
ansible_become no yes, no* Instructs the module to enter privileged mode on the remote device before sending any commands; if value is unspecified, the ANSIBLE_BECOME environment variable value is used, and the device attempts to execute all commands in non-privileged mode
ansible_become_method no enable, sudo* Instructs the module to allow the become method to be specified for handling privilege escalation; if value is unspecified, the ANSIBLE_BECOME_METHOD environment variable value is used
ansible_become_pass no Specifies the password to use if required to enter privileged mode on the remote device; if ansible_become is set to no this key is not applicable
ansible_network_os yes dellos6/dellos9/dellos10, null* Loads the correct terminal and cliconf plugins to communicate with the remote device

NOTE: Asterisk (*) denotes the default value if none is specified.

Dependencies

The dellos-logging role is built on modules included in the core Ansible code. These modules were added in Ansible version 2.2.0.

Example playbook

This example uses the dellos-logging role to completely set up logging servers. It creates a hosts file with the switch details and corresponding variables. The hosts file should define the ansible_network_os variable with corresponding Dell EMC networking OS name. When dellos_cfg_generate is set to true, the variable generates the configuration commands as a .part file in build_dir path. By default, the variable is set to false.

Sample hosts file

leaf1 ansible_host= <ip_address> 

Sample host_vars/leaf1

hostname: leaf1
ansible_become: yes
ansible_become_method: xxxxx
ansible_become_pass: xxxxx
ansible_ssh_user: xxxxx
ansible_ssh_pass: xxxxx
ansible_network_os: dellos9
build_dir: ../temp/dellos9
  
dellos_logging:
  logging:
   - ip : 1.1.1.1
     state: present
   - ip: 2.2.2.2
     secure_port: 1025
     tcp_port: 1024
     udp_port: 2000
     state: present
   - ip: 3.3.3.3
     vrf:
       name: test
       secure_port: 1024
       tcp_port: 1025
       udp_port: 2000
       state: present
     secure_port: 1025
     tcp_port: 2000
     udp_port: 1025
     state: present
 buffer: 5
 console_level: 7
 trap_level: 5
 syslog_version: 5
 history: 4
 history_size: 3
 monitor: 5
 on: true
 extended: true
 coredump:
   server:
     server_ip: 2.2.2.2
     username: u1
     password: pwd
     state: present
   stackunit:
      all: true
      unit_num: 5
      state: present
 source_interface: "fortyGigE 1/9"

Simple playbook to setup logging - leaf.yaml

- hosts: leaf1
  roles:
     - Dell-Networking.dellos-logging

Run

ansible-playbook -i hosts leaf.yaml

(c) 2017 Dell Inc. or its subsidiaries. All Rights Reserved.

ansible-role-dellos-logging's People

Contributors

abirami-n avatar amybuck avatar bk2zsto avatar javeedf avatar raghavendra-akkalie avatar sindhuparvathi-gopi avatar skg-net avatar

Watchers

 avatar  avatar  avatar

ansible-role-dellos-logging's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.