added main loop stuff

This commit is contained in:
Andrew Keuhs 2024-02-17 00:34:06 +00:00
parent a1461e66ce
commit 8a47d63ede
1 changed files with 9 additions and 3 deletions

View File

@ -15,6 +15,8 @@ from pathlib import Path # python3 only
env_path = Path('.') / '.env' env_path = Path('.') / '.env'
load_dotenv(dotenv_path=env_path) load_dotenv(dotenv_path=env_path)
version = "1.00" # set a version to the program
# Define master switch details # Define master switch details
MASTER_SWITCH = { MASTER_SWITCH = {
"ip": "23.169.120.2", "ip": "23.169.120.2",
@ -40,6 +42,7 @@ SWITCHES = [
# Saved as tuple as these should only be read and not altered # Saved as tuple as these should only be read and not altered
PROTECTED_VLANS = ("1") PROTECTED_VLANS = ("1")
# sync vlan function
def sync_vlans(master_switch, switch): def sync_vlans(master_switch, switch):
# Establish SSH connection to master switch # Establish SSH connection to master switch
@ -121,6 +124,9 @@ def sync_vlans(master_switch, switch):
master_client.close() master_client.close()
switch_client.close() switch_client.close()
# Loop through each switch and sync VLANs # Main loop
for switch in SWITCHES: if __name__ == "__main__":
sync_vlans(MASTER_SWITCH, switch)
# Loop through switches and run sync
for switch in SWITCHES:
sync_vlans(MASTER_SWITCH, switch)