https://github.com/aweher/docs-vxlan-evpn
Laboratorio a dictar en LACNOG2022
https://github.com/aweher/docs-vxlan-evpn
Last synced: about 2 months ago
JSON representation
Laboratorio a dictar en LACNOG2022
- Host: GitHub
- URL: https://github.com/aweher/docs-vxlan-evpn
- Owner: aweher
- License: gpl-3.0
- Created: 2022-09-19T02:41:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-03T03:01:05.000Z (over 2 years ago)
- Last Synced: 2025-02-08T15:46:20.869Z (4 months ago)
- Language: Shell
- Size: 93.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laboratorio VXLAN & EVPN LACNOG
## How to deploy
### Source code
```bash
# Clone repo
git clone https://github.com/LACNOG/doc-labs-vxlanevpn.git
cd doc-labs-vxlanevpn# Create local development environment
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt# Run the testing server
mkdocs serve
```Now you can connect to http://localhost:8000 from any web browser. All changes you make to the `docs/` folder will be automatically refreshed in your browser.
### Docker
```bash
docker run --name doc_vxlan_evpn_lab_lacnog -d --rm -p 8000:80 reg.dc.celp.red/lacnog/doc-lab-vxlan-evpn:latest
```Now you can connect to http://localhost:8000 from any web browser.