Table of Contents
If you have not installed openssh-server, please refer to the following steps
Ubuntu 16.04 Modify ssh port
There is another faster method:
Home System Tutorial LINUX Tips to change ssh connection port number in ubuntu

Tips to change ssh connection port number in ubuntu

Dec 29, 2023 am 08:50 AM
ubuntu ssh Revise remote port

Generally

Open ssh configuration file

sudo vim /etc/ssh/sshd_config

Find the following line:

Port 22

Change the following 22 to the port number you want to set

Then restart the ssh service

sudo service ssh restart

If you are prompted with the message: no route to host when logging in to SSH remotely, it may be that the firewall has not configured the corresponding port. Set the firewall and it will be ok.

If you have not installed openssh-server, please refer to the following steps

Note: If the port is modified remotely, in order to prevent SSH from being unable to connect remotely after modifying the port, we can make SSH work under 22 and the newly set port at the same time, and then comment out the 22 port after the test can connect to the new port. Lose.

First install openssh-server

$ sudo apt-get install openssh-server

$sudo vim /etc/ssh/sshd_config

Remove the # in front of #Port 22 and add the port you want to use on the next line. For example: Port 222

$ sudo vim /etc/ssh/ssh_config

Remove the # in front of #Port 22 and add the port you want to use on the next line. For example: Port 222

Restart the service after saving the changes

$ /etc/init.d/ssh restart

or

$ service ssh restart

Open the corresponding port in the firewall and conduct the test (note that ssh now works under 22 and the port you set at the same time. After the test is completed, you can comment out Port 22)

Ubuntu 16.04 Modify ssh port

Modify/etc/ssh/sshd_config

$sudo vim /etc/ssh/sshd_config

Add your port under Port 22

Port 22
Port YOUR_PORT

Modify /etc/ssh/ssh_config and add your port under Host *

Host *
Port 22
Port your port
#ForwardAgent no
...

Restart ssh

service ssh restart

Then ssh to connect to the new port. After successful connection, modify the above configuration and comment out port 22

Create a new config file under ~/.ssh/ on this machine. The content of the file is:

Host YOUR_HOST
User YOUR_USER_NAME
Port YOUR_NEW_PORT

In this way, you only need to ssh YOUR_HOST to connect next time and it will be ok.

After modifying the ssh default port, some remote operations of git will fail. The solution is to modify the config file:

Host github.com
HostName github.com
Port 22
Host bitbucket.org
HostName bitbucket.org
Port 22

There is another faster method:

1. Set port

sed -i "s/Port .*/Port your port/g" /etc/ssh/sshd_config

2. Restart ssh

service ssh restart

Then ssh to connect to the new port.

Notice:

The new port should be added to the list of allowed access, so as not to lock yourself out of the server! ! ! Refer here, the command entered on the Linux command line is:

firewall-cmd --zone=public --add-port=your port/tcp --permanent

Check Auth.log and check whether SSH has been scanned
Check the IP addresses and times of successful login with password

grep "Accepted password for root" /var/log/auth.log | awk '{print $11}' | sort | uniq -c | sort -nr | more

Check the IP address and number of failed login attempts with password

grep "Failed password for root" /var/log/auth.log | awk '{print $11}' | sort | uniq -c | sort -nr | more

The above is the detailed content of Tips to change ssh connection port number in ubuntu. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to change the personal name in the group on DingTalk_How to modify the personal name in the group on DingTalk How to change the personal name in the group on DingTalk_How to modify the personal name in the group on DingTalk Mar 29, 2024 pm 08:41 PM

1. First open DingTalk. 2. Open the group chat and click the three dots in the upper right corner. 3. Find my nickname in this group. 4. Click to enter to modify and save.

What should I do if the Ubuntu terminal cannot be opened? How to fix the problem that Ubuntu cannot open the terminal What should I do if the Ubuntu terminal cannot be opened? How to fix the problem that Ubuntu cannot open the terminal Feb 29, 2024 pm 05:30 PM

It is a very common problem these days that Ubuntu does not allow its users to open the terminal. If you receive a similar issue and don’t know what to do next, learn about five fixes on how to resolve this “Ubuntu cannot open terminal” issue on your Linux device. Without further ado, let’s dive into what causes it and the solutions available to it. Why can't Ubuntu open the terminal on it? This mainly happens when you install some defective software or modify the terminal configuration. In addition to this, new applications or games that interact with locales and corrupt them can cause similar problems. Some users reported a fix for this issue when searching for Terminal in Ubuntu's activity menu. This shows that

