0

我有一个 Python 程序(如下),当我运行它时,出现以下错误:

% python SSH_Prog.py
About to connect...
stderr:  ["bash: -c: line 0: unexpected EOF while looking for matching `''\n", 'bash: -c: line 1: syntax error: unexpected end of file\n']
pwd:  []
stderr:  ['watch: no process found\n']
pwd:  []
^CTraceback (most recent call last):
  File "SSH_Prog.py", line 32, in <module>
    time.sleep(3)
KeyboardInterrupt

我认为这可能与转义序列和标准输入中的“\ n”字符有关,但我缺乏处理它的经验。

这是程序:

import os
import sys
import time
import paramiko
#from ssh import SSHClient

# Define remote machine
host="<ip>"
user="<usrnm>"
passw="<passw>"
client = paramiko.SSHClient()
#client.load_system_host_keys()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
# Try SSH connection, catch exception
#if not
print('About to connect...') 

client.connect(host, username=user, password=passw)
# ForLoop to iterate through the interactions
for x in range(10):
    xx = str(x)
    # Commands to execute on local machine
    f = os.popen3('tshark -i eth0 -f snmp -F pcapng -w ~/Desktop/traf_logs/n'+(xx))
    # commands to execute on remote machine
    stdin, stdout, stderr = client.exec_command("watch -n 0.1 'ps -p $(pgrep -d"," -x snmpd) -o rss= | awk '\''{ i += $1 } END { print i }'\'' >> ~/Desktop/mem_logs/mem_"+(xx)+";")        
    print "stderr: ", stderr.readlines()
    print "pwd: ", stdout.readlines()

    g = os.popen3('snmpget -v 2c -c communitystring <ip> sysContact.0')     
    time.sleep(3)

    stdin, stdout, stderr = client.exec_command('killall watch;')          
    print "stderr: ", stderr.readlines()
    print "pwd: ", stdout.readlines()

    ff = os.popen3('killall tshark')        
# terminate connection
client.close()
exit(0)

你有什么想法来解决它吗?

问候。

4

1 回答 1

1

你的第一个exec_command看起来像这样:

stdin, stdout, stderr = client.exec_command("watch -n 0.1 'ps -p $(pgrep -d"," -x snmpd) -o rss= | awk '\''{ i += $1 } END { print i }'\'' >> ~/Desktop/mem_logs/mem_"+(xx)+";")        

换句话说,第一个论点是:

"watch -n 0.1 'ps -p $(pgrep -d"

你的第二个论点是:

" -x snmpd) -o rss= | awk '\''{ i += $1 } END { print i }'\'' >> ~/Desktop/mem_logs/mem_"+(xx)+";"

如果您bash在终端中启动并输入第一个参数(不带引号),然后输入换行符和 ^D,它会告诉您:

> -bash: unexpected EOF while looking for matching `''
-bash: syntax error: unexpected end of file

这正是你从 Paramiko 那里得到的。

第二个错误只是killall告诉您没有名为 的进程watch,因为您的第一个命令从未启动过。

如果你只是用","空格替换 the ,那将解决这个问题......但不知道你为什么认为你想要一个","那里,我不确定它会做你真正打算做的事情。

我也不确定'\''应该做什么。为什么要对 的参数进行三重引用awk,或者为什么在它应该等同于 just 时要执行如此复杂的操作{ print $1 },或者为什么要明确要求ps多个列仅用于awk挑选第一列,或者……</p>

于 2013-04-01T18:25:45.340 回答