-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIxiaNetPython.tcl
More file actions
415 lines (369 loc) · 9.52 KB
/
IxiaNetPython.tcl
File metadata and controls
415 lines (369 loc) · 9.52 KB
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
83
84
85
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
# Copyright (c) Ixia technologies 2011-2012, Inc.
set releaseVersion 1.0
#===============================================================================
# Change made
# ==2014==
# Version 1.0
# 1. Create
# 2. Delete all puts $logIO from tcl
proc GetEnvTcl { product } {
set productKey {HKEY_LOCAL_MACHINE\SOFTWARE\Ixia Communications}\$product
set versionKey [ registry keys $productKey ]
set latestKey [ lindex $versionKey end ]
if { $latestKey == "Multiversion" } {
set latestKey [ lindex $versionKey [ expr [ llength $versionKey ] - 2 ] ]
}
set installInfo [ append productKey \\ $latestKey \\ InstallInfo ]
return [ registry get $installInfo HOMEDIR ]
}
set portlist [list]
set trafficlist [list]
set portnamelist [list]
set trafficnamelist [list]
set tportlist [list]
proc loadconfig { filename } {
global portlist
global trafficlist
global portnamelist
global trafficnamelist
global tportlist
ixNet exec loadConfig [ixNet readForm $filename]
set root [ixNet getRoot]
set portlist [ixNet getL $root vport]
foreach portobj $portlist {
lappend portnamelist [ixNet getA $portobj -name]
}
set trafficlist [ixNet getL [ixNet getL $root traffic] trafficItem]
foreach trafficItemobj $trafficlist {
set itemlist [ixNet getL $trafficItemobj highLevelStream]
foreach trafficobj $itemlist {
lappend trafficnamelist [ixNet getA $trafficobj -name]
lappend tportlist [ixNet getA $trafficobj -txPortName]
}
}
}
proc Login { { location "localhost/8009"} { force 0 } { filename null } } {
global ixN_tcl_v
global loginInfo
global portlist
global trafficlist
global portnamelist
global trafficnamelist
global tportlist
global remote_server
global remote_serverPort
set loginInfo $location
if { $location == "" } {
set port "localhost/8009"
} else {
set port $location
}
set portInfo [ split $port "/" ]
set remote_server [ lindex $portInfo 0 ]
if { [ regexp {\d+\.\d+\.\d+\.\d+} $remote_server ] || ( $remote_server == "localhost" ) } {
set portInfo [ lreplace $portInfo 0 0 ]
} else {
set remote_server localhost
}
if { [ llength $portInfo ] == 0 } {
set portInfo 8009
}
set flag 0
foreach port $portInfo {
ixNet disconnect
ixNet connect $remote_server -version $ixN_tcl_v -port $port
set root [ ixNet getRoot]
if { $force } {
#return
set remote_serverPort $port
set flag 1
} else {
if { [ llength [ ixNet getL $root vport ] ] > 0 } {
continue
} else {
#return
set remote_serverPort $port
set flag 1
}
}
if { $flag == 1 } {
if { $filename != "null" } {
loadconfig $filename
after 15000
foreach pname $portnamelist pobj $portlist {
Port $pname NULL NULL $pobj
}
foreach tname $trafficnamelist tobj $trafficlist tport $portnamelist {
Traffic $tname $tport $tobj
}
return
} else {
return
}
}
}
return
}
proc GetAllPortObj {} {
set portObj [list]
set objList [ find objects ]
foreach obj $objList {
if { [ $obj isa Port ] } {
lappend portObj [ $obj cget -handle ]
}
}
return $portObj
}
set currDir [file dirname [info script]]
lappend auto_path $currDir/../IxNetwork
set logIO [open $currDir/init.log a+]
if { [ catch {
source [file join $currDir Ixia_Util.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_Util.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetObj.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetObj.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetTester.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetTester.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetPort.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetPort.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetTraffic.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetTraffic.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetDhcp.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetDhcp.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetIgmp.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetIgmp.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetCapture.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetCapture.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetCaptureFilter.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetCaptureFilter.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetOspf.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetOspf.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetL3Vpn6Vpe.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetL3Vpn6Vpe.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetLdp.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetLdp.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetIsis.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetIsis.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetTrill.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetTrill.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetDcbx.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetDcbx.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetFcoe.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetFcoe.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetPPPoX.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetPPPoX.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetBgp.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetBgp.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetRFC2544.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetRFC2544.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetDot1xRate.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetDot1xRate.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetRip.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetRip.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetPim.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetPim.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir Ixia_NetBfd.tcl]
} err ] } {
if { [ catch {
source [file join $currDir Ixia_NetBfd.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
if { [ catch {
source [file join $currDir IxOperate.tcl]
} err ] } {
if { [ catch {
source [file join $currDir IxOperate.tbc]
} tbcErr ] } {
puts $logIO "load package fail...$err $tbcErr"
}
}
set errNumber(1) "Bad argument value or out of range..."
set errNumber(2) "Madatory argument missed..."
set errNumber(3) "Unsupported parameter..."
set errNumber(4) "Confilct argument..."
set ixN_tcl_v "6.0"
if { $::tcl_platform(platform) == "windows" } {
package require registry
if { [ catch {
lappend auto_path "[ GetEnvTcl IxNetwork ]/TclScripts/lib/IxTclNetwork"
} err ] } {
puts $logIO "load package fail...$err $tbcErr"
}
package require IxTclNetwork
catch {
source [ GetEnvTcl IxOS ]/TclScripts/bin/ixiawish.tcl
}
catch {package require IxTclHal}
}
package provide IxiaNetPython $releaseVersion
# catch { console hide }
# rename ixNet IxNet
# proc ixNet { args } {
# DeputsCMD "ixNet $args"
# eval IxNet $args
# }
if { [file exist "c:/windows/temp/ixlogfile"] } {
} else {
file mkdir "c:/windows/temp/ixlogfile"
}
set timeVal [ clock format [ clock seconds ] -format %Y%m%d_%H_%M ]
set clickVal [ clock clicks ]
set logfile_name "c:/windows/temp/ixlogfile/$timeVal.txt"
# IxDebugOn
# IxDebugCmdOn