This repository has been archived by the owner on Feb 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from community-fabric/add_technology_models
Add technology models
- Loading branch information
Showing
34 changed files
with
1,584 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
from .addressing import Addressing | ||
from .cloud import Cloud | ||
from .dhcp import Dhcp | ||
from .fhrp import Fhrp | ||
from .interfaces import Interfaces | ||
from .ip_telephony import IpTelephony | ||
from .load_balancing import LoadBalancing | ||
from .managed_networks import ManagedNetworks | ||
from .management import Management | ||
from .mpls import Mpls | ||
from .multicast import Multicast | ||
from .neighbors import Neighbors | ||
from .oam import Oam | ||
from .platforms import Platforms | ||
from .port_channels import PortChannels | ||
from .qos import Qos | ||
from .routing import Routing | ||
from .sdn import Sdn | ||
from .sdwan import Sdwan | ||
from .security import Security | ||
from .stp import Stp | ||
from .vlans import Vlans | ||
from .wireless import Wireless | ||
|
||
__all__ = [ | ||
"Addressing", | ||
"Dhcp", | ||
"Fhrp", | ||
"Interfaces", | ||
"Management", | ||
"ManagedNetworks", | ||
"Mpls", | ||
"Multicast", | ||
"Neighbors", | ||
"Platforms", | ||
"PortChannels", | ||
"Routing", | ||
"Stp", | ||
"Vlans", | ||
"Cloud", | ||
"IpTelephony", | ||
"LoadBalancing", | ||
"Oam", | ||
"Qos", | ||
"Sdn", | ||
"Sdwan", | ||
"Security", | ||
"Wireless", | ||
] |
Oops, something went wrong.