Log in to Ubuntu as superuser Log in to Ubuntu as superuser Mar 20, 2024 am 10:55 AM

In Ubuntu systems, the root user is usually disabled. To activate the root user, you can use the passwd command to set a password and then use the su- command to log in as root. The root user is a user with unrestricted system administrative rights. He has permissions to access and modify files, user management, software installation and removal, and system configuration changes. There are obvious differences between the root user and ordinary users. The root user has the highest authority and broader control rights in the system. The root user can execute important system commands and edit system files, which ordinary users cannot do. In this guide, I'll explore the Ubuntu root user, how to log in as root, and how it differs from a normal user. Notice

Ubuntu 20.04 screen recording software OBS installation and uninstallation graphic tutorial Ubuntu 20.04 screen recording software OBS installation and uninstallation graphic tutorial Feb 29, 2024 pm 04:01 PM

OBS is open source software developed by volunteer contributors around the world in their free time. A video live recording software, mainly used for video recording and live streaming. Please note that when installing Ubuntu/Mint, OBSStudio cannot fully work on ChromeOS, and functions such as screen and window capture cannot be used. It is recommended to use xserver-xorg1.18.4 or newer version to avoid potential performance issues with certain features in OBS, such as full-screen projectors. FFmpeg is required. If you don't have FFmpeg installed (if you're not sure, you probably don't), you can get it with: sudoaptinstallffmpeg I already have it installed here

Android TV Box gets unofficial Ubuntu 24.04 upgrade Android TV Box gets unofficial Ubuntu 24.04 upgrade Sep 05, 2024 am 06:33 AM

For many users, hacking an Android TV box sounds daunting. However, developer Murray R. Van Luyn faced the challenge of looking for suitable alternatives to the Raspberry Pi during the Broadcom chip shortage. His collaborative efforts with the Armbia

How to install Angular on Ubuntu 24.04 How to install Angular on Ubuntu 24.04 Mar 23, 2024 pm 12:20 PM

Angular.js is a freely accessible JavaScript platform for creating dynamic applications. It allows you to express various aspects of your application quickly and clearly by extending the syntax of HTML as a template language. Angular.js provides a range of tools to help you write, update and test your code. Additionally, it provides many features such as routing and form management. This guide will discuss how to install Angular on Ubuntu24. First, you need to install Node.js. Node.js is a JavaScript running environment based on the ChromeV8 engine that allows you to run JavaScript code on the server side. To be in Ub

Can Douyin Blue V change its name? What are the steps to change the name of corporate Douyin Blue V account? Can Douyin Blue V change its name? What are the steps to change the name of corporate Douyin Blue V account? Mar 22, 2024 pm 12:51 PM

Douyin Blue V certification is the official certification of a company or brand on the Douyin platform, which helps enhance brand image and credibility. With the adjustment of corporate development strategy or the update of brand image, the company may want to change the name of Douyin Blue V certification. So, can Douyin Blue V change its name? The answer is yes. This article will introduce in detail the steps to modify the name of the enterprise Douyin Blue V account. 1. Can Douyin Blue V change its name? You can change the name of Douyin Blue V account. According to Douyin’s official regulations, corporate Blue V certified accounts can apply to change their account names after meeting certain conditions. Generally speaking, enterprises need to provide relevant supporting materials, such as business licenses, organization code certificates, etc., to prove the legality and necessity of changing the name. 2. What are the steps to modify the name of corporate Douyin Blue V account?

OpenSSH on Windows: Installation, Configuration, and Usage Guide OpenSSH on Windows: Installation, Configuration, and Usage Guide Mar 08, 2024 am 09:31 AM

For most Windows users, Remote Desktop Protocol (RDP) has always been the first choice for remote management because it provides a friendly graphical interface. However, for system administrators who require more granular control, SSH may better suit their needs. Through SSH, administrators can interact with remote devices through the command line, which can make management work more efficient. The advantage of SSH is its security and flexibility, making it easier for administrators to perform remote management and maintenance work, especially when dealing with a large number of devices or performing automated tasks. So while RDP excels in terms of user-friendliness, for system administrators, SSH is superior in terms of power and control. Previously, Windows users needed to borrow

See all articles