Forge Home

networkmanager

Puppet module which installs, configures, and controls NetworkManager

377 downloads

64 latest version

3.1 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.0.0-rc1 (latest)
  • 0.1.1
  • 0.1.0 (deleted)
released May 4th 2023
This version is compatible with:
  • Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x
  • Puppet >= 6.21.0 < 8.0.0
  • , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'jednoprsak-networkmanager', '0.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add jednoprsak-networkmanager
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install jednoprsak-networkmanager --version 0.1.1

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

jednoprsak/networkmanager — version 0.1.1 May 4th 2023

networkmanager

Table of Contents

  1. Description
  2. Setup - The basics of getting started with networkmanager

Description

You want to use our module because noone written another module for using keyfiles yet (October 18, 2022) and we from Prague Academy of Physics computing farm geeks are the best underground team ever, but stop flexing. I hope that this module will be usable for you. The module installs NetworkManager, configures its config file, starts service, creates keyfiles and pushes them inside NetworkManager via nmcli(and nmcli pushes them inside via dbus). It provides a few defined resources to create keyfiles for connnection(dhcp, static, ipv6, ipv4), bridge, bond, vlan and fallback defined resource for user defined keyfile.

Setup

What networkmanager module affects OPTIONAL

Brain and mood.

Setup Requirements OPTIONAL

You need a few additional libraries like hash2stuff.

Beginning with networkmanager

When you want to begin with NetworkManager, you need to be clever as devil, but our module will help you create keyfiles and push them inside that oven of hell.

Usage


class { 'networkmanager':
  erase_unmanaged_keyfiles => true,
  no_auto_default          => true;
}

networkmanager::ifc::connection { 'z1':
  ensure         => present,
  mac_address    => '52:54:00:4d:2a:56',
  ipv4_method    => 'manual',
  ipv4_address   => '192.168.1.12/24,192.168.1.1',
  ipv4_dns       => '8.8.8.8;8.8.4.4;',
  ipv6_method    => 'manual',
  ipv6_dhcp_duid => '00:22:66::52:54:10:44:2a:56'
  ipv6_address   => 'IPV6ADDRESS/PREFIX',
  ipv6_dns       => 'IPV6DNS1;IPV6DNS2;'
  ipv6_gateway   => 'IPV6GATEWAY'
}

networkmanager::ifc::bridge { 'bridge1':
  ensure => present,
  type => 'bridge',
  ipv6_method => 'disabled',
}

networkmanager::ifc::bridge::slave { 'bridge1-slave':
  ensure => present,
  mac_address  => 'MM:AA:CC:MM:AA:CC', #here insert MAC address string.
  master     => 'bridge1',
  slave_type => 'bridge'
}

networkmanager::ifc::bond { 'bondmaster2':
  ensure => present,
  ipv4_method => 'auto',
  ipv6_method => 'ignore',
  additional_config => {
    bond => {
      mode => 'balance-xor',
      miimon => '100',
    }
  };
}

networkmanager::ifc::bond::slave { 'bondslaveens8':
  ensure => present,
  mac_address => 'MAC_ADDRESS',
  master  => 'bondmaster2',
}
  
networkmanager::ifc::bond::slave { 'bondslaveens9':
  ensure => present,
  mac_address => 'MAC_ADDRESS',
  master  => 'bondmaster2',
}

Contact

mica@fzu.cz jednoprsak@gmail.com