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
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
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
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
|