Start dev (#4)
* Add Netbox configuration and plugins * Add Containerlab topology * Add template * Update Documentation
This commit is contained in:
18
documentation/CookBook.md
Normal file
18
documentation/CookBook.md
Normal file
@@ -0,0 +1,18 @@
|
||||
# CookBook
|
||||
|
||||
>[!WARNING]
|
||||
>
|
||||
> Work in progress
|
||||
>
|
||||
|
||||
## Prepare data
|
||||
|
||||
### Popule data in Netbox
|
||||
|
||||
Generate a Netbox token via webui and execute the python script
|
||||
|
||||
```bash
|
||||
python import.py http://localhost:8080 YOUR_NETBOX_TOKEN device_model.yml subnets.yml
|
||||
```
|
||||
|
||||
## Create Fabric
|
||||
@@ -1,8 +1,12 @@
|
||||
# Installation Guide
|
||||
|
||||
## Table of Contents
|
||||
|
||||
1. [Installing ContainerLab](#installing-containerlab)
|
||||
2. [Installing vrnetlab](#installing-vrnetlab)
|
||||
3. [Installing Docker](#installing-docker)
|
||||
2. [Installing Docker](#installing-docker)
|
||||
3. [Images Installation](#images-installation)
|
||||
4. [Install Netbox and plugins](#install-netbox-and-plugins)
|
||||
5. [Sources](#sources)
|
||||
|
||||
## Installing ContainerLab
|
||||
|
||||
@@ -42,6 +46,12 @@ sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
|
||||
|
||||
# To be able to execute docker with the current user
|
||||
sudo usermod -aG docker $USER
|
||||
|
||||
# Create management network
|
||||
docker network create \
|
||||
--driver bridge \
|
||||
--subnet=172.20.20.0/24 \
|
||||
management
|
||||
```
|
||||
|
||||
## Images installation
|
||||
@@ -52,8 +62,9 @@ To download and install the arista cEOS image, you need to be registered to [ari
|
||||
Once you created an account, please logged in and down the cEOS docker images.
|
||||
|
||||
To add this new image to docker, please use the docker CLI command :
|
||||
|
||||
```bash
|
||||
docker import cEOS64-lab-4.30.3M.tar.xz ceos:4.30.3M
|
||||
docker import cEOS64-lab-4.32.0.1F.tar.xz ceos:4.32.0.1F
|
||||
```
|
||||
|
||||
### Nokia SR Linux
|
||||
@@ -63,15 +74,119 @@ docker pull ghcr.io/nokia/srlinux
|
||||
```
|
||||
|
||||
Now you should see images available to use :
|
||||
|
||||
```bash
|
||||
➜ projet-vxlan-automation git:(main) ✗ docker images
|
||||
REPOSITORY TAG IMAGE ID CREATED SIZE
|
||||
ceos 4.30.3M 63870e68ff8d 2 days ago 1.95GB
|
||||
ceos 4.32.0.1F 63870e68ff8d 2 days ago 1.95GB
|
||||
ghcr.io/nokia/srlinux latest 801eb020ad70 11 days ago 2.59GB
|
||||
```
|
||||
|
||||
## Install Netbox and plugins
|
||||
|
||||
For this project, we need to install specific plugin :
|
||||
- [Netbox BGP](https://github.com/netbox-community/netbox-bgp)
|
||||
- [Netbox Diode](https://github.com/netboxlabs/diode)
|
||||
- [Netbox Topology Views](https://github.com/netbox-community/netbox-topology-views)
|
||||
|
||||
```bash
|
||||
git clone -b release https://github.com/netbox-community/netbox-docker.git netbox
|
||||
cd netbox
|
||||
touch plugin_requirements.txt Dockerfile-Plugins docker-compose.override.yml
|
||||
cat <<EOF > plugin_requirements.txt
|
||||
netbox_topology_views
|
||||
netboxlabs-diode-netbox-plugin
|
||||
netbox-napalm-plugin
|
||||
EOF
|
||||
```
|
||||
|
||||
Create the Dockerfile used to build the custom Image
|
||||
|
||||
```bash
|
||||
cat << EOF > Dockerfile-Plugins
|
||||
FROM netboxcommunity/netbox:v4.2
|
||||
|
||||
COPY ./plugin_requirements.txt /opt/netbox/
|
||||
RUN /usr/local/bin/uv pip install -r /opt/netbox/plugin_requirements.txt
|
||||
|
||||
COPY configuration/configuration.py /etc/netbox/config/configuration.py
|
||||
COPY configuration/plugins.py /etc/netbox/config/plugins.py
|
||||
RUN SECRET_KEY="dummydummydummydummydummydummydummydummydummydummy" /opt/netbox/venv/bin/python /opt/netbox/netbox/manage.py collectstatic --no-input
|
||||
EOF
|
||||
```
|
||||
|
||||
> [!TIP]
|
||||
> This `SECRET_KEY` is only used during the installation. There's no need to change it.
|
||||
|
||||
Create the `docker-compose.override.yml`
|
||||
|
||||
```bash
|
||||
cat <<EOF > docker-compose.override.yml
|
||||
services:
|
||||
netbox:
|
||||
image: netbox:v4.2
|
||||
pull_policy: never
|
||||
ports:
|
||||
- 8000:8000
|
||||
- 8080:8080
|
||||
- 8081:8081
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile-Plugins
|
||||
networks:
|
||||
- management
|
||||
netbox-worker:
|
||||
image: netbox:v4.2
|
||||
pull_policy: never
|
||||
networks:
|
||||
- management
|
||||
netbox-housekeeping:
|
||||
image: netbox:v4.2
|
||||
pull_policy: never
|
||||
networks:
|
||||
- management
|
||||
postgres:
|
||||
networks:
|
||||
- management
|
||||
redis:
|
||||
networks:
|
||||
- management
|
||||
redis-cache:
|
||||
networks:
|
||||
- management
|
||||
|
||||
networks:
|
||||
management:
|
||||
external: true
|
||||
EOF
|
||||
```
|
||||
|
||||
Enable the plugin by adding configuration in `configuration/plugins.py`
|
||||
|
||||
```python
|
||||
PLUGINS = [
|
||||
"netbox-topology-views"
|
||||
]
|
||||
```
|
||||
|
||||
Build and Deploy
|
||||
|
||||
```bash
|
||||
docker compose build --no-cache
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
Create the first admin user :
|
||||
|
||||
```bash
|
||||
docker compose exec netbox /opt/netbox/netbox/manage.py createsuperuser
|
||||
```
|
||||
|
||||
You should be able to access to netbox via port `8080`
|
||||
|
||||
## Sources
|
||||
|
||||
- [ContainerLab](https://containerlab.dev/install/)
|
||||
- [vrnetlab](https://containerlab.dev/manual/vrnetlab/#vrnetlab)
|
||||
- [BrianLinkLetter](https://www.brianlinkletter.com/2019/03/vrnetlab-emulate-networks-using-kvm-and-docker/)
|
||||
- [Docker Engine for Debian](https://docs.docker.com/engine/install/debian/)
|
||||
- [Docker Engine for Debian](https://docs.docker.com/engine/install/debian/)
|
||||
|
||||
@@ -1,142 +1,344 @@
|
||||
<mxfile host="Electron" modified="2023-10-20T18:33:43.156Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/22.0.3 Chrome/114.0.5735.289 Electron/25.8.4 Safari/537.36" version="22.0.3" etag="C-cPavOa-7izn7Hw_Zo5" type="device">
|
||||
<diagram name="Page-1" id="O6sBWOfz2bUCuo58S4gg">
|
||||
<mxGraphModel dx="1230" dy="1209" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0" />
|
||||
<mxCell id="1" parent="0" />
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-1" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="445" y="239" width="80" height="80" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-3" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="645" y="239" width="80" height="80" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-4" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;comic=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="645" y="479" width="80" height="80" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-5" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="845" y="479" width="80" height="80" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-6" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="445" y="479" width="80" height="80" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-7" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="245" y="479" width="80" height="80" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-42" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-8" target="aTlmoTqcXMnjitFqs7Kw-27" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-8" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="225" y="559" width="120" height="30" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-23" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" target="aTlmoTqcXMnjitFqs7Kw-7" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-24" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" target="aTlmoTqcXMnjitFqs7Kw-6" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-25" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" target="aTlmoTqcXMnjitFqs7Kw-4" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-26" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" target="aTlmoTqcXMnjitFqs7Kw-5" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-9" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="625" y="319" width="120" height="30" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-39" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-10" target="aTlmoTqcXMnjitFqs7Kw-38" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-10" value="<b style="">Arista cEOS</b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="825" y="559" width="120" height="30" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-11" target="aTlmoTqcXMnjitFqs7Kw-37" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-11" value="<b style=""><font color="#5c5c5c">Nokia SRLinux</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
|
||||
<mxGeometry x="625" y="559" width="120" height="30" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-41" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-12" target="aTlmoTqcXMnjitFqs7Kw-36" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-12" value="<b style=""><font color="#5c5c5c">Nokia SRLinux</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
|
||||
<mxGeometry x="425" y="559" width="120" height="30" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-19" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" target="aTlmoTqcXMnjitFqs7Kw-7" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-20" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" target="aTlmoTqcXMnjitFqs7Kw-6" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-21" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" target="aTlmoTqcXMnjitFqs7Kw-4" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-22" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" target="aTlmoTqcXMnjitFqs7Kw-5" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-14" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="425" y="319" width="120" height="30" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-27" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="265" y="620" width="40" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-30" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">Spine 1</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.101.1</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="360" y="259" width="85" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-31" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">Spine 2</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.101.2</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="560" y="259" width="85" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-32" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">Leaf 1</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.100.1</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="160" y="499" width="85" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-33" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">Leaf 2</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.100.2</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="360" y="499" width="85" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-34" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">Leaf 3</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.100.3</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="560" y="499" width="85" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-35" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">Leaf 1</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.100.4</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="760" y="499" width="85" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-36" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="465" y="620" width="40" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-37" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="665" y="620" width="40" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-38" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="865" y="620" width="40" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-43" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 1&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.100.100.1/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="236" y="660" width="97.5" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-44" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 2&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.100.100.2/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="436" y="660" width="97.5" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-45" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 3&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.100.100.3/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="636" y="660" width="97.5" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-46" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 4&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.100.100.4/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="836" y="660" width="97.5" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="iRoN0Qlv0NIkLaMQXTU7-1" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=4.416107382550308;strokeColor=#6c8ebf;fillColor=#dae8fc;" parent="1" vertex="1">
|
||||
<mxGeometry x="120" y="230" width="10" height="490" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.059;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#6c8ebf;fillColor=#dae8fc;" parent="1" source="3aydak7BYhucDwHMAP_l-2" target="iRoN0Qlv0NIkLaMQXTU7-1" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-2" value="<font face="Tahoma" color="#5c5c5c">Netbox</font>" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="40" y="239" width="60" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.181;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#6c8ebf;endArrow=none;endFill=0;fillColor=#dae8fc;" parent="1" source="3aydak7BYhucDwHMAP_l-3" target="iRoN0Qlv0NIkLaMQXTU7-1" edge="1">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-3" value="<font face="Tahoma" color="#5c5c5c">SuzieQ</font>" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="40" y="299" width="60" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-7" value="<font color="#8aa6cf">Docker Bridge</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="95" y="180" width="60" height="30" as="geometry" />
|
||||
</mxCell>
|
||||
</root>
|
||||
</mxGraphModel>
|
||||
</diagram>
|
||||
</mxfile>
|
||||
<mxfile host="65bd71144e">
|
||||
<diagram name="Page-1" id="O6sBWOfz2bUCuo58S4gg">
|
||||
<mxGraphModel dx="2920" dy="1562" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0"/>
|
||||
<mxCell id="1" parent="0"/>
|
||||
<mxCell id="99" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="151.75" width="840" height="240" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="94" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="171" y="400" width="400" height="500" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="93" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="991.75" y="409" width="400" height="500" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="92" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="580" y="409" width="400" height="500" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="90" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="-240" y="400" width="400" height="500" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-42" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" target="aTlmoTqcXMnjitFqs7Kw-27" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="-37.75" y="569" as="sourcePoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-8" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="-100" y="539" width="120" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-23" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="-37.75" y="459" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-24" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="364.5" y="459" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-25" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="786" y="459" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-26" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-9" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="1191.5" y="463.5" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-9" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="725.25" y="130" width="120" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-39" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;startArrow=none;" parent="1" source="35" target="aTlmoTqcXMnjitFqs7Kw-38" edge="1">
|
||||
<mxGeometry relative="1" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-10" value="<b><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="1131.5" y="543.5" width="120" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" target="aTlmoTqcXMnjitFqs7Kw-37" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="786" y="569" as="sourcePoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-41" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;startArrow=none;" parent="1" source="62" target="aTlmoTqcXMnjitFqs7Kw-36" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="371.5" y="569" as="sourcePoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-19" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="-37.75" y="459" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-20" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="364.5" y="459" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-21" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="786" y="459" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-22" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-14" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="1191.5" y="463.5" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-14" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="305" y="130" width="120" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-27" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="-57.75" y="810" width="40" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-30" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">padc_sp1_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.100.1/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="211" y="70" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-32" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">pa01_lf1_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.110.1/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="-191.75" y="490" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-36" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="351.25" y="810" width="40" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-37" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="765.25" y="810" width="40" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-38" value="" style="shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;" parent="1" vertex="1">
|
||||
<mxGeometry x="1171.5" y="810" width="40" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-43" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 1&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.100.0.1/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="-86.75" y="850" width="97.5" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-44" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 2&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.50.0.2/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="322.25" y="850" width="97.5" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-45" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 3&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.100.0.3/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="736.25" y="850" width="97.5" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="aTlmoTqcXMnjitFqs7Kw-46" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>Host 4&nbsp;</b></font></div><div style=""><font face="Tahoma" color="#5c5c5c">10.50.0.4/24</font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;" parent="1" vertex="1">
|
||||
<mxGeometry x="1142.5" y="850" width="97.5" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="iRoN0Qlv0NIkLaMQXTU7-1" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=4.416107382550308;strokeColor=#6c8ebf;fillColor=#dae8fc;" parent="1" vertex="1">
|
||||
<mxGeometry x="-300" y="30" width="10" height="870" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.059;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeColor=#6c8ebf;fillColor=#dae8fc;" parent="1" source="3aydak7BYhucDwHMAP_l-2" target="iRoN0Qlv0NIkLaMQXTU7-1" edge="1">
|
||||
<mxGeometry relative="1" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-2" value="<font face="Tahoma" color="#5c5c5c">Netbox</font>" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="-370" y="163.5" width="60" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.181;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#6c8ebf;endArrow=none;endFill=0;fillColor=#dae8fc;" parent="1" source="3aydak7BYhucDwHMAP_l-3" target="iRoN0Qlv0NIkLaMQXTU7-1" edge="1">
|
||||
<mxGeometry relative="1" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-3" value="<font face="Tahoma" color="#5c5c5c">Diode</font>" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="-370" y="223.5" width="60" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="3aydak7BYhucDwHMAP_l-7" value="<font color="#8aa6cf">Docker Bridge<br>172.20.20.0/24<br></font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="-342.5" y="-20" width="95" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="2" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">padc_sp1_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.100.2/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="632.25" y="70" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="3" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">pa02_lf2_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.110.2/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="220" y="490" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="4" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">pa03_lf3_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.110.3/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="633" y="490" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="5" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">pa04_lf4_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.110.4/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1040" y="490" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="6" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>AS : 65001</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="211" y="40" width="105" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="7" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>AS : 65002</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="630.75" y="40" width="105" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="9" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>AS : 65101</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="-191.75" y="459" width="105" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="10" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>AS : 65102</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="220" y="463.5" width="105" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="11" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>AS : 65103</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="631.5" y="463.5" width="105" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="12" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>AS : 65104</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1040" y="463.5" width="105" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="38" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="311.25" y="539" width="120" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="39" value="<b style=""><font color="#5c5c5c">Arista cEOS</font></b>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
|
||||
<mxGeometry x="725.25" y="539" width="120" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="41" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" source="aTlmoTqcXMnjitFqs7Kw-10" target="35" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="1191.5" y="573.5" as="sourcePoint"/>
|
||||
<mxPoint x="1191.5" y="720" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="35" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>SVI VLAN 50<br>10.50.0.0/24</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#d0cee2;strokeColor=#56517e;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1131.25" y="590" width="120" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="42" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>SVI VLAN 100<br>10.100.0.0/24</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#fad7ac;strokeColor=#b46504;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="725" y="590" width="120" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="43" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>SVI VLAN 100<br>10.100.0.0/24</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#fad7ac;strokeColor=#b46504;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="-100" y="590" width="120" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="45" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="284.75" y="163.5" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="46" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="324.5" y="200" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="47" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth3</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="382.25" y="200" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="48" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth4</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="425" y="163.5" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="49" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="685.25" y="163.5" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="50" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="725" y="190" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="51" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth3</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="785.25" y="200" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="52" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth4</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="833.75" y="170" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="54" value="" style="sketch=0;points=[[0.5,0,0],[1,0.5,0],[0.5,1,0],[0,0.5,0],[0.145,0.145,0],[0.8555,0.145,0],[0.855,0.8555,0],[0.145,0.855,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=router;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="-78.25" y="449" width="81" height="81" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="55" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="-80" y="670" width="80" height="80" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="57" value="" style="sketch=0;points=[[0.5,0,0],[1,0.5,0],[0.5,1,0],[0,0.5,0],[0.145,0.145,0],[0.8555,0.145,0],[0.855,0.8555,0],[0.145,0.855,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=router;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="333.5" y="449" width="81" height="81" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="58" value="" style="sketch=0;points=[[0.5,0,0],[1,0.5,0],[0.5,1,0],[0,0.5,0],[0.145,0.145,0],[0.8555,0.145,0],[0.855,0.8555,0],[0.145,0.855,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=router;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="744.75" y="449" width="81" height="81" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="59" value="" style="sketch=0;points=[[0.5,0,0],[1,0.5,0],[0.5,1,0],[0,0.5,0],[0.145,0.145,0],[0.8555,0.145,0],[0.855,0.8555,0],[0.145,0.855,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=router;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="1150.75" y="449" width="81" height="81" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="60" value="" style="sketch=0;points=[[0.5,0,0],[1,0.5,0],[0.5,1,0],[0,0.5,0],[0.145,0.145,0],[0.8555,0.145,0],[0.855,0.8555,0],[0.145,0.855,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=router;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="324.5" y="39" width="81" height="81" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="61" value="" style="sketch=0;points=[[0.5,0,0],[1,0.5,0],[0.5,1,0],[0,0.5,0],[0.145,0.145,0],[0.8555,0.145,0],[0.855,0.8555,0],[0.145,0.855,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=router;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="744.75" y="39" width="81" height="81" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="63" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#5c5c5c;flowAnimation=1;" parent="1" target="62" edge="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="371.5" y="569" as="sourcePoint"/>
|
||||
<mxPoint x="371.3000000000002" y="770" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="62" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="331" y="670" width="80" height="80" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="64" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="745" y="670" width="80" height="80" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="65" value="" style="sketch=0;points=[[0.015,0.015,0],[0.985,0.015,0],[0.985,0.985,0],[0.015,0.985,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];verticalLabelPosition=bottom;html=1;verticalAlign=top;aspect=fixed;align=center;pointerEvents=1;shape=mxgraph.cisco19.rect;prIcon=l2_switch;fillColor=#FAFAFA;strokeColor=#5c5c5c;" parent="1" vertex="1">
|
||||
<mxGeometry x="1151.75" y="670" width="80" height="80" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="44" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>SVI VLAN 50<br>10.50.0.0/24</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#d0cee2;strokeColor=#56517e;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="311" y="590" width="120" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="66" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="-60" y="420" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="67" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="322.25" y="420" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="68" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="705" y="429" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="69" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1060" y="423.5" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="70" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;arcSize=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="10.75" y="443.5" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="71" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="411" y="429" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="72" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="785.75" y="420" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="73" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1150.75" y="409" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="74" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="-29.25" y="640" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="75" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="379.75" y="640" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="76" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="793.75" y="640" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="77" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth1</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1200" y="640" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="78" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth3</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="2.75" y="510" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="79" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth3</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="414.5" y="510" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="80" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth3</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="825.75" y="510" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="81" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth3</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1240" y="510" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="82" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;arcSize=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="-29.25" y="760" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="83" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;arcSize=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="379.75" y="760" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="84" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;arcSize=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="793.75" y="760" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="85" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>eth2</b></font></div>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=default;dashed=1;dashPattern=8 8;arcSize=0;" parent="1" vertex="1">
|
||||
<mxGeometry x="1191.75" y="760" width="40" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="86" value="<div style=""><font face="Tahoma" color="#5c5c5c"><b>pa01_sw1_00</b></font></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.120.1/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="-191.75" y="690" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="87" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">pa02_sw1_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.120.2/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="220" y="690" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="88" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">pa03_sw1_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.120.3/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="630.75" y="690" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="89" value="<div style=""><b style="color: rgb(92, 92, 92); font-family: Tahoma; background-color: initial;">pa04_sw1_00</b></div><font color="#5c5c5c" face="Tahoma"><div style=""><span style="background-color: initial;">192.168.120.4/32</span></div></font>" style="rounded=1;whiteSpace=wrap;html=1;align=center;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;dashed=1;dashPattern=8 8;" parent="1" vertex="1">
|
||||
<mxGeometry x="1040" y="690" width="105" height="40" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="95" value="<b><font style="font-size: 20px;">Buiding :<br>PA1<br></font></b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="42.75" y="830" width="100" height="50" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="96" value="<b><font style="font-size: 20px;">Buiding :<br>PA2<br></font></b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="465" y="830" width="100" height="50" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="97" value="<b><font style="font-size: 20px;">Buiding :<br>PA3<br></font></b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="873.75" y="830" width="100" height="50" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="98" value="<b><font style="font-size: 20px;">Buiding :<br>PA4<br></font></b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="1280" y="830" width="100" height="50" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="100" value="<b><font style="font-size: 20px;">Buiding :<br>DATACENTER<br></font></b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;opacity=80;" parent="1" vertex="1">
|
||||
<mxGeometry x="833.75" y="10" width="146.25" height="50" as="geometry"/>
|
||||
</mxCell>
|
||||
</root>
|
||||
</mxGraphModel>
|
||||
</diagram>
|
||||
</mxfile>
|
||||
Reference in New Issue
Block a user