Code Monkey home page Code Monkey logo

ansible-role-dellos-vrrp's Introduction

VRRP role

This role facilitates configuring virtual router redundancy protocol (VRRP) attributes. It supports the creation of VRRP groups for interfaces and setting the VRRP group attributes. This role is abstracted for dellos9.

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

Installation

ansible-galaxy install Dell-Networking.dellos-vrrp

Role variables

  • Role is abstracted using the ansible_network_os variable that can take the dellos9 value
  • If dellos_cfg_generate is set to true, the variable 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
  • dellos_vrrp (dictionary) holds a dictionary with the interface name key
  • Interface name can correspond to any of the valid dellos interface with a unique interface identifier name
  • Physical interfaces names must be in format (for example fortyGigE 1/1)
  • Logical interface names must be in <logical_interfacename> format (for example, vlan 1 for dellos9)
  • Variables and values are case-sensitive
Key Type Description Support
vrrp dictionary Configures VRRP commands (see vrrp.*) dellos6, dellos9, dellos10
delay_min integer Configures the minimum delay timer applied after interface up event (0 to 900 dellos6, dellos9, dellos10
delay_reload integer Configures the minimum delay timer applied after boot (0 to 900) dellos6, dellos9, dellos10
vrrp_group list Configures VRRP group commands (see vrrp_group.*) dellos6, dellos9, dellos10
vrrp_group.type string: ipv6,ipv4 Specifies the type of the VRRP group dellos6, dellos9, dellos10
vrrp_group.group_id integer (required) Configures the ID for the VRRP group (1 to 255) dellos6, dellos9, dellos10
vrrp_group.description string Configures a single line description for the VRRP group dellos6, dellos9, dellos10
vrrp_group.virtual_address string Configures a virtual-address to the VRRP group (A.B.C.D format) dellos6, dellos9, dellos10
vrrp_group.enable boolean: true,false Enables/disables the VRRP group at the interface dellos6, dellos9, dellos10
vrrp_group.preempt boolean: true*,false Configures preempt mode on the VRRP group dellos6, dellos9, dellos10
vrrp_group.priority integer Configures priority for the VRRP group (1 to 255; default 100) dellos6, dellos9, dellos10
vrrp_group.version string: 2*,3,both Configures the VRRP version of the VRRP group; not supported when vrrp_group.type is "ipv6" dellos6, dellos9, dellos10
vrrp_group.hold_time_centisecs integer Configures the hold-time for the VRRP group in centiseconds (0 to 65525 and in multiple of 25; default 100); centisecs gets converted into seconds in version 2 dellos6, dellos9, dellos10
vrrp_group.adv_interval_centisecs integer Configures the advertisement interval for the VRRP group in centiseconds (25 to 4075; default 100) and in multiple of 25; centisecs gets converted into seconds in version 2 dellos6, dellos9, dellos10
vrrp_group.track_interface list Configures the track interface of the VRRP group (see track.*) dellos6, dellos9, dellos10
track_interface.resource_id integer Configures the object tracking resource ID of the VRRP group; mutually exclusive with track.interface dellos6, dellos9, dellos10
track_interface.interface string Configures the track interface of the VRRP group ( format) dellos6, dellos9, dellos10
track_interface.priority_cost integer Configures the priority cost for track interface of the VRRP group (1 to 254; default 10) dellos6, dellos9, dellos10
track_interface.state string: present*,absent Deletes the specific track interface from the VRRP group if set to absent dellos6, dellos9, dellos10
vrrp_group.track_interface_state string: present*,absent Deletes all track interfaces from the VRRP group if set to absent dellos6, dellos9, dellos10
vrrp_group.authentication dictionary Configures the authentication type for the VRRP group (see authentication.*); not supported when vrrp_group.type is "ipv6" dellos6, dellos9, dellos10
authentication.key string (required): 0,7,LINE Configures the authentication key for the VRRP group dellos6, dellos9, dellos10
authentication.key_string string Configures the user key string; if key is 7, this variable takes the hidden user key string; if key is 0, this variable takes the unencrypted user key (clear-text); supported only if the value of authentication.key is 7 or 0 dellos6, dellos9, dellos10
authentication.state string: present*,absent Deletes authentication from the interface VRRP group if set to absent dellos6, dellos9, dellos10
vrrp_group.state string: present*,absent Deletes the VRRP group from the interface if set to absent 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-vrrp 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-vrrp role to configure VRRP commands at the interfaces. 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. It writes a simple playbook that only references the dellos-vrrp role.

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_vrrp:
    fortyGigE 1/5:
      vrrp:
        delay_min: 2
        delay_reload: 3
      vrrp_group:
        - group_id: 2
          type: ipv6
          description: "Interface-vrrp-ipv6"
          virtual_address: 2001:4898:5808:ffa3::9
          enable: true
          priority: 120
          preempt: false
          track_interface:
            - resource_id: 3
              priority_cost: 25
              state: present
            - interface: port-channel 120
              priority_cost: 20
            - interface: fortyGigE 1/11
                  state: present
          track_interface_state: present
          adv_interval_centisecs: 200
          hold_time_centisecs: 20
        - group_id: 4
          state: present
          description: "Interface-vrrp4"
          virtual_address: 10.28.0.2
          enable: true
          priority: 120
          preempt: false
          version: both
          track_interface:
            - resource_id: 3
              priority_cost: 25
              state: present
            - interface: port-channel 120
              priority_cost: 20
            - interface: fortGigE 1/10
              state: present
          track_interface_state: present
          adv_interval_centisecs: 225
          hold_time_centisecs: 25
          authentication:
            key: 0
            key_string: vrrpkey
            state: present

Simple playbook to setup system - leaf.yaml

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

Run

ansible-playbook -i hosts leaf.yaml

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

ansible-role-dellos-vrrp's People

Contributors

abirami-n avatar amybuck avatar bk2zsto avatar javeedf avatar skg-net avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

ansible-role-dellos-vrrp'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.