File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -434,6 +434,48 @@ The tool supports the following scale per CML lab:
434434
435435The tool requires a minimum of 9 nodes to deploy the topology; therefore, it is not supported on CML-Free.
436436
437+ ## Appendix - Offline/Air-gapped Installation
438+
439+ If you need to install the ` catalyst-sdwan-lab ` package in an air-gapped environment (without internet access), follow these steps:
440+
441+ On a machine with internet access, download the package and all its dependencies.
442+
443+ ```
444+ mkdir catalyst_sdwan_lab_packages
445+ cd catalyst_sdwan_lab_packages
446+ pip download catalyst-sdwan-lab
447+ ```
448+ This will create a local directory containing the package ` .whl ` or ` .tar.gz ` files along with all its dependencies.
449+
450+ Transfer the folder to the Air-Gapped Environment.
451+
452+ On the air-gapped machine, create a directory to store the virtual environment and runtime files:
453+
454+ mkdir csdwan
455+ cd csdwan
456+
457+ Create virtual environment:
458+
459+ python3 -m venv venv
460+
461+ Activate virtual environment:
462+
463+ source venv/bin/activate
464+
465+ Install the package and its dependencies from the transferred files:
466+
467+ pip install --no-index --find-links=/path/to/catalyst_sdwan_lab_packages catalyst-sdwan-lab
468+
469+ Replace ` /path/to/catalyst_sdwan_lab_packages ` with the path where the downloaded files were copied.
470+
471+ Verify that SD-WAN Lab tool can run:
472+
473+ sdwan-lab --version
474+
475+ You can also use the following shortcut to run any lab task:
476+
477+ csdwan --version
478+
437479## Appendix - WSL Installation
438480
439481To install WSL on your Windows VM or Physical machine. Ensure that the HW Virutalization is enabled in the BIOS or VM Defintion.
You can’t perform that action at this time.
0 commit comments