vim /etc/ssh/sshd_config
#禁用root賬戶登入,如果是用root使用者登入請開啟
permitrootlogin yes
# 是否讓 sshd 去檢查使用者家目錄或相關檔案的許可權資料,
# 這是為了擔心使用者將某些重要檔案的許可權設錯,可能會導致一些問題所致。
# 例如使用者的 ~.ssh/ 許可權設錯時,某些特殊情況下會不許使用者登入
strictmodes no
# 是否允許使用者自行使用成對的金鑰系統進行登入行為,僅針對 version 2。
# 至於自製的公鑰資料就放置於使用者家目錄下的 .ssh/authorized_keys 內
rsaauthentication yes
pubkeyauthentication yes
authorizedkeysfile .ssh/authorized_keys
# 有了證書登入了,就禁用密碼登入吧,安全要緊
passwordauthentication no
啟動ssh服務systemctl start sshd.service
紅帽7 配置dhcp伺服器
一.安裝dhcp服務 1.要通過yum 源安裝dhcp服務 yum y install dhcp 如果顯示complete表示完成2.檢視dhcp安裝結果 rpm qa grep dhcp 二.配置dhcp伺服器 dhcp配置檔案 etc dhcp dhcpd.conf dhcp模板檔案 usr s...
CentOS 7 配置 samba伺服器
1 安裝samba yum y install samba samba client 2 啟動服務並設定開機啟動 systemctl start smb systemctl enable smb 3 建立共享檔案 mkdir public 4 建立安全上下文 chcon t samba share ...
CentOS 7 配置 http 伺服器
一 http單網域名稱訪問 1 安裝軟體 yum y install httpd 2 啟動服務 systemctl start httpd 3 設定開機啟動 systemctl enable httpd 4 建立index.html touch var www html index.html 5 在...