2

カメラに接続するには「telnet」を使用する必要があります。パテを使用したことがあり、カメラのプロンプトが'~ # '. 実行する'echo "test"'と、応答が期待され'echo "test"\r\ntest\r\n'ます。しかし、Exscript の応答は'echo "test"\r\ntest\r\n~'、プロンプトの最初の文字を含めて'~'です。 コード

from Exscript import Host, Account
from Exscript.protocols import Telnet, SSH2
username = "root"
password = ""
host = "192.168.200.99"
account = Account(username, password)
session = Telnet(debug=1)
session.connect(host)
session.set_prompt(r"~ # ")
session.login(account)
session.execute('echo "test"')
print((repr(session.response)))
session.close(True)

コード応答

generic: Attempting to authenticate root.
generic: Attempting to app-authenticate root.
shell: Protocol: driver replaced: generic -> shell
shell: Protocol.app_authenticate(): driver replaced
shell: Username prompt 1 received.
shell: Shell prompt received.
shell: Calling driver.auto_authorize().
shell: Attempting to app-authorize root.
shell: Shell prompt received.
'echo "test"\r\ntest\r\n~'

パテレスポンス

Network-Camera login: root
~ # echo "test"
test
~ #
4

0 に答える 0