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
|
# File 'lib/puppet/util/network_device/cisco_ios/model/aaa_group/base.rb', line 17
def self.register(base)
base.register_scoped :ensure, /^(aaa\s+group\s+server\s+(?:radius|tacacs\+)\s+(\S+)).*?^!/m do
cmd 'sh run'
match do |txt|
txt.match(/\S+/) ? :present : :absent
end
default :absent
supported true
end
base.register_scoped :protocol, /^(aaa\s+group\s+server\s+(?:radius|tacacs\+)\s+(\S+)).*?^!/m do
cmd 'sh run'
match /^aaa\s+group\s+server\s+(radius|tacacs\+)\s/
supported true
end
aaaprop(base, :acct_port) do
match /^\s*server\s+.*acct-port\s+(\d+).*$/
fragment "acct-port <%= value %>"
after :auth_port
end
aaaprop(base, :auth_port) do
match /^\s*server\s+.*auth-port\s+(\d+).*$/
fragment "auth-port <%= value %>"
after :server
end
aaaprop(base, :server) do
match /^\s*server\s+([^ ]*).*$/
fragment "server <%= value %>"
end
base.register_scoped :local_authentication, /^(aaa\s+authentication\s+login\s+default\s+group\s+(\S+)\s+local)/, Puppet::Util::NetworkDevice::Cisco_ios::Model::ScopedValue do
cmd 'sh run'
match do |txt|
(!txt.nil? and txt.length > 0) ? :true : :false
end
add do |transport,value|
transport.command("aaa authentication login default group #{@scope_name} local")
end
remove { |*_| }
end
base.register_scoped :local_authorization, /^(aaa\s+authorization\s+exec\s+default\s+group\s+(\S+)\s+local)/, Puppet::Util::NetworkDevice::Cisco_ios::Model::ScopedValue do
cmd 'sh run'
match do |txt|
(!txt.nil? and txt.length > 0) ? :true : :false
end
add do |transport,value|
transport.command("aaa authorization exec default group #{@scope_name} local")
end
remove { |*_| }
end
end
|