From f7268bc363b72ea69a45c476a549a22b554bb04b Mon Sep 17 00:00:00 2001 From: Amr Emadabdelfatah Date: Wed, 22 Apr 2026 16:40:02 +0200 Subject: [PATCH 1/2] added new routers --- routers.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/routers.yaml b/routers.yaml index 8ed287d..0d33bb4 100644 --- a/routers.yaml +++ b/routers.yaml @@ -8,4 +8,16 @@ 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 + + \ No newline at end of file From 29eaca92e37177d9e5f5ed7c10eef860ca8352dc Mon Sep 17 00:00:00 2001 From: Amr Emadabdelfatah Date: Wed, 22 Apr 2026 16:43:48 +0200 Subject: [PATCH 2/2] added show int bri --- connect_routers.py | 1 + 1 file changed, 1 insertion(+) 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)