diff --git a/connect_routers.py b/connect_routers.py index f73be10..6c8db2d 100644 --- a/connect_routers.py +++ b/connect_routers.py @@ -10,6 +10,7 @@ def connect_to_router(router): print(f"Connecting to {router['hostname']} at {router['ip']}...") print(f"Using username: {router['username']}") print(f"Enable password: {router['enable_password']}") + print(f"Example command: 'show ip interface brief'") print(f"Connection to {router['hostname']} successful!") print("-" * 40) diff --git a/routers.yaml b/routers.yaml index 8ed287d..768282c 100644 --- a/routers.yaml +++ b/routers.yaml @@ -8,4 +8,14 @@ routers: ip: 192.168.1.2 username: admin password: cisco123 - enable_password: enable123 \ No newline at end of file + enable_password: enable123 + - hostname: router3 + ip: 192.168.1.3 + username: admin + password: cisco123 + enable_password: enable123 + - hostname: router4 + ip: 192.168.1.4 + username: admin + password: cisco123 + enable_password: enable123