這期內容當中小編將會給大家帶來有關如何在centos 7中修改sshd,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創新互聯公司是一家專業提供霞山企業網站建設,專注與成都網站建設、成都做網站、成都h5網站建設、小程序制作等業務。10年已為霞山眾多企業、政府機構等服務。創新互聯專業的建站公司優惠進行中。1.新建用戶wwweee000
[root@localhost ~]# useradd wwweee000 [root@localhost ~]# passwd wwweee000 Changing password for user wwweee000. New password: BAD PASSWORD: The password is a palindrome Retype new password: passwd: all authentication tokens updated successfully.
2.#Port 22字段刪掉,將22改為其他不被使用的端口,服務器端口大可以開到65536.//注意Port是大寫的"P"
[root@localhost ~]# cat -n /etc/ssh/sshd_config|grep "Port *" 17 #Port 22 100 #GatewayPorts no [root@localhost ~]# cat /etc/ssh/sshd_config|grep -n "Port *" 17:#Port 22 100:#GatewayPorts no [root@localhost ~]# awk "/Port */" /etc/ssh/sshd_config #Port 22 #GatewayPorts no
上面還是不能滿足輸出結果:我們只要Port 22的答案.
[root@localhost ~]# cat /etc/ssh/sshd_config|grep -n "Port\ " 17:#Port 22 [root@localhost ~]# cat -n /etc/ssh/sshd_config|grep "Port\ " 17 #Port 22 [root@localhost ~]# cat /etc/ssh/sshd_config|grep -n "Port\ " 17:#Port 22 [root@localhost ~]# awk "/Port\ /" /etc/ssh/sshd_config #Port 22 [root@localhost ~]# sed -i "17s/#Port 22/Port 22/g" /etc/ssh/sshd_config [root@localhost ~]# awk "/Port\ /" /etc/ssh/sshd_config Port 22
-n顯示行號;\反斜杠實質定義
3.不使用vi/vim進行修改Port 22 為 4096
[root@localhost ~]# sed -i "17s/Port 22/Port 4096/g" /etc/ssh/sshd_config [root@localhost ~]# cat /etc/ssh/sshd_config|grep "Port\ " Port 4096
4.修改 #PermitRootLogin yes 為 PermitRootLogin no
[root@localhost ~]# cat -n /etc/ssh/sshd_config|grep "PermitRootLogin" 49 #PermitRootLogin yes 104 # the setting of "PermitRootLogin without-password". [root@localhost ~]# sed -i "49s/#PermitRootLogin yes/PermitRootLogin no/g" /etc/ssh/sshd_config [root@localhost ~]# cat -n /etc/ssh/sshd_config|grep "PermitRootLogin no" 49 PermitRootLogin no
5.重啟sshd服務
[root@localhost ~]# systemctl restart sshd.service
6.使用 wwweee000 用戶登錄變化
[wwweee000@localhost ~]$
user普通用戶不能編輯/etc/ssh/sshd_config
,需要切換root才能編輯,切換root命令 : su
7.root進行運行,編寫shell腳本。//腳本通用centos 7 (主要:sshd_config端口號定義輸入對root登錄禁止)
#!/bin/bash sshd_Port=`cat /etc/ssh/sshd_config|grep "Port\ "` echo " 當前sshd端口:$sshd_Port" read -ep " 請輸入sshd服務的連接端口Port (1-65536); 請確保其他端口沖突和防火墻端口開放業務:" sshd_Port_read echo " 你輸入的端口號:$sshd_Port_read" sed -i "s/$sshd_Port/Port $sshd_Port_read/g" /etc/ssh/sshd_config echo " 已經設置端口為:`cat /etc/ssh/sshd_config|grep "Port\ "`" sed -i "s/#PermitRootLogin yes/PermitRootLogin no/g" /etc/ssh/sshd_config systemctl restart sshd.service exit 0
運行測試(可循環使用)本次防火墻關閉/生產服務器都是關閉防火墻的
[root@localhost wwweee000]# firewall-cmd --state not running [root@localhost ~]# sh sshd_config_Port.sh 當前sshd端口:Port 22 請輸入sshd服務的連接端口Port (1-65536) 請確保其他端口沖突和防火墻端口開放業務:4096 你輸入的端口號:4096 已經設置端口為:Port 4096
上述就是小編為大家分享的如何在centos 7中修改sshd了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注創新互聯行業資訊頻道。
網頁名稱:如何在centos7中修改sshd-創新互聯
本文地址:http://vcdvsql.cn/article10/ccidgo.html
成都網站建設公司_創新互聯,為您提供全網營銷推廣、靜態網站、網站導航、虛擬主機、網站內鏈、網站改版
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