Skip to content

Commit 06e8b42

Browse files
authored
Merge pull request #3535 from opachano/palo_alto_log_collector_compatibility
Add Palo Alto Log Collector Compatibility
2 parents 5a692f2 + 4ba6fd1 commit 06e8b42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

netmiko/paloalto/paloalto_panos.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ def session_preparation(self) -> None:
7878
self.set_base_prompt()
7979

8080
# PA devices can be really slow--try to make sure we are caught up
81-
self.write_channel("show admins\n")
82-
self._test_channel_read(pattern=r"Client")
81+
self.write_channel("show system info\n")
82+
self._test_channel_read(pattern=r"operational-mode")
8383
self._test_channel_read(pattern=r"[>#]")
8484

8585
def find_prompt(

0 commit comments

Comments
 (0)