Win XP で freeSSHd を SSH サーバーとして実行していて、認証されたユーザーに CMD シェルを返しています。Python スクリプトを実行したときに「ipconfig」コマンドを自動的に送信した結果を取得したいのですが、接続は機能していますが、各フィールドの結果を読み取って別の変数に入れる際の問題、私のコードの結果は「10」ではなく「4」> IP アドレスの最初の数字です。番号 4 がどこから来たのかわかりません。何か案が?
Win XP ipconfig の出力
C:\Documents and Settings\hussam\Desktop>ipconfig
Windows IP Configuration
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
IP Address. . . . . . . . . . . . : 10.0.2.10
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 10.0.2.15
C:\Documents and Settings\hussam\Desktop>
マイコード
import pexpect
import re
def sendcommand(conn,command):
conn.sendline(command)
conn.expect('\d')
print conn.after
def c(ip,username,password):
global conn
ft = 'ssh '+username+'@'+ip
print 'we are trying to connect to ' + ft
new = 'Are you sure you want to continue connecting'
conn = pexpect.spawn(ft)
result = conn.expect([ pexpect.TIMEOUT , new ,'[P|p]assword:' ])
if result == 0:
print 'connection error'
return
if result == 1:
conn.sendline('yes')
result = conn.expect([ pexpect.TIMEOUT , '[P|p]assword:'])
if result == 0:
print 'connection error'
return
conn.sendline(password)
conn.expect('>')
sendcommand(conn,command)
def main ():
global command
username = 'hkhrais'
ip = '10.0.2.10'
password = 'hkhrais'
command = ' ipconfig'
c(ip,username,password)
main ()