Skip to content

Commit aeae47d

Browse files
larsliljatzarski0
andauthored
Airgabbed_userguide_phase1 (#90)
* Airgabbed_userguide_phase1 First stab at air gabbed installation guide. * Update air-gapped installation guide --------- Co-authored-by: tzarski0 <92273798+tzarski0@users.noreply.github.com>
1 parent 2684910 commit aeae47d

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,48 @@ The tool supports the following scale per CML lab:
434434

435435
The 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

439481
To install WSL on your Windows VM or Physical machine. Ensure that the HW Virutalization is enabled in the BIOS or VM Defintion.

0 commit comments

Comments
 (0)