這篇“centos7怎么禁止root登錄及sshd端口自定義”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“centos7怎么禁止root登錄及sshd端口自定義”文章吧。
臨汾網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),臨汾網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為臨汾數(shù)千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的臨汾做網(wǎng)站的公司定做!
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改為其他不被使用的端口, 上面還是不能滿足輸出結(jié)果:我們只要port 22的答案. -n顯示行號;\反斜杠實質(zhì)定義 3.不使用vi/vim進行修改port 22 為 4096 4.修改 #permitrootlogin yes 為 permitrootlogin no 5.重啟sshd服務(wù) 6.使用 wwweee000 用戶登錄變化 user普通用戶不能編輯 7.root進行運行,編寫shell腳本。//腳本通用centos 7 (主要:sshd_config端口號定義輸入對root登錄禁止) 運行測試(可循環(huán)使用)本次防火墻關(guān)閉/生產(chǎn)服務(wù)器都是關(guān)閉防火墻的 以上就是關(guān)于“centos7怎么禁止root登錄及sshd端口自定義”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。[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
[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
[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
[root@localhost ~]# systemctl restart sshd.service
[wwweee000@localhost ~]$
/etc/ssh/sshd_config
,需要切換root才能編輯,切換root命令 : su#!/bin/bash
sshd_port=`cat /etc/ssh/sshd_config|grep "port\ "`
echo " 當前sshd端口:$sshd_port"
read -ep " 請輸入sshd服務(wù)的連接端口port (1-65536);
請確保其他端口沖突和防火墻端口開放業(yè)務(wù):" sshd_port_read
echo " 你輸入的端口號:$sshd_port_read"
sed -i "s/$sshd_port/port $sshd_port_read/g" /etc/ssh/sshd_config
echo " 已經(jīng)設(shè)置端口為:`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服務(wù)的連接端口port (1-65536)
請確保其他端口沖突和防火墻端口開放業(yè)務(wù):4096
你輸入的端口號:4096
已經(jīng)設(shè)置端口為:port 4096
文章題目:centos7怎么禁止root登錄及sshd端口自定義
本文地址:http://weahome.cn/article/jigsjj.html