You're reading the development documentation. Release version of the same page is here.

Configuration Module Attributes

The Module-Specific Node and Link Attributes and Merging Default Values parts of Optional Configuration Modules document describe module attributes from an end-user perspective. This document adds the internal information needed by a developer aiming to:

Specifying Module Attributes

Configuration modules could have:

  • Default global attributes specified in defaults section, for example defaults.bgp.as

  • Device-specific global attributes specified in defaults.devices section, for example defaults.devices.srlinux.sr.srgb

  • Global attributes specified in topology file, for example bgp.as

  • Node attributes specified on individual nodes.

  • Link attributes specified on individual links, for example ospf.area

  • Interface attributes specified within node data on individual link, for example r1.ospf.cost.

Valid Module Attributes

Valid module attributes are specified in a sub-dictionary of the the defaults.module.attributes dictionary:

  • global – valid global (topology-level) attributes

  • node – valid node-level attributes

  • link – valid link attributes

  • link_no_propagate – link module attributes that should not be propagated into interface data

  • node_copy – node module attributes that should be copied into interface attributes

  • interface – valid interface attributes

Module attributes for an individual module are stored (together with other module-specific data) in netsim/modules/<modname>.yml file.

You can extend the list of valid module attributes by adding new keys to the corresponding dictionary within defaults.module.attributes. See Lab Topology Attribute Validation for more details.

Propagating Module Attributes

Node-level module attributes are calculated during the pre-transform module processing. Default module attributes are deep-merged with node attributes (apart from no_propagate exceptions) in the following order:

  • Global module attributes from in the lab topology

  • Device-specific module attributes specified in defaults.devices.device.module setting

  • Default module attributes specified in defaults.module setting

The deep merge process takes care of attribute specificity:

  • Attributes specified on individual nodes are not overwritten with global- or device-specific settings.

  • Topology-level attributes are not overwritten with device-specific attributes.

  • Device-specific attributes are not overwritten with global system defaults.

no_propagate Attributes

Some global attributes are used solely to compute node- or interface attributes in the module-specific Python code, for example bgp.ebgp_role or bgp.as_list. It makes no sense to propagate these attributes to node data. To stop the propagation of a global attribute, add it to module.no_propagate list, for example:

bgp:
  no_propagate: [ ebgp_role, advertise_roles, rr_list, as_list ]

Likewise, some link attributes should not be propagated to interface data. For example, the prefix link attribute is irrelevant in interface data, as it’s used to calculate interface IP addresses (the prefix length is copied into IP addresses anyway).

The link attribute propagation is currently controlled with global defaults.attributes.link_no_propagate list. Extending that list with a module name would stop propagation of all module-specific attributes into interface data. If you need a more granular solution, remove extraneous interface attributes in node_post_transform module hook.

To Propagate or Not to Propagate

Use this simple rule to decide whether you need to propagate global module attributes into node data:

  • If you need an attribute to generate device configuration, it MUST be propagated into node data. Device configurations are usually generated with Ansible playbooks, and the global parameters are not copied into Ansible inventory.

  • You don’t need to propagate global attributes that modify the behavior of module-specific Python code, or are used to set node attributes within that code (copious examples in netsim.modules.bgp).