Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to modify SSH port and disable Root remote login by Linux

2025-06-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "Linux how to modify SSH port and prohibit Root remote login", interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let Xiaobian take you to learn "Linux how to modify SSH port and prohibit Root remote login"!

Linux modified ssh port 22

vi /etc/ssh/ssh_config

vi /etc/ssh/sshd_config

Change it to port 8888.

service sshd restart (redhat as3) as root

Use Putty, port 8888

The default SSH port under Linux is 22. For security reasons, the SSH port is now modified to 1433. The modification method is as follows:

/usr/sbin/sshd -p 1433

To enhance security

First add a user with normal permissions:

#useradd uploader

#passwd uploader

//Set password

Production machines prohibit ROOT remote SSH login:

#vi /etc/ssh/sshd_config

put

PermitRootLogin yes

changed to

PermitRootLogin no

Restart sshd service

#service sshd restart

Remote administration log in as normal user uploader, and then switch to root user with su root to get the highest privileges

At this point, I believe that everyone has a deeper understanding of "how to modify SSH port and prohibit Root remote login in Linux", so let's actually operate it! Here is the website, more related content can enter the relevant channels for inquiry, pay attention to us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report