成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Linux下SSH命令怎么用

這篇文章主要介紹了Linux下SSH命令怎么用,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括邵東網(wǎng)站建設(shè)、邵東網(wǎng)站制作、邵東網(wǎng)頁(yè)制作以及邵東網(wǎng)絡(luò)營(yíng)銷(xiāo)策劃等。多年來(lái),我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,邵東網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到邵東省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

1、查看SSH客戶端版本

有的時(shí)候需要確認(rèn)一下SSH客戶端及其相應(yīng)的版本號(hào)。使用ssh -V命令可以得到版本號(hào)。需要注意的是,Linux一般自帶的是OpenSSH: 下面的例子即表明該系統(tǒng)正在使用OpenSSH:

$ ssh -V 
OpenSSH_3.9p1, OpenSSL 0.9.7a Feb 19 2003

下面的例子表明該系統(tǒng)正在使用SSH2:

$ ssh -V 
ssh: SSH Secure Shell 3.2.9.1 (non-commercial version) on i686-pc-linux-gnu

2、用SSH登錄到遠(yuǎn)程主機(jī)

當(dāng)你第一次使用ssh登錄遠(yuǎn)程主機(jī)時(shí),會(huì)出現(xiàn)沒(méi)有找到主機(jī)密鑰的提示信息。輸入"yes"后,系統(tǒng)會(huì)將遠(yuǎn)程主機(jī)的密鑰加入到你的主目錄下的 .ssh/hostkeys下,這樣你就可以繼續(xù)操作了。示例如下:

1

2

3

4

5

6

7

8

localhost$ ssh -l jsmith remotehost.example.com

Host key not found from database.

Key fingerprint:

xabie-dezbc-manud-bartd-satsy-limit-nexiu-jambl-title-jarde-tuxum

You can get a public key‘s fingerprint by running % ssh-keygen -F publickey.pub on the keyfile.

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

Host key saved to /home/jsmith/.ssh3/hostkeys/key_22_remotehost.example.com.pub host key for remotehost.example.com,

accepted by jsmith Mon May 26 2008 16:06:50 -0700 jsmith@remotehost.example.com password: remotehost.example.com$

因?yàn)檫h(yuǎn)程主機(jī)的密鑰已經(jīng)加入到ssh客戶端的已知主機(jī)列表中,當(dāng)你第二次登陸遠(yuǎn)程主機(jī)時(shí),只需要你輸入遠(yuǎn)程主機(jī)的登錄密碼即可。

1

2

3

localhost$ ssh -l jsmith remotehost.example.com

jsmith@remotehost.example.com password:

remotehost.example.com$

由于各種原因,可能在你第一次登陸遠(yuǎn)程主機(jī)后,該主機(jī)的密鑰發(fā)生改變,你將會(huì)看到一些警告信息。出現(xiàn)這種情況,可能有兩個(gè)原因:

o 系統(tǒng)管理員在遠(yuǎn)程主機(jī)上升級(jí)或者重新安裝了SSH服務(wù)器 
o 有人在進(jìn)行一些惡意行為,等等。

在你輸入“yes”之前呢,最佳的選擇或許是聯(lián)系你的系統(tǒng)管理員來(lái)分析為什么會(huì)出現(xiàn)主機(jī)驗(yàn)證碼改變的信息,核對(duì)主機(jī)驗(yàn)證碼是否正確。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

localhost$ ssh -l jsmith remotehost.example.com
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

@ WARNING: HOST IDENTIFICATION HAS CHANGED!
@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!

Someone could be eavesdropping on you right now (man-in-the- middle attack)!

It is also possible that the host key has just been changed.

Please contact your system administrator.

Add correct host key to ―/home/jsmith/.ssh3/hostkeys/key_22_remotehost.example.com.pub‖ to get rid of this message.

Received server key's fingerprint:

xabie-dezbc-manud-bartd-satsy-limit-nexiu-jambl-title-arde-tuxum

You can get a public key's fingerprint by running % ssh-keygen -F publickey.pub on the keyfile.

Agent forwarding is disabled to avoid attacks by corrupted servers.

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

Do you want to change the host key on disk (yes/no)? yes

Agent forwarding re-enabled.

Host key saved to /home/jsmith/.ssh3/hostkeys/key_22_remotehost.example.com.pub host key for remotehost.example.com,

accepted by jsmith Mon May 26 2008 16:17:31 -0700 jsmith @remotehost.example.com's password: remotehost$

3、調(diào)試SSH客戶端會(huì)話

當(dāng)ssh連接出現(xiàn)問(wèn)題時(shí),我們需要通過(guò)查看調(diào)試信息來(lái)定位這些錯(cuò)誤。一般來(lái)講使用v選項(xiàng)(注意:是小寫(xiě)的v),即可查看調(diào)試信息。

沒(méi)有SSH客戶端調(diào)試信息的例子:

1

2

localhost$ ssh -l jsmith remotehost.example.com

warning: Connecting to remotehost.example.com failed: No address associated to the name

包含ssh調(diào)試信息的例子:

1

2

3

4

5

6

7

8

9

10

locaclhost$ ssh -v -l jsmith remotehost.example.com

debug: SshConfig/sshconfig.c:2838/ssh3_parse_config_ext:

Metaconfig parsing stopped at line 3.

debug: SshConfig/sshconfig.c:637/ssh_config_set_param_verbose:

Setting variable 嘠攀爀戀漀猀攀Mode' to FALSE'.

debug: SshConfig/sshconfig.c:3130/ssh_config_read_file_ext: Read 17 params from config file.

