This commit is contained in:
fluzzi 2022-04-04 12:33:04 -03:00
parent 2a32b84849
commit 8a605dfb9c
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ hasip = router.test("show ip int brief","1.1.1.1")
if hasip: if hasip:
print("Router has ip 1.1.1.1") print("Router has ip 1.1.1.1")
else: else:
print("router don't has ip 1.1.1.1") print("router does not have ip 1.1.1.1")
``` ```
### Using manager configuration ### Using manager configuration

View File

@ -79,7 +79,7 @@ hasip = router.test("show ip int brief","1.1.1.1")
if hasip: if hasip:
print("Router has ip 1.1.1.1") print("Router has ip 1.1.1.1")
else: else:
print("router don't has ip 1.1.1.1") print("router does not have ip 1.1.1.1")
``` ```
### Using manager configuration ### Using manager configuration