A Nautobot plugin for evpn management
Project description
Nautobot EVPN
This represents a Nautobot plugin for EVPN management. This creates some resources to fully document a EVPN-based setup in Nautobot.
Integration
To integrate this plugin, please add nautobot-change to PLUGINS in your Nautobot settings.
Migration from nautobot-change
We seperated nautobot-change and nautobot-evpn at some point in time. Data is not migrated automagically due to Django restrictions.
This means some manual steps to migrate the data.
- Migrate
nautobot-changeto the latest point. We just ignore the EVPN tables at some point. - Migrate
nautobot-vpnto 0001. This creates the basic tables. - Move
nautobot_change_{anycastdummyip,anycastip,ethernetsegment,ethernetsegmentmembership,vlanvrf,vlanvrflist}tonautobot_evpn_{anycastdummyip,anycastip,ethernetsegment,ethernetsegmentmembership,vlanvrf,vlanvrflist}:
insert into nautobot_evpn_anycastdummyip select * from nautobot_change_anycastdummyip;
insert into nautobot_evpn_anycastip select * from nautobot_change_anycastip;
insert into nautobot_evpn_ethernetsegment select * from nautobot_change_ethernetsegment;
insert into nautobot_evpn_ethernetsegmentmembership select * from nautobot_change_ethernetsegmentmembership;
insert into nautobot_evpn_vlanvrf select * from nautobot_change_vlanvrf;
insert into nautobot_evpn_vlanvrflist select * from nautobot_change_vlanvrflist;
drop nautobot_change_anycastdummyip;
drop nautobot_change_anycastip;
drop nautobot_change_ethernetsegment;
drop nautobot_change_ethernetsegmentmembership;
drop nautobot_change_vlanvrf;
drop nautobot_change_vlanvrflist;
- Do a full migration.
- Have Fun!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nautobot-evpn-1.0.0.tar.gz
(13.3 kB
view details)
File details
Details for the file nautobot-evpn-1.0.0.tar.gz.
File metadata
- Download URL: nautobot-evpn-1.0.0.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb98b575b1dd26d9d555ec605a4203cf79b72d9d1f6486d1246de619decc41c7
|
|
| MD5 |
fcf660aaa6a48a49f21bd22962abe096
|
|
| BLAKE2b-256 |
eb61e826a1ba7b073399ed3a49f9a9aa7d92a97948df912c0a1dc6740e2f6974
|