Nornir Service File Copy Task¤
task api name:
file_copy
The Nornir Service File Copy Task is a component of NorFab's Nornir service, designed to facilitate the transfer of files to and from network devices. This task provides network engineers with a reliable and efficient method for managing device configurations, firmware updates, and other critical files. By leveraging the capabilities of the Nornir service, users can automate file transfers.
Nornir File Copy Sample Usage¤
NORFAB Nornir File Copy Shell Reference¤
NorFab shell supports these command options for Nornir file-copy
task:
nf#man tree nornir.file-copy
root
└── nornir: Nornir service
└── file-copy: Copy files to/from devices
├── timeout: Job timeout
├── workers: Filter worker to target, default 'all'
├── add_details: Add task details to results
├── run_num_workers: RetryRunner number of threads for tasks execution
├── run_num_connectors: RetryRunner number of threads for device connections
├── run_connect_retry: RetryRunner number of connection attempts
├── run_task_retry: RetryRunner number of attempts to run task
├── run_reconnect_on_fail: RetryRunner perform reconnect to host on task failure
├── run_connect_check: RetryRunner test TCP connection before opening actual connection
├── run_connect_timeout: RetryRunner timeout in seconds to wait for test TCP connection to establish
├── run_creds_retry: RetryRunner list of connection credentials and parameters to retry
├── tf: File group name to save task results to on worker file system
├── tf_skip_failed: Save results to file for failed tasks
├── diff: File group name to run the diff for
├── diff_last: File version number to diff, default is 1 (last)
├── progress: Emit execution progress
├── table: Table format (brief, terse, extend) or parameters or True
├── headers: Table headers
├── headers_exclude: Table headers to exclude
├── sortby: Table header column to sort by
├── reverse: Table reverse the sort by order
├── FO: Filter hosts using Filter Object
├── FH: Filter hosts by hostname
├── FC: Filter hosts containment of pattern in name
├── FR: Filter hosts by name using Regular Expressions
├── FG: Filter hosts by group
├── FP: Filter hosts by hostname using IP Prefix
├── FL: Filter hosts by names list
├── FM: Filter hosts by platform
├── FX: Filter hosts excluding them by name
├── FN: Negate the match
├── hosts: Filter hosts to target
├── *source_file: Source file to copy
├── plugin: Connection plugin parameters
│ └── netmiko: Use Netmiko plugin to copy files
│ ├── dest-file: Destination file to copy
│ ├── file-system: Destination file system
│ ├── direction: Direction of file copy, default 'put'
│ ├── inline-transfer: Use inline transfer, supported by Cisco IOS
│ ├── overwrite-file: Overwrite destination file if it exists, default 'False'
│ ├── socket-timeout: Socket timeout in seconds, default '10.0'
│ └── verify-file: Verify destination file hash after copy, default 'True'
└── dry-run: Do not copy files, just show what would be done
nf#
*
- mandatory/required command argument
Python API Reference¤
Task to transfer files to and from hosts using SCP.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source_file
|
str
|
The path or URL of the source file to be copied in
|
required |
plugin
|
str
|
The plugin to use for file transfer. Supported plugins:
|
'netmiko'
|
to_dict
|
bool
|
Whether to return the result as a dictionary. Defaults to True. |
True
|
add_details
|
bool
|
Whether to add detailed information to the result. Defaults to False. |
False
|
dry_run
|
bool
|
If True, performs a dry run without making any changes. Defaults to False. |
False
|
**kwargs
|
Additional arguments to pass to the file transfer plugin. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
dict |
Dict
|
The result of the file copy operation. |
Raises:
Type | Description |
---|---|
UnsupportedPluginError
|
If the specified plugin is not supported. |
Source code in norfab\workers\nornir_worker.py
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 |
|