CentOS下用OpenSSH構建SSH伺服器(圖)

來源:互聯網
上載者:User

CentOS下用OpenSSH構建SSH伺服器

日期:2007-01-24 作者:CentOS Pub 來自:linux.chinaunix.net


前  言

  SSH服務和Telnet服務一樣,通過遠程登入登入到系統,在遠程操控系統。但它與Telnet的不同點就是:Telnet在傳輸的過程中是平文傳輸,而SSH是將傳輸內容加密,在傳送的過程中保證了傳送內容的保密性,從而提高了系統的安全性。

  在這裡,我們不準備將SSH服務作為使用者上傳下載檔案的工具。我們只用SSH服務的開通為遠端管理系統提供方便。另外在使用者認證方式上,為了伺服器和使用者的安全,禁止使用者密碼的認證方式,而基於“鑰匙”的方式。

SSH相關設定檔的修改

  首先修改SSH的設定檔。如下:

[root@sample ~]# vi /etc/ssh/sshd_config  ← 用vi開啟SSH的設定檔

#Protocol 2,1 ← 找到此行將行頭“#”刪除,再將行末的“,1”刪除,只允許SSH2方式的串連
 ↓
Protocol 2 ← 修改後變為此狀態,僅使用SSH2

#ServerKeyBits 768 ← 找到這一行,將行首的“#”去掉,並將768改為1024
 ↓
ServerKeyBits 1024 ← 修改後變為此狀態,將ServerKey強度改為1024位元

#PermitRootLogin yes  ← 找到這一行,將行首的“#”去掉,並將yes改為no
 ↓
PermitRootLogin no  ← 修改後變為此狀態,不允許用root進行登入

#PasswordAuthentication yes ← 找到這一行,將yes改為no
 ↓
PasswordAuthentication no ← 修改後變為此狀態,不允許密碼方式的登入

#PermitEmptyPasswords no  ← 找到此行將行頭的“#”刪除,不允許空密碼登入
 ↓
PermitEmptyPasswords no  ← 修改後變為此狀態,禁止空密碼進行登入

  然後儲存並退出。(vi儲存退出的命令為ZZ)

  因為我們只想讓SSH服務為管理系統提供方便,所以在不通過外網遠端管理系統的情況下,只允許內網用戶端通過SSH登入到伺服器,以最大限度減少不安全因素。設定方法如下:

[root@sample ~]# vi /etc/hosts.deny  ← 修改屏蔽規則,在文尾添加相應行

#
# hosts.deny This file describes the names of the hosts which are
# *not* allowed to use the local INET services, as decided
# by the '/usr/sbin/tcpd' server.
#
# The portmap line is redundant, but it is left to remind you that
# the new secure portmap uses hosts.deny and hosts.allow. In particular
# you should know that NFS uses portmap!

sshd: ALL  ← 添加這一行,屏蔽來自所有的SSH串連請求

[root@sample ~]# vi /etc/hosts.allow  ← 修改允許規則,在文尾添加相應行

#
# hosts.allow This file describes the names of the hosts which are
# allowed to use the local INET services, as decided
# by the '/usr/sbin/tcpd' server.
#

sshd: 192.168.0.  ← 添加這一行,只允許來自內網的SSH串連請求

重新啟動SSH服務

  在修改完SSH的設定檔後,需要重新啟動SSH服務才能使新的設定生效。

[root@sample ~]# /etc/rc.d/init.d/sshd restart  ← 重新啟動SSH伺服器

Stopping sshd:             [ OK ]
Starting sshd:             [ OK ]  ← SSH伺服器重新啟動成功

  這時,在遠程終端(自用PC等等)上,用SSH用戶端軟體以正常的密碼的方式是無法登入伺服器的。為了在客戶能夠登入到伺服器,我們接下來建立SSH用的公開金鑰與私密金鑰,以用於用戶端以“鑰匙”的方式登入SSH伺服器。

SSH2的公開金鑰與私密金鑰的建立

  登入狀態一個一般使用者,基於這個使用者建立公開金鑰與私密金鑰。(這裡以centospub使用者為例)

[root@sample ~]# su - centospub ← 登入狀態一般使用者centospub

[centospub@sample ~]$ ssh-keygen -t rsa  ← 建立公開金鑰與私密金鑰
Generating public/private rsa key pair.
Enter file in which to save the key (/home/kaz/.ssh/id_rsa):  ← 鑰匙的檔案名稱,這裡保持預設直接斷行符號
Created directory '/home/kaz/.ssh'
Enter passphrase (empty for no passphrase):  ← 輸入口令
Enter same passphrase again:   ← 再次輸入口令
Your identification has been saved in /home/kaz/.ssh/id_rsa.
Your public key has been saved in /home/kaz/.ssh/id_rsa.pub.
The key fingerprint is:
tf:rs:e3:7s:28:59:5s:93:fe:33:84:01:cj:65:3b:8e centospub@sample.centospub.com

  然後確認一下公開金鑰與密鑰的建立,以及對應於用戶端的一些處理。

[centospub@sample ~]$ cd ~/.ssh  ← 進入使用者SSH設定檔的目錄

[centospub@sample .ssh]$ ls -l  ← 列出檔案
total 16
-rw------- 1 centospub centospub 951 Sep 4 19:22 id_rsa  ← 確認私密金鑰已被建立
-rw-r--r-- 1 centospub centospub 241 Sep 4 19:22 id_rsa.pub  ← 確認公開金鑰已被建立

[centospub@sample .ssh]$ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys  ← 公開金鑰內容輸出到相應檔案中

[centospub@sample .ssh]$ rm -f ~/.ssh/id_rsa.pub  ← 刪除原來的公開金鑰檔案

[centospub@sample .ssh]$ chmod 400 ~/.ssh/authorized_keys  ← 將建立立的公開金鑰檔案屬性設定為400

  然後,將私密金鑰通過安全的方式轉移到欲通過SSH串連到伺服器的PC上。這裡,以通過3.5寸磁碟為介質為例:

centospub@sample .ssh]$ exit   ← 退出一般使用者的登入(返回root的登入)

[root@sample ~]# mount /mnt/floppy/  ← 載入軟碟機

[root@sample ~]# mv /home/centospub/.ssh/id_rsa /mnt/floppy/  ← 將剛剛建立的私密金鑰移動到磁碟片

[root@sample ~]# umount /mnt/floppy/  ← 卸載軟碟機

  這樣,我們通過對應於centospub使用者的私密金鑰,就可以在遠程終端上通過SSH用戶端串連到伺服器了。但伺服器產生的私密金鑰匙不能被用戶端直接應用…詳細請見下一節。  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.