1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
require 'puppet/util/network_device/cisco'
require 'puppet/util/network_device/ipcalc'
# this manages setting properties to an interface in a cisco switch or router
class Puppet::Util::NetworkDevice::Cisco::Interface
include Puppet::Util::NetworkDevice::IPCalc
extend Puppet::Util::NetworkDevice::IPCalc
attr_reader :transport, :name
def initialize(name, transport)
@name = name
@transport = transport
end
COMMANDS = {
# property => order, ios command/block/array
:description => [1, "description %s"],
:speed => [2, "speed %s"],
:duplex => [3, "duplex %s"],
:native_vlan => [4, "switchport access vlan %s"],
:encapsulation => [5, "switchport trunk encapsulation %s"],
:mode => [6, "switchport mode %s"],
:allowed_trunk_vlans => [7, "switchport trunk allowed vlan %s"],
:etherchannel => [8, ["channel-group %s", "port group %s"]],
:ipaddress => [9,
lambda do |prefix,ip,option|
ip.ipv6? ? "ipv6 address #{ip.to_s}/#{prefix} #{option}" :
"ip address #{ip.to_s} #{netmask(Socket::AF_INET,prefix)}"
end],
:ensure => [10, lambda { |value| value == :present ? "no shutdown" : "shutdown" } ]
}
def update(is={}, should={})
Puppet.debug("Updating interface #{name}")
command("conf t")
command("interface #{name}")
# apply changes in a defined orders for cisco IOS devices
[is.keys, should.keys].flatten.uniq.sort {|a,b| COMMANDS[a][0] <=> COMMANDS[b][0] }.each do |property|
# They're equal, so do nothing.
next if is[property] == should[property]
# We're deleting it
if should[property] == :absent or should[property].nil?
execute(property, is[property], "no ")
next
end
# We're replacing an existing value or creating a new one
execute(property, should[property])
end
command("exit")
command("exit")
end
def execute(property, value, prefix='')
case COMMANDS[property][1]
when Array
COMMANDS[property][1].each do |command|
transport.command(prefix + command % value) do |out|
break unless out =~ /^%/
end
end
when String
command(prefix + COMMANDS[property][1] % value)
when Proc
value = [value] unless value.is_a?(Array)
value.each do |value|
command(prefix + COMMANDS[property][1].call(*value))
end
end
end
def command(command)
transport.command(command) do |out|
Puppet.err "Error while executing #{command}, device returned #{out}" if out =~ /^%/mo
end
end
end
|