Skip to content
Snippets Groups Projects
Unverified Commit 62d3768e authored by mojothemonkey's avatar mojothemonkey Committed by GitHub
Browse files

Update interface.pp

parent b1936c6f
Branches
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
# [*netmask*] # [*netmask*]
# [*broadcast*] # [*broadcast*]
# [*hwaddr*] # [*hwaddr*]
# [*macaddr*]
# String. Default: undef # String. Default: undef
# Standard network parameters # Standard network parameters
# #
...@@ -115,7 +116,10 @@ ...@@ -115,7 +116,10 @@
# If both are present ipaddr is used. # If both are present ipaddr is used.
# #
# $hwaddr = undef, # $hwaddr = undef,
# hwaddr if set configures the mac address of the interface. # hwaddr if set assigns this interface to the device with this mac.
#
# $macaddr = undef,
# macaddr if set spoofs the mac address of the interface.
# #
# $prefix = undef, # $prefix = undef,
# Network PREFIX aka CIDR notation of the network mask. The PREFIX # Network PREFIX aka CIDR notation of the network mask. The PREFIX
...@@ -287,6 +291,7 @@ define network::interface ( ...@@ -287,6 +291,7 @@ define network::interface (
$broadcast = undef, $broadcast = undef,
$gateway = undef, $gateway = undef,
$hwaddr = undef, $hwaddr = undef,
$macaddr = undef,
$mtu = undef, $mtu = undef,
$description = undef, $description = undef,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment