-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJunosNetConf.php
executable file
·620 lines (494 loc) · 16.1 KB
/
JunosNetConf.php
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
<?php namespace Lamoni\JunosNetConf;
use Lamoni\NetConf\NetConf;
use Lamoni\NetConf\NetConfAuth\NetConfAuthAbstract;
/**
* Class JunosNetConf
* @package Lamoni\JunosNetConf
*/
class JunosNetConf
{
/**
* Holds the hostname
*
* @var string
*/
protected $hostname;
/**
* Holds our instance of the NetConf class
*
* @var NetConf
*/
protected $netconf;
/**
* Build our JunosNetConf instance.
*
* @param $hostname
* @param NetConfAuthAbstract $netconfAuth
*/
public function __construct($hostname, NetConfAuthAbstract $netconfAuth)
{
$this->hostname = $hostname;
$this->netconf = new NetConf($hostname, $netconfAuth);
}
/**
* Returns our NetConf instance.
*
* @return NetConf
*/
public function netConf()
{
return $this->netconf;
}
/**
* Base function for sending a command (in CLI syntax) to the device.
*
* @param $command
* @param $format (xml | text)
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function operationalCommandRaw($command, $format)
{
return $this->netConf()->sendRPC("<command format='{$format}'>{$command}</command>");
}
/**
* Sends command (in CLI syntax) to the device and requests the output to be in text (CLI) format.
*
* @param $command
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function operationalCommandText($command)
{
return $this->operationalCommandRaw($command, 'text');
}
/**
* Sends command (in CLI syntax) to the device and requests the output to be in XML format.
*
* @param $command
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function operationalCommandXML($command)
{
return $this->operationalCommandRaw($command, 'xml');
}
/**
* Base method for loading configuration into the device's candidate configuration.
*
* @param string $configData
* @param string $configNode
* @param array $customAttributes
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationRaw($configData="", $configNode="", array $customAttributes)
{
if ($configData !== "" && $configNode !== "") {
$loadConfig = "<load-configuration>".
"<{$configNode}>".
"{$configData}".
"</{$configNode}>".
"</load-configuration>";
}
else {
$loadConfig = "<load-configuration/>";
}
$loadConfig = new \SimpleXMLElement($loadConfig);
foreach ($customAttributes as $attributeName=>$attributeValue) {
$loadConfig->addAttribute($attributeName, $attributeValue);
}
return $this->netConf()->sendRPC($loadConfig->asXML());
}
/**
* Loads the device's rescue configuration.
* Equivalent to "rollback rescue".
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationRescue()
{
return $this->loadConfigurationRaw(
"",
"",
['rescue' => 'rescue']
);
}
/**
* Rolls the configuration back to the rollback with the ID of $rollbackID.
* Equivalent to "rollback $rollbackID".
*
* @param $rollbackID
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationRollback($rollbackID)
{
return $this->loadConfigurationRaw(
"",
"",
[
'rollback' => $rollbackID
]
);
}
/**
* Loads the configuration given in file found at URL.
* Can be HTTP, FTP, SCP, or device local file.
*
* @param $url
* @param string $action
* @param string $format
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationURL($url, $action='merge', $format='text')
{
return $this->loadConfigurationRaw(
"",
"",
[
'url' => $url,
'action' => $action,
'format' => $format
]
);
}
/**
* Loads the set commands given in file found at URL.
* Can be HTTP, FTP, SCP, or device local file.
*
* @param $url
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationSetURL($url)
{
return $this->loadConfigurationURL($url, 'set', 'text');
}
/**
* Loads the XML configuration given in $configData.
*
* @param $configData
* @param $action
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationXML($configData, $action)
{
return $this->loadConfigurationRaw(
$configData,
'configuration',
[
'action' => $action,
'format' => 'xml'
]
);
}
/**
* Loads curly-brace formatted configuration given in $configData.
*
* @param $configData
* @param $action
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationCurly($configData, $action)
{
return $this->loadConfigurationRaw(
$configData,
'configuration-text',
[
'action' => $action
]
);
}
/**
* Loads the set commands given in the array $configData.
*
* @param array $configData
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function loadConfigurationSet(array $configData)
{
return $this->loadConfigurationRaw(
implode("\n", $configData),
'configuration-set',
[
'action' => 'set'
]
);
}
/**
* Sends the <abort/> call for aborting a process currently in progress.
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function sendAbort()
{
return $this->netConf()->sendRPC('<abort/>');
}
/**
* Returns the MD5 checksum of the file at $filePath.
*
* @param $filePath
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function getChecksumInformation($filePath)
{
return $this->netConf()->sendRPC(
"<get-checksum-information>".
"<path>".
"{$filePath}".
"</path>".
"</get-checksum-information>"
);
}
/**
* Sends the <open-configuration/> call to the device.
* Equivalent to "edit private" or "configure private".
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function openConfiguration()
{
return $this->netConf()->sendRPC(
"<open-configuration>".
"<private/>".
"</open-configuration>"
);
}
/**
* Sends the <close-configuration/> call to the device.
* Equivalent to exiting a "edit private" or "configure private" session.
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function closeConfiguration()
{
return $this->netConf()->sendRPC("<close-configuration/>");
}
/**
* Sends the <lock-configuration/> call to the device.
* Equivalent to a "edit exclusive" or "configure exclusive".
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function lockConfiguration()
{
return $this->netConf()->sendRPC('<lock-configuration/>');
}
/**
* Sends the <unlock-configuration/> call to the device.
* Equivalent to exiting a "edit exclusive" or "configure exclusive" session.
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function unlockConfiguration()
{
return $this->netConf()->sendRPC('<unlock-configuration/>');
}
/**
* Sends the <request-end-session/> call to the device.
* Requests the device to end the current NETCONF session.
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function requestEndSession()
{
return $this->netConf()->sendRPC('<request-end-session/>');
}
/**
* Base for committing the candidate configuration to the active configuration.
*
* @param array $customParams
* @param bool $synchronize
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function commitConfigurationRaw(array $customParams, $synchronize=true)
{
if ($synchronize === true) {
$customParams['synchronize'] = '';
}
$commitConfig = new \SimpleXMLElement('<commit-configuration/>');
foreach ($customParams as $paramName => $paramValue) {
$commitConfig->addChild(
$paramName,
$paramValue
);
}
return $this->netConf()->sendRPC($commitConfig->asXML());
}
/**
* Commits the candidate configuration.
* Equivalent to "commit" or "commit synchronize", based on $synchronize's value.
*
* @param bool $synchronize
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function commitConfiguration($synchronize=true)
{
return $this->commitConfigurationRaw([], $synchronize);
}
/**
* Commit checks the configuration to verify the validity of the candidate configuration.
* Equivalent to "commit check" or "commit check synchronize", based on $synchronize's value.
*
* @param bool $synchronize
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function commitConfigurationCheck($synchronize=true)
{
return $this->commitConfigurationRaw(
[
'check' => ''
],
$synchronize
);
}
/**
* Commits the candidate configuration to the active configuration, with a comment.
* Equivalent to "commit comment $comment" or "commit synchronize comment $comment", based
* on $synchronize's value.
*
* @param $comment
* @param bool $synchronize
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function commitConfigurationWithComment($comment, $synchronize=true)
{
return $this->commitConfigurationRaw(
[
'log' => $comment
],
$synchronize
);
}
/**
* Commits the candidate configuration to the active configuration at a certain time, with a comment.
* Equivalent to "commit at-time $atTime comment $comment" or "commit synchronize at-time $atTime comment $comment",
* based on $synchronize's value.
*
* @param $atTime
* @param $comment
* @param bool $synchronize
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function commitConfigurationAtTimeWithComment($atTime, $comment, $synchronize=true)
{
return $this->commitConfigurationRaw(
[
'at-time' => $atTime,
'log' => $comment
],
$synchronize
);
}
/**
* Commits the candidate configuration to the active configuration, with the requirement that the
* configuration be rolled back to its previous state if no follow-up commit is sent. A commit comment
* is also allowed but not required.
* Equivalent to "commit confirmed" or "commit confirmed synchronize", based on $synchronize's value
*
* @param int $confirmTimeout
* @param string $comment
* @param bool $synchronize
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function commitConfigurationConfirmed($confirmTimeout=600, $comment='', $synchronize=true)
{
return $this->commitConfigurationRaw(
[
'confirmed' => '',
'confirm-timeout' => $confirmTimeout,
'log' => $comment
],
$synchronize
);
}
/**
* Base for getting the device's configuration.
*
* @param $configData
* @param array $customAttributes
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function getConfigurationRaw($configData, array $customAttributes=[])
{
$getConfig = new \SimpleXMLElement(
"<get-configuration>".
"{$configData}".
"</get-configuration>"
);
foreach ($customAttributes as $attrName => $attrValue) {
$getConfig->addAttribute($attrName, $attrValue);
}
return $this->netConf()->sendRPC($getConfig->asXML());
}
/**
* Gets the configuration under XML stanza $configData from $database.
* Equivalent to "show configuration"
*
* @param string $configData
* @param string $database (candidate | committed)
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function getConfigurationCurly($configData="", $database='committed')
{
return $this->getConfigurationRaw(
$configData,
[
'format' => 'text',
'database' => $database
]
);
}
/**
* Gets the configuration in "set command" format.
*
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function getConfigurationSet()
{
return $this->operationalCommandText('show configuration | display set');
}
public function getConfigurationXML($configData="", $database='committed')
{
return $this->getConfigurationRaw(
$configData,
[
'format' => 'xml',
'database' => $database
]
);
}
/**
* Gets the comparison of the candidate configuration to the configuration in a rollback.
* Equivalent to "show | compare rollback $rollbackID".
*
* @param int $rollbackID
* @param string $format
* @param string $database
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function getConfigurationCompare($rollbackID=0, $format='xml', $database='committed')
{
return $this->getConfigurationRaw(
"",
[
'compare' => 'rollback',
'rollback' => $rollbackID,
'format' => $format,
'database' => $database
]
);
}
/**
* Gets the comparison between two different rollbacks.
* Equivalent to a "show system rollback $rollbackID compare $compareID".
*
* @param $rollbackID
* @param null $compareID
* @return \Lamoni\NetConf\NetConfMessage\NetConfMessageRecv\NetConfMessageRecvRPC
*/
public function getConfigurationRollbackComparison($rollbackID, $compareID=null)
{
$rollbackCompare = new \SimpleXMLElement('<get-rollback-information/>');
$rollbackCompare->addChild('rollback', $rollbackID);
if (!is_null($compareID)) {
$rollbackCompare->addChild('compare', $compareID);
}
return $this->netConf()->sendRPC($rollbackCompare->asXML());
}
}