sync_channel
scrapli.channel.sync_channel
Channel
¶
Bases: BaseChannel
Source code in channel/sync_channel.py
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 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 |
|
channel_authenticate_ssh(auth_password: str, auth_private_key_passphrase: str) -> None
¶
Handle SSH Authentication for transports that only operate "in the channel" (i.e. system)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
auth_password |
str
|
password to authenticate with |
required |
auth_private_key_passphrase |
str
|
passphrase for ssh key if necessary |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Raises:
Type | Description |
---|---|
ScrapliAuthenticationFailed
|
if password prompt seen more than twice |
ScrapliAuthenticationFailed
|
if passphrase prompt seen more than twice |
Source code in channel/sync_channel.py
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 |
|
channel_authenticate_telnet(auth_username: str = '', auth_password: str = '') -> None
¶
Handle Telnet Authentication
Parameters:
Name | Type | Description | Default |
---|---|---|---|
auth_username |
str
|
username to use for telnet authentication |
''
|
auth_password |
str
|
password to use for telnet authentication |
''
|
Returns:
Type | Description |
---|---|
None
|
None |
Raises:
Type | Description |
---|---|
ScrapliAuthenticationFailed
|
if password prompt seen more than twice |
ScrapliAuthenticationFailed
|
if login prompt seen more than twice |
Source code in channel/sync_channel.py
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 |
|
get_prompt() -> str
¶
Get current channel prompt
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
string of the current prompt |
Source code in channel/sync_channel.py
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 |
|
read() -> bytes
¶
Read chunks of output from the channel
Replaces any r" " characters that sometimes get stuffed into the output from the devices
Returns:
Name | Type | Description |
---|---|---|
bytes |
bytes
|
output read from channel |
Source code in channel/sync_channel.py
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 |
|
send_input(channel_input: str, *, strip_prompt: bool = True, eager: bool = False) -> Tuple[bytes, bytes]
¶
Primary entry point to send data to devices in shell mode; accept input and returns result
Parameters:
Name | Type | Description | Default |
---|---|---|---|
channel_input |
str
|
string input to send to channel |
required |
strip_prompt |
bool
|
strip prompt or not, defaults to True (yes, strip the prompt) |
True
|
eager |
bool
|
eager mode reads and returns the |
False
|
Returns:
Type | Description |
---|---|
Tuple[bytes, bytes]
|
Tuple[bytes, bytes]: tuple of "raw" output and "processed" (cleaned up/stripped) output |
Source code in channel/sync_channel.py
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 |
|
send_input_and_read(channel_input: str, *, strip_prompt: bool = True, expected_outputs: Optional[List[str]] = None, read_duration: Optional[float] = None) -> Tuple[bytes, bytes]
¶
Send a command and read until expected prompt is seen, outputs are seen, or for duration
Parameters:
Name | Type | Description | Default |
---|---|---|---|
channel_input |
str
|
string input to send to channel |
required |
strip_prompt |
bool
|
strip prompt or not, defaults to True (yes, strip the prompt) |
True
|
expected_outputs |
Optional[List[str]]
|
list of strings to look for in output; if any of these are seen, return output read up till that read |
None
|
read_duration |
Optional[float]
|
float duration to read for |
None
|
Returns:
Type | Description |
---|---|
Tuple[bytes, bytes]
|
Tuple[bytes, bytes]: tuple of "raw" output and "processed" (cleaned up/stripped) output |
Source code in channel/sync_channel.py
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 |
|
send_inputs_interact(interact_events: List[Tuple[str, str, Optional[bool]]], *, interaction_complete_patterns: Optional[List[str]] = None) -> Tuple[bytes, bytes]
¶
Interact with a device with changing prompts per input.
Used to interact with devices where prompts change per input, and where inputs may be hidden such as in the case of a password input. This can be used to respond to challenges from devices such as the confirmation for the command "clear logging" on IOSXE devices for example. You may have as many elements in the "interact_events" list as needed, and each element of that list should be a tuple of two or three elements. The first element is always the input to send as a string, the second should be the expected response as a string, and the optional third a bool for whether or not the input is "hidden" (i.e. password input)
An example where we need this sort of capability:
''' 3560CX#copy flash: scp: Source filename []? test1.txt Address or name of remote host []? 172.31.254.100 Destination username [carl]? Writing test1.txt Password:
Password
Sink: C0644 639 test1.txt
! 639 bytes copied in 12.066 secs (53 bytes/sec) 3560CX# '''
To accomplish this we can use the following:
''' interact = conn.channel.send_inputs_interact( [ ("copy flash: scp:", "Source filename []?", False), ("test1.txt", "Address or name of remote host []?", False), ("172.31.254.100", "Destination username [carl]?", False), ("carl", "Password:", False), ("super_secure_password", prompt, True), ] ) '''
If we needed to deal with more prompts we could simply continue adding tuples to the list of interact "events".
Parameters:
Name | Type | Description | Default |
---|---|---|---|
interact_events |
List[Tuple[str, str, Optional[bool]]]
|
list of tuples containing the "interactions" with the device each list element must have an input and an expected response, and may have an optional bool for the third and final element -- the optional bool specifies if the input that is sent to the device is "hidden" (ex: password), if the hidden param is not provided it is assumed the input is "normal" (not hidden) |
required |
interaction_complete_patterns |
Optional[List[str]]
|
list of patterns, that if seen, indicate the interactive "session" has ended and we should exit the interactive session. |
None
|
Returns:
Type | Description |
---|---|
Tuple[bytes, bytes]
|
Tuple[bytes, bytes]: output read from the channel with no whitespace trimming/cleaning, and the output read from the channel that has been "cleaned up" |
Source code in channel/sync_channel.py
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 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 |
|