Class: Puppet::NetDev::CE::TrunkApi

Inherits:
ApiBase
  • Object
show all
Defined in:
lib/puppet/provider/ce/api/trunk/trunk_api.rb

Instance Method Summary collapse

Constructor Details

#initializeTrunkApi

Returns a new instance of TrunkApi.



22
23
24
# File 'lib/puppet/provider/ce/api/trunk/trunk_api.rb', line 22

def initialize
  super()
end

Instance Method Details

#get_trunkObject



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
83
84
# File 'lib/puppet/provider/ce/api/trunk/trunk_api.rb', line 26

def get_trunk
trunk_array = []
session = Puppet::NetDev::CE::Device.session
get_trunk_xml = '<rpc><get><filter type="subtree"><ethernet xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><ethernetIfs><ethernetIf><ifName></ifName><l2Attribute><linkType></linkType><pvid></pvid><trunkVlans></trunkVlans></l2Attribute></ethernetIf></ethernetIfs></ethernet></ifm></filter></get></rpc>'

trunk_all = session.rpc.do_config(get_trunk_xml)
trunk_elements = trunk_all.first_element_child.first_element_child
trunk_elements.element_children.each do |trunk_elem|
  trunk_doc = Nokogiri::XML(trunk_elem.to_s)
  trunk_name = trunk_doc.xpath('/ethernetIf/ifName').text
  trunk_mode = trunk_doc.xpath('/ethernetIf/l2Attribute/linkType').text
  trunk_untagged_vlan = trunk_doc.xpath('/ethernetIf/l2Attribute/pvid').text
  trunk_tagged_vlan = trunk_doc.xpath('/ethernetIf/l2Attribute/trunkVlans').text

  property_hash = { ensure: :present }
  property_hash[:name] = trunk_name

  if trunk_mode == 'access'
    property_hash[:mode] = :access
  elsif trunk_mode == 'trunk'
    property_hash[:mode] = :trunk
  end

  property_hash[:untagged_vlan] = trunk_untagged_vlan if trunk_untagged_vlan

  if trunk_tagged_vlan

    # transform tagged_vlans into vlan ID array
    itrunk = trunk_tagged_vlan.to_i(16)
    ibtrunk = itrunk.to_s(2)
    ibtrunkcount = ibtrunk.length

    if ibtrunkcount < 4096
      for i in 1..4096 - ibtrunkcount do
        ibtrunk = '0' + ibtrunk
      end
       end

    bbtrunk = []
    n = 0
    for i in 0..4096
      if ibtrunk[i] == '1'
        bbtrunk[n] = i.to_s
        n += 1
      end
          end

    property_hash[:tagged_vlans] = bbtrunk

  end

  property_hash[:ensure] = :present
  property_hash[:encapsulation] = :dot1q

  trunk_array << property_hash
end

trunk_array
end

#set_trunk(resource) ⇒ Object



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# File 'lib/puppet/provider/ce/api/trunk/trunk_api.rb', line 86

def set_trunk(resource)
session = Puppet::NetDev::CE::Device.session

if resource[:mode] == :access

  set_trunk_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ethernet xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><ethernetIfs><ethernetIf operation="merge"><ifName>' + (resource[:name]).to_s + '</ifName><l2Attribute><linkType>access</linkType><pvid>' + (resource[:untagged_vlan]).to_s + '</pvid></l2Attribute></ethernetIf></ethernetIfs></ethernet></config></edit-config></rpc>'
  end

if resource[:mode] == :trunk

  # transform tagged_vlans into trunkVlans bitmap
  count = resource[:tagged_vlans].count
  vlan_bit = Array.new(1024, 0)
  all_bits = Array.new(1024, 0)

  for i in 0..count - 1 do
    tagged_vlans = resource[:tagged_vlans][i].to_i
    j = tagged_vlans / 4
    all_bits[j] = all_bits[j] + 1 if tagged_vlans % 4 == 0

    all_bits[j] = all_bits[j] + 2 if tagged_vlans % 4 == 1

    all_bits[j] = all_bits[j] + 4 if tagged_vlans % 4 == 2

    all_bits[j] = all_bits[j] + 8 if tagged_vlans % 4 == 3

    case all_bits[j]

    when 0

      vlan_bit[j] = '0'

    when 1

      vlan_bit[j] = '8'

    when 2

      vlan_bit[j] = '4'

    when 3

      vlan_bit[j] = 'C'

    when 4

      vlan_bit[j] = '2'

    when 5

      vlan_bit[j] = 'A'

    when 6

      vlan_bit[j] = '6'

    when 7

      vlan_bit[j] = 'E'

    when 8

      vlan_bit[j] = '1'

    when 9

      vlan_bit[j] = '9'

    when 10

      vlan_bit[j] = '5'

    when 11

      vlan_bit[j] = 'D'

    when 12

      vlan_bit[j] = '3'

    when 13

      vlan_bit[j] = 'B'

    when 14

      vlan_bit[j] = '7'

    when 15

      vlan_bit[j] = 'F'
end
  end

  aa = vlan_bit.join

  # delete tagged_vlans
  get_trunk_xml = '<rpc><get><filter type="subtree"><ethernet xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><ethernetIfs><ethernetIf><ifName>' + (resource[:name]).to_s + '</ifName><l2Attribute><linkType></linkType><pvid></pvid><trunkVlans></trunkVlans></l2Attribute></ethernetIf></ethernetIfs></ethernet></ifm></filter></get></rpc>'

  trunk = session.rpc.do_config(get_trunk_xml)
  trunk_element = trunk.first_element_child.first_element_child
  trunk_doc = Nokogiri::XML(trunk_element.element_children.to_s)
  trunk_mode = trunk_doc.xpath('/ethernetIf/l2Attribute/linkType').text
  if trunk_mode == 'trunk'
    trunk_tagged_vlan = trunk_doc.xpath('/ethernetIf/l2Attribute/trunkVlans').text

    ia = trunk_tagged_vlan.to_i(16)
    ib = aa.to_i(16)
    c = ia ^ ib
    d = c & ia
    dd = d.to_s(16).upcase
    ddcount = dd.length

    if ddcount < 1024
      for i in 1..1024 - ddcount do
        dd = '0' + dd
      end

        end

    delete_trunk_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ethernet xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><ethernetIfs><ethernetIf operation="merge"><ifName>' + (resource[:name]).to_s + '</ifName><l2Attribute><linkType>trunk</linkType><pvid>1</pvid><trunkVlans>' + aa.to_s + ':' + dd.to_s + '</trunkVlans></l2Attribute></ethernetIf></ethernetIfs></ethernet></config></edit-config></rpc>'

    session.rpc.do_config(delete_trunk_xml)

  end

  # add tagged_vlans

  set_trunk_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ethernet xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><ethernetIfs><ethernetIf operation="merge"><ifName>' + (resource[:name]).to_s + '</ifName><l2Attribute><linkType>trunk</linkType><pvid>' + (resource[:untagged_vlan]).to_s + '</pvid><trunkVlans>' + aa.to_s + ':' + aa.to_s + '</trunkVlans></l2Attribute></ethernetIf></ethernetIfs></ethernet></config></edit-config></rpc>'
end

session.rpc.do_config(set_trunk_xml)
end