Git Product home page Git Product logo

ansible-role_cumulus's Introduction

cumulus

Vars plugin

This role employs the use of a vars_plugin for slave interfaces used in a bond to inherit mstpctl parameters from the bond interface, as well as set their alias_name to Master:<bond_name>.

NOTE: Ansible variable precedence means if one sets one of these attributes of an interface in the host_vars, that will override the vars plugin.

NTP

cumulus_ntp_servers: List of ntp servers to use - Default: Cumulus ntp servers cumulus_ntp_interface: Interface to listen on for ntp - Default eth0

Default management interface

This role uses the following default configuration for the dedicated management port when that port is eth0. Note, some Cumulus supported hardware uses eth1 for the management interface, it is up to the user to know this and edit the default if needed. The configuration can be found in /templates/header.j2. The default will result in the following being put in /etc/network/interfaces unless eth0 is defined elsewhere:

# The primary network interface
auto eth0
iface eth0 inet dhcp
    mtu 1500

Port Policies

It may be desirable to set a default switch-wide port configuration, such as MTU. This is simply yaml to json. Note, setting this example policy will apply the MTU 9216 to all ports on the switch that do not have an MTU explicitly set on the interface config. NOTE: This role by default sets an MTU of 1500 on the eth0 interface to protect against eth0 becoming inoperable if a global MTU above 1500 is set on hardware where eth0 is not capable of going above 1500, ie Dell S3048 or Dell Z9100. If one defines this interface elsewhere via config.interfaces one may override the MTU to the desired size or remove it altogether. Example:

config:
  port_policy:
    address:
      defaults:
        mtu: "9216"

For more information, see Setting a Policy for Global System MTU

802.1X Port Authentication

NOTE: Changing 802.1X settings or port attributes will restart the hostapd daemon, which resets existing authorized sessions

Currently only a single RAIDUS server is supported

Authentication server configuration options:

config:
  dot1x:
    server_ip: 'x.x.x.x' # RADIUS server - Required
    authentication_port: 1812 # Default
    shared_secret: 'xxxx' # RADIUS shared secret - Required
    accounting_port: 1813 # Default
    client_source_ip: 'y.y.y.y' # Optional
    mab_activation_delay: 30 # Default - Cumulus only supports a value between 5 and 30
    eap_reauth_period: 0 # Default
    parking_vlan_id: 0000 # Optional
    # To enable dynamic vlan support
    dynamic_vlan:
    # To require dynamic vlan assignment
    # dynamic_vlan: required

To enable 802.1X auth on a port, add ONLY one of the following options to the port configuration:

config:
  swp1:
    dot1x: # Enable 802.1X
    # dot1x-mab: # Enable MAC address auth bypass
    # dot1x-parking: # Enable parking vlan assignment for failed auth case

For more information, see 802.1X Interfaces

ACLs

NOTE: Changing these settings will cause switchd to restart, which will stop network traffic

NOTE: Depending on atomic mode, updating ACLs may interrupt network traffic

  • cumulus_acl_non_atomic_update_mode: Boolean - control non atomic update mode

Configure ACL rules with the acl hash in config. Each rule set is written to it's own file, taking the key as the filename. The digits are important as they are used to control the order that the rules are loaded. 00 and 99 are reserved by Cumulus.

Example:

config:
  acl:
    10_some_rules:
      variables:
        - INGRESS = swp+
        - INPUT_PORT_CHAIN = INPUT,FORWARD
      iptables:
        - -A $INPUT_PORT_CHAIN --in-interface $INGRESS -p tcp --dport 80 -j ACCEPT
      ip6tables:
        - -A $INPUT_PORT_CHAIN --in-interface $INGRESS -p tcp --dport 80 -j ACCEPT
      ebtables:
        - -A INPUT -p IPv4 -j ACCEPT
    20_more_rules:
      ...

For more information, See Netfilter - ACLs

Inspired by mikegleasonjr/ansible-role-firewall

DOS Protection

NOTE: Changing these settings will cause switchd to restart, which will stop network traffic.

Cumulus has hardware level DOS protection that is disabled by default. To enable, set cumulus_dos_enable to true.

  • cumulus_dos_enable: Boolean - Set to true to enable DOS protection with the config values from defaults/main.yml
  • cumulus_datapath_conf: See defaults/main.yml, controls the various DOS options.
  • cumulus_datapath_conf_file: Defaults to the location of the Broadcom config file.

For more information, See Configuring Hardware-enabled DDOS Protection for more information.

Breakout ports

NOTE: Changing these settings will cause switchd to restart, which will stop network traffic.

NOTE: Beware, removing port from config.ports will result in leaving the previous config behind.

100G switches allow you to breakout ports to 4x10G, 4x25G, etc with use of a breakout cable (or use a different speed than 100G). For example, this will take swp1 and make swp1sN, where N is 0 to 4 or 2, depending on which breakout type configured.

As of this writing, the options available to the Z9100 switch is:

  • 4x10G
  • 4x25G
  • 2x50G
  • 40G
  • 50G
  • 100G
  • disabled

Example:

config:
  ports:
    1: 4x10G
    2: 4x10G

For more information, read Configuring Breakout Ports

Administratively Down Interfaces

There may be a need to administratively shutdown interfaces. This can be accomplished by using down key with a value of yes.

Example:

config:
  interfaces:
    swp1:
      link:
        down: yes

Dropping Untagged Frames

On trunk ports by default untagged frames are placed into the native VLAN. The default native VLAN is VLAN ID 1. If there is a desire to prevent untagged frames from being allowed in/out of an interface you can use bridge_allow_untagged. The behavior changes and any untagged frames will be dropped.

config:
  interfaces:
    swp1:
      bridge_allow_untagged: 'no'

ansible-role_cumulus's People

Contributors

davidmnoriega avatar peterp415 avatar russelltadams avatar

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.