debug: Ssh3/ssh3.c:1707/main: User config file not found, using defaults. (Looked for /home/jsmith/.ssh3/ssh3_config')

debug: Connecting to remotehost.example.com, port 22… (SOCKS not used)

warning: Connecting to remotehost.example.com failed: No address associated to the name

[注:很多命令中,v選項(xiàng)對(duì)應(yīng)的英文是 verbose,也就是詳細(xì)的信息的意思。]

當(dāng)你使用ssh從本機(jī)登錄到遠(yuǎn)程主機(jī)時(shí),你可能希望切換到本地做一些操作,然后再重新回到遠(yuǎn)程主機(jī)。這個(gè)時(shí)候,你不需要中斷ssh連接,只需要按照第4點(diǎn)的步驟操作即可:

4、用SSH退出符切換SSH會(huì)話

這個(gè)技巧非常實(shí)用。尤其是遠(yuǎn)程登陸到一臺(tái)主機(jī)A,然后從A登陸到B,如果希望在A上做一些操作,還得再開(kāi)一個(gè)終端,很是麻煩。

當(dāng)你使用ssh從本機(jī)登錄到遠(yuǎn)程主機(jī)時(shí),你可能希望切換到本地做一些操作,然后再重新回到遠(yuǎn)程主機(jī)。這個(gè)時(shí)候,你不需要中斷ssh連接,只需要按照如下步驟操作即可:

當(dāng)你已經(jīng)登錄到了遠(yuǎn)程主機(jī)時(shí),你可能想要回到本地主機(jī)進(jìn)行一些操作,然后又繼續(xù)回到遠(yuǎn)程主機(jī)。在這種情況下,沒(méi)有必要斷開(kāi)遠(yuǎn)程主機(jī)的會(huì)話,你可以用下面的辦法來(lái)完成:

1.登入遠(yuǎn)程主機(jī):

localhost$ ssh -l jsmith remotehost

2.已連接遠(yuǎn)程主機(jī):

remotehost$

3.要臨時(shí)回到本地主機(jī),輸入退出符號(hào):“~”與“Control-Z”組合。

當(dāng)你輸入“~”你不會(huì)立即在屏幕上看到,當(dāng)你按下<Control-Z>并且按回車(chē)之后才一起顯示。如下,在遠(yuǎn)程主機(jī)中以此輸入“~<Control-Z>”

remotehost$ ~^Z 
[1]+ Stopped ssh -l jsmith remotehost 
localhost$

4.現(xiàn)在你已經(jīng)退回到了本地主機(jī),ssh遠(yuǎn)程客戶端會(huì)話就在UNIX后臺(tái)中運(yùn)行,你可以向下面那樣查看它:

localhost$ jobs 
[1]+ Stopped ssh -l jsmith remotehost

5. 你可以將后臺(tái)運(yùn)行的ssh會(huì)話進(jìn)程切換到前臺(tái),重新回到遠(yuǎn)程主機(jī),而無(wú)需輸入密碼

localhost$ fg %1 
ssh -l jsmith remotehost 
remotehost$

5、用SSH退出字符會(huì)話,顯示信息

要想取得一些關(guān)于當(dāng)前會(huì)話有用的信息,可以按以下方式完成。不過(guò)這只能在SSH 2 客戶端上使用。

登錄到遠(yuǎn)程服務(wù)器

localhost$ ssh -l jsmith remotehost

如下所示,在遠(yuǎn)程服務(wù)器上,輸入ssh退出字符~并輸入s。這樣會(huì)顯示出很多有關(guān)當(dāng)前ssh連接的有用信息

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

remotehost$ [注:當(dāng)你在命令行上輸入~s時(shí),它是不可見(jiàn)的.]

remote host: remotehost

local host: localhost

remote version: SSH-1.99-OpenSSH_3.9p1

local version: SSH-2.0-3.2.9.1 SSH Secure Shell (non-commercial)

compressed bytes in: 1506

uncompressed bytes in: 1622

compressed bytes out: 4997

uncompressed bytes out: 5118

packets in: 15

packets out: 24

rekeys: 0

Algorithms:

Chosen key exchange algorithm: diffie-hellman-group1-sha1

Chosen host key algorithm: ssh-dss

Common host key algorithms: ssh-dss,ssh-rsa

Algorithms client to server:

Cipher: aes128-cbc

MAC: hmac-sha1

Compression: zlib

Algorithms server to client:

Cipher: aes128-cbc MAC: hmac-sha1

Compression: zlib

localhost$

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Linux下SSH命令怎么用”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

本文標(biāo)題:Linux下SSH命令怎么用
網(wǎng)頁(yè)URL:http://jinyejixie.com/article18/peosdp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營(yíng)銷(xiāo)推廣、微信公眾號(hào)品牌網(wǎng)站設(shè)計(jì)、電子商務(wù)、微信小程序、小程序開(kāi)發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
淮安市| 龙南县| 元氏县| 怀来县| 涪陵区| 高尔夫| 新邵县| 扶沟县| 尼木县| 凤翔县| 两当县| 仲巴县| 玉龙| 永年县| 泰州市| 金坛市| 阿鲁科尔沁旗| 霍邱县| 扎兰屯市| 尚志市| 绥滨县| 哈密市| 那坡县| 金坛市| 湟中县| 卢湾区| 尼勒克县| 普定县| 吕梁市| 怀集县| 福海县| 胶南市| 醴陵市| 安西县| 柏乡县| 漳州市| 安宁市| 米脂县| 丰台区| 新闻| 塔河县|