Forge Home

netbt

This module modifies the netbiosoptions registry setting for all interfaces on a Windows system.

9,435 downloads

9,435 latest version

4.3 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

  • 0.0.1 (latest)
released May 18th 2016
This version is compatible with:
  • Puppet Enterprise >= 2015.1.0 < 2015.4.0
  • Puppet >= 4.0.0 < 5.0.0

Start using this module

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

Add this module to your Puppetfile:

mod 'velocity303-netbt', '0.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add velocity303-netbt
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install velocity303-netbt --version 0.0.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

velocity303/netbt — version 0.0.1 May 18th 2016

puppet_netbt

This module modifies the netbiosoptions registry setting for all interfaces on a Windows system.

Overview

This module controls whether NetBIOS is enabled on all interfaces. Note: Due to the registry key that is created, the registry key DHCPNetbiosOptions is ignored. If you need to use dhcp to control this, just set the netbt_setting parameter to say so within this module.

Doing a regular include of this module will ensure that the dhcp server is the source of this setting.
include netbt
A parameterized instantiation of this module will allow you to explicitly enable or disable netbios for all interfaces.
class { netbt:
  netbt_setting => 'enable'
}

Options:

netbt_setting: The NetBIOS options are 'Enable NetBIOS over TCP\IP', 'Disable NetBIOS over TCP\IP', or 'Use NetBIOS setting from the DHCP' server. The default is to use NetBIOS setting from DHCP server. Choose from enabled, disabled, or dhcp to explicitly set this.