bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

Linux實現遠程控制機器的方法-創新互聯

這篇文章主要介紹Linux實現遠程控制機器的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

創新互聯建站從2013年成立,先為姑蘇等服務建站,姑蘇等地企業,進行企業商務咨詢服務。為姑蘇企業網站制作PC+手機+微官網三網同步一站式服務解決您的所有建站問題。

在Linux下進行遠程登陸的時候,總是要進行ssh輸入賬號密碼,相對比較繁瑣。而在工作中總會先從本地登陸到公司的中間機器(跳板機)然后才能登陸到線上的機器,每次操作更加繁瑣。如果從A->B可以直接進行建立相互的信任關系來解決面輸入密碼的問題。顯示情況如果A->B->C三臺機器,如果想從A直接到C只能通過B進行登錄,這樣就無法建立A->C的信任關系(這種操作主要是為了保護線上機器不能隨便登錄)。該腳本就是解決這種有多個依賴的關系。

注意事項:

1.使用實時bashversion>=4.0,因為配置中需要使用關聯數據

2.如果需要全局使用直接修改autologin的名字,移動到PATH路徑下即可eg:mvautologin/usrl/local/bin/to(改為自己想要使用的名字)

腳本代碼:

#!/usr/local/bin/bash

#@Version0.3.1

#@filenameto

#修復等不需要要配置跳板機的時候執行命令,在配置跳板機位置默認填no即可

#@Authorpemakoa@gmail.com

#Bashversion>=4.0使用關聯數組

#Usage:hostuserpasswdportjump_hostcommand

#四種情況如下:

#1.直接登錄目標機器如A

#2.需要中間機器登陸到目標機器如C,其中B為中間機器,會先登錄B在從B登陸到C然后執行command

#3.直接登錄目標機器并執行相應的命令如D

declare-A_server_config

_server_config['A']="a_hosta_usera_passwda_port"

_server_config['B']="b_hostb_userb_passwdb_port"

_server_config['C']="c_hostc_userc_passwdc_portB'(commandeg)ls.'"

_server_config['D']="d_hostd_userd_passwdd_portno'cd/home&&ll'"

_config_keys=(${!_server_config[@]})

_length=${#_server_config[@]}

_login_server=$1

_config_status=false

#是否輸入登陸機器

if["$_login_server"==""];then

echo-e"\033[40m\033[31mPleaseinputloginserver,youcanchooseonefollowslist\033[0m"

foriin"${_config_keys[@]}";do

echo-e"\033[41;37m$i\033[0m"

done

exit

fi

#檢查登陸的機器是否配置

foriin"${_config_keys[@]}";do

if["$_login_server"=="$i"];then

_config_status=true

fi

done

if["${_config_status}"=="false"];then

echo-ne"\033[40m\033[31m

Notconfigserverinfo...

Pleaseconfigin_server_configlike

HostUserPasswdPortJumpCommand\033[0m"

exit

fi

#登陸如果配置跳板機,先登陸跳板機在登陸到目標機器

_host=$(echo${_server_config["${_login_server}"]}|awk'{print$1}')

_user=$(echo${_server_config["${_login_server}"]}|awk'{print$2}')

_passwd=$(echo${_server_config["${_login_server}"]}|awk'{print$3}')

_port=$(echo${_server_config["${_login_server}"]}|awk'{print$4}')

_jump=$(echo${_server_config["${_login_server}"]}|awk'{print$5}')

_command=$(echo${_server_config["${_login_server}"]}|awk-F"'"'{print$2}')

if["${_command}"!=""];then

_command="expect\"*]*\"

send\"${_command}\r\""

fi

if["${_jump}"!=""]&&["${_jump}"!="no"];then

_jump_host=$(echo${_server_config["${_jump}"]}|awk'{print$1}')

_jump_user=$(echo${_server_config["${_jump}"]}|awk'{print$2}')

_jump_passwd=$(echo${_server_config["${_jump}"]}|awk'{print$3}')

_jump_port=$(echo${_server_config["${_jump}"]}|awk'{print$4}')

expect-c"

settimeout30

spawnssh-p${_jump_port}${_jump_user}@${_jump_host}

expect{

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

\"assword\"{send\"${_jump_passwd}\r\"}

}

expect\"*]*\"

send\"ssh-p${_port}${_user}@${_host}\r\"

expect\"assword:\"

send\"${_passwd}\r\"

${_command}

interact"

else

expect-c"

settimeout30

spawnssh-p${_port}${_user}@${_host}

expect{

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

\"*assword:\"{send\"$_passwd\r\"}

}

${_command}

interact

"

fi

以上是“Linux實現遠程控制機器的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創新互聯行業資訊頻道!

本文題目:Linux實現遠程控制機器的方法-創新互聯
當前地址:http://vcdvsql.cn/article34/cdggse.html

成都網站建設公司_創新互聯,為您提供企業網站制作、網站導航、網站建設App開發、網站改版、商城網站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都網站建設