91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux下expect環境的安裝以及簡單腳本測試

發布時間:2021-09-14 17:56:14 來源:億速云 閱讀:152 作者:chen 欄目:建站服務器

這篇文章主要介紹“linux下expect環境的安裝以及簡單腳本測試”,在日常操作中,相信很多人在linux下expect環境的安裝以及簡單腳本測試問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”linux下expect環境的安裝以及簡單腳本測試”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一、安裝expect和tcl

(1)、解壓tcl,進入tcl解壓目錄,然后進入unix目錄進行編譯安裝

[root@slient tmp]# tar -xzvf tcl8.4.11-src.tar.gz 

..................................

[root@slient tmp]# cd tcl8.4.11/unix/

[root@slient unix]# ./configure

..................................

[root@slient unix]# make && make install

..................................

(2)、安裝expect

[root@slient tmp]# tar -xzvf expect-5.43.0.tar.gz 

..................................

[root@slient tmp]# cd expect-5.43

[root@slient expect-5.43]# ./configure --with-tclinclude=/tmp/tcl8.4.11/generic --with-tclconfig=/usr/local/lib/

..................................

[root@slient expect-5.43]# make && make install

..................................

(3)、安裝完成后進行測試

[root@slient expect-5.43]#  expect

expect1.1> 

expect1.1> 

二、下面結合shell腳本做簡單測試

示例:從本機自動登錄到遠程機器192.168.56.12(端口是22,密碼是:oracle)

登錄到遠程機器后做以下幾個操作:

1)useradd wangshibo

2)mkdir /opt/test

3) exit自動退出

[root@slient ~]# cat test-ssh.sh 

#!/bin/bash

passwd='oracle'

/usr/local/bin/expect <<-EOF

set time 30

spawn ssh -p22 root@192.168.56.12

expect {

"*yes/no" { send "yes\r"; exp_continue }

"*password:" { send "$passwd\r" }

}

expect "*#"

send "useradd wangshibo\r"

expect "*#"

send "mkdir /opt/test\r"

expect "*#"

send "exit\r"

interact

expect eof

EOF

[root@slient ~]# 

--執行:

[root@slient ~]# sh test-ssh.sh 

spawn ssh -p22 root@192.168.56.12

The authenticity of host '192.168.56.12 (192.168.56.12)' can't be established.

RSA key fingerprint is 16:8d:5a:fb:f2:58:e1:ee:4c:98:3d:76:ec:48:bb:46.

Are you sure you want to continue connecting (yes/no)? yes

Warning: Permanently added '192.168.56.12' (RSA) to the list of known hosts.

root@192.168.56.12's password: 

Last login: Tue Jan 30 15:58:08 2018 from 192.168.56.1

[root@one ~]# useradd wangshibo

[root@one ~]# mkdir /opt/test

[root@one ~]# 

[root@slient ~]# 

[root@slient ~]# 

上面的例子如果只是自動登陸,登陸機器后不做操作的腳本內容如下:

shell腳本的寫法:

[root@slient ~]# cat test.sh 

#!/bin/bash

passwd='oracle'

/usr/local/bin/expect <<-EOF

set time 30

spawn ssh -p22 root@192.168.56.12

expect {

"*yes/no" { send "yes\r"; exp_continue }

"*password:" { send "$passwd\r" }

}

expect eof

EOF

[root@slient ~]# 

   

--執行:

[root@slient ~]# sh test.sh

spawn ssh -p22 root@192.168.56.12

root@192.168.56.12's password: 

Last login: Tue Jan 30 16:03:23 2018 from 192.168.56.20

[root@one ~]# 

expect腳本的寫法:

[root@slient ~]# cat test

#!/usr/local/bin/expect

set timeout 30

spawn ssh -p22 root@192.168.56.12

expect "*password:"

send "oracle\r"

interact

[root@slient ~]# 

--執行:   

[root@slient ~]# ./test 

spawn ssh -p22 root@192.168.56.12

root@192.168.56.12's password: 

Last login: Tue Jan 30 16:07:23 2018 from 192.168.56.20

[root@one ~]# 

注意:spawn后面跟的是操作動作,比如登陸機器后執行uptime,即:spawn ssh -p22 root@192.168.1.201 "uptime"

三、示例使用expetc自動化傳送文件到遠程主機目錄上

[oracle@slient ~]$ cat sftp.sh 

#!/usr/local/bin/expect

expect<<!

spawn  sftp oracle@192.168.56.12

expect  "password:"

send "oracle\n";

expect "sftp>"

send "lcd /home/oracle/dmp\n";

expect "sftp>"

send "cd  /home/oracle/soft\n";

expect "sftp>"

send "put tb_pt.dmp\n";

expect "sftp>"

send "exit\n"

interact

!

[oracle@slient ~]$ 

[oracle@slient ~]$ chmod +x sftp.sh 

--執行:

[oracle@slient ~]$ sh sftp.sh 

spawn sftp oracle@192.168.56.12

Connecting to 192.168.56.12...

oracle@192.168.56.12's password: 

sftp> lcd /home/oracle/dmp

sftp> cd  /home/oracle/soft

sftp> put tb_pt.dmp

Uploading tb_pt.dmp to /home/oracle/soft/tb_pt.dmp

tb_pt.dmp                                                                                                     100%  216KB 216.0KB/s   00:00    

sftp> [oracle@slient ~]$ 

[oracle@slient ~]$ 

--驗證:

[oracle@one soft]$ pwd

/home/oracle/soft

[oracle@one soft]$    

[oracle@one soft]$ ls

[oracle@one soft]$ pwd

/home/oracle/soft

[oracle@one soft]$ ls

tb_pt.dmp

[oracle@one soft]$ 

四、示例解釋

例子:

#!/usr/bin/expect

#set timeout 20 #設置超時時間

spawn ssh root@192.168.43.131

expect "*password:"

send "123\r"

# expect "*#"

interact

解釋:

1.#!/usr/bin/expect :需要先安裝軟件,然后來說明用expect來執行

2.spawn ssh root@192.168.43.131 :spawn是進入expect環境后才可以執行的expect內部命令,用來執行它后面的命令。

3.expect "*password:" :也是expect的內部命令,用來解惑關鍵的字符串,如果有,就會立即返回下面設置的內容,如果沒有就看是否設置了超時時間。

4.send "123\r":這時執行交互式動作,與手工輸入密碼等效,在expect截獲關鍵字之后,它就會輸入send后面的內容。

5.interact :執行完畢后把持交互狀態,把控制臺,這時候就可以進行你想要進行的操作了。如果沒有這一句,在登陸完成之后就會退出,而不是留在遠程終端上。

到此,關于“linux下expect環境的安裝以及簡單腳本測試”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

称多县| 遵义市| 龙江县| 阜阳市| 凤台县| 滁州市| 磐石市| 平昌县| 忻城县| 厦门市| 龙井市| 汶川县| 杂多县| 大田县| 彭水| 江陵县| 连江县| SHOW| 鄄城县| 黎平县| 桦甸市| 五指山市| 安陆市| 敖汉旗| 晋江市| 彭泽县| 南川市| 南江县| 阳江市| 德江县| 金塔县| 曲周县| 隆子县| 兴义市| 和田县| 宽城| 武威市| 富源县| 伊川县| 改则县| 武鸣县|