Linux 6 steps to change the default remote port number of ssh

Linux 6 steps to change the default remote port number of ssh

The default ssh remote port in Linux is 22. Sometimes the default port will be scanned or attacked by people with ulterior motives. In order to make our system more secure, we need to change the remote port number.

Steps:

1. Modify the ssh_config configuration file

vim /etc/ssh/sshd_config

2. Find the line #Port 22 in the configuration file (the default port is 22)

3. Modify this line to the port number you want

Port 222 (Note: remove the leading # sign)

4. [Optional] If you want to add a port number (port 22 and port 222 are effective at the same time)

Port 22 (Note: no # sign in front)
Port 222 (Note: no # sign in front)

5. After exiting, restart the sshd service

/etc/init.d/sshd restart

If you have a firewall set up, you need to add new port rules

6. Edit iptables file

vim /etc/sysconfig/iptables

7. Add port 222 rules

-A INPUT -m state –state NEW -m tcp -p tcp –dport 222 -j ACCEPT

8. Save and exit and restart the iptables service

service iptables restart

9. Test the connection and call it a day.

Summarize

The above is the steps for changing the default remote port number of ssh in Linux 6. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Install OpenSSH on Windows and log in to the Linux server by generating an SSH key
  • How to upload files and folders to Linux server via SSH
  • Novice learn Linux commands: ssh command (remote login)
  • How to solve the problem of Linux ssh remote connection disconnection
  • SSH login and configuration method under Linux system
  • Method for modifying vnc configuration port number based on Linux
  • Detailed explanation of Linux to view the open port number of the server

<<:  Detailed steps for installing and configuring MySQL 8.0 on CentOS 7.4 64-bit

>>:  Solution to automatically trigger click events when clicking on pop-up window in Vue (simulation scenario)

Recommend

Nginx configuration file detailed explanation and optimization suggestions guide

Table of contents 1. Overview 2. nginx.conf 1) Co...

A nice html printing code supports page turning

ylbtech_html_print HTML print code, support page t...

MySQL 5.7.17 installation and configuration method graphic tutorial under win7

I would like to share with you the graphic tutori...

How to monitor the running status of docker container shell script

Scenario The company project is deployed in Docke...

Definition and function of zoom:1 attribute in CSS

Today I was asked what the zoom attribute in CSS ...

MySQL Null can cause 5 problems (all fatal)

Table of contents 1. Count data is lost Solution ...

Implementation of Redis master-slave cluster based on Docker

Table of contents 1. Pull the Redis image 2. Crea...

JavaScript to implement the web version of Gobang game

This article shares the specific code for JavaScr...

MySQL study notes on handling duplicate data

MySQL handles duplicate data Some MySQL tables ma...

Two ways to clear float in HTML

1. Clear floating method 1 Set the height of the ...

Common CSS Errors and Solutions

Copy code The code is as follows: Difference betw...

Three ways to parse QR codes using javascript

Table of contents 1. Use JavaScript to parse the ...

The perfect solution to the Chinese garbled characters in mysql6.x under win7

1. Stop the MySQL service in the command line: ne...

Html long text automatically cuts off when it exceeds the tag width

When we display long text, we often need to interc...