LINUX如何設定只允許SSH登陸

2021-07-10 20:29:51 字數 685 閱讀 8562

注釋掉/etc/inittab 檔案裡的

1:2345:respawn:/sbin/mingetty tty1

2:2345:respawn:/sbin/mingetty tty2

3:2345:respawn:/sbin/mingetty tty3

4:2345:respawn:/sbin/mingetty tty4

5:2345:respawn:/sbin/mingetty tty5

6:2345:respawn:/sbin/mingetty tty6

就是只允許遠端登陸,不允許本地登陸了。

另外最好

1.grub 加密碼,防止進入單使用者模式。

2.禁制ctrl+art+del 重新啟動

# /sbin/grub-md5-crypt

password: 在這裡輸入123456

retype password: 再輸入一次123456

$1$7udl20$esb.xrpg2a2fv8aeh34nz0

# gedit /boot/grub/grub.conf

timeout=10

splashimage=(hd0,7)/boot/grub/splash.xpm.gz

password --md5 $1$7udl20$esb.xrpg2a2fv8aeh34nz0

title

只允許指定使用者登入SSH

為安全需要,可以指定某使用者才能登入ssh 軟體環境 ssh v openssh 5.3p1,openssl 1.0.0 fips 29 mar 2010 1 在 etc ssh sshd config檔案中新增如下語句 允許admin可以在任何地方登入 allowusers admin 或設定成其...

如何讓ssh只允許指定的使用者登入

如何讓ssh只允許指定的使用者登入 方法1 在 etc pam.d sshd檔案第一行加入 auth required pam listfile.so item user sense allow file etc sshusers onerr fail 然後在 etc下建立sshusers檔案,編輯...

SSH 只允許個別使用者登陸SSH

原貼 http blog.chinaunix.net u 13329 showart.php?id 84747 ssh 只允許個別使用者登陸ssh 在檔案內加入auth required pam listfile.so item user sense allow file etc sshusers ...