国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > Linux Shell > 正文

except自動登錄的幾段代碼分享

2020-07-27 19:25:24
字體:
來源:轉載
供稿:網友

復制代碼 代碼如下:

#!/usr/bin/expect -f
set timeout 30
set host "192.168.1.198"
spawn ssh $host
expect_before "no)?" {
send "yes/r" }
sleep 1
expect "password:"
send "123456/r"
expect "*#"
send "echo my name is fivetrees > /root/fivetrees.txt/r"
interact

##----------------------------

復制代碼 代碼如下:

[root@fivetrees ~]# cat expect
#!/usr/bin/expect
for {set i 10} {$i <= 12} {incr i} {
set timeout 30
set ssh_user [lindex $argv 0]
spawn ssh -i .ssh/$ssh_user abc$i.com
expect_before "no)?" {
send "yes/r" }
sleep 1
expect "password*"
send "hello/r"
expect "*#"
send "echo hello expect! > /tmp/expect.txt/r"
expect "*#"
send "echo/r"
}
exit

##-------------------------

復制代碼 代碼如下:

#!/usr/bin/expect
if {$argc!=2} {
    send_user "usage: ./expect ssh_user password/n"
    exit
}
foreach i {11 12} {
set timeout 30
set ssh_user [lindex $argv 0]
set password [lindex $argv 1]
spawn ssh -i .ssh/$ssh_user root@xxx.yy.com
expect_before "no)?" {
send "yes/r" }
sleep 1
expect "Enter passphrase for key*"
send "password/r"
expect "*#"
send "echo hello expect! > /tmp/expect.txt/r"
expect "*#"
send "echo/r"
}
exit

##---------------------------

復制代碼 代碼如下:

#!/usr/bin/expect
set timeout 20
if {$argc < 1} {
  puts "Usage: script IP"
  exit 1
}
# 替換你自己的用戶名
set user "username"
#替換你自己的登錄密碼
set password "yourpassword"
foreach IP  $argv {
spawn  ssh $user@$IP
expect /
  "(yes/no)?" {
    send "yes/r"
    expect "password:?" {
      send "$password/r"
    }
  } "password:?" {
    send "$password/r"
}
expect "/$?"
# 替換你要執行的命令
send "last/r"
expect "/$?"
sleep 10
send "exit/r"
expect eof
}
使用方法
script_name   ip1  ip2  ip3 ...

##---------------------

復制代碼 代碼如下:

#!/bin/sh
# -*- tcl -*- /
exec tclsh $0 "$@"
package require Expect
set username [lindex $argv 0]
set password [lindex $argv 1]
set argv [lrange $argv 2 end]
set prompt "(%|#|//$) $"
foreach ip $argv {
    spawn ssh -t $username@$ip sh
    lappend ids $spawn_id
}
expect_before -i ids eof {
    set index [lsearch $ids $expect_out(spawn_id)]
    set ids [lreplace $ids $index $index]
    if [llength $ids] exp_continue
}
expect -i ids "(yes/no)//?" {
    send -i $expect_out(spawn_id) yes/r
    exp_continue
} -i ids "Enter passphrase for key" {
    send -i $expect_out(spawn_id) /r
    exp_continue
} -i ids "assword:" {
    send -i $expect_out(spawn_id) $password/r
    exp_continue
} -i ids -re $prompt {
    set spawn_id $expect_out(spawn_id)
    send "echo hello; exit/r"
    exp_continue
} timeout {
    exit 1
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 海口市| 惠州市| 宝坻区| 西青区| 绵竹市| 西吉县| 文山县| 兴业县| 紫阳县| 江西省| 孝昌县| 陇南市| 昌都县| 新乐市| 突泉县| 江陵县| 汉寿县| 和平县| 琼海市| 马鞍山市| 辽宁省| 神池县| 贺兰县| 宁陵县| 海门市| 禄丰县| 呼和浩特市| 宁强县| 垫江县| 隆林| 昌平区| 晋江市| 玉林市| 阿坝| 东丰县| 瑞昌市| 太湖县| 夏河县| 兴城市| 嘉祥县| 洛扎县|