Ubuntu opens port 22

Ubuntu opens port 22

Scenario

You need to use the xshell tool to connect to the Ubuntu server via ssh. Default port 22.

result

General Connection


Command line connection

//Connect directly to ssh remote machine [email protected] through command
Or telnet 192.168.67.128 22

analyze

There is no problem with the ip and port.
Check whether the server port 22 is enabled.
lsof -i:22

//Restart is required after installation sudo apt-get install openssh-server openssh-client 

service ssh start
ssh localhost
lsof -i:22


SSH remote connection access

This is the end of this article about how to open port 22 in Ubuntu. For more information about how to open port 22 in Ubuntu, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to the startup error problem of AndroidStudio4.1 under Ubuntu
  • Solution to the error problem of Vscode remotely connecting to Ubuntu
  • Detailed tutorial on using VS Code and installing C/C++ plugins in Ubuntu
  • How to change password and set password complexity policy in Ubuntu
  • How to install and configure GitLab on Ubuntu 20.04
  • How to install vncserver in Ubuntu 20.04
  • Ubuntu20.04 VNC installation and configuration implementation
  • Ubuntu configuration Pytorch on Graph (PoG) environment process diagram

<<:  How MySQL uses transactions

>>:  Vue keeps the user logged in (various token storage methods)

Recommend

Detailed explanation of Angular routing sub-routes

Table of contents 1. Sub-route syntax 2. Examples...

Introduction to fork in multithreading under Linux

Table of contents Question: Case (1) fork before ...

Example analysis of mysql non-primary key self-increment usage

This article uses an example to illustrate the us...

HTML embedded in WMP compatible with Chrome and IE detailed introduction

In fact, there are many corresponding writing met...

Detailed description of ffmpeg Chinese parameters

FFMPEG 3.4.1 version parameter details Usage: ffm...

Implementation of Mysql User Rights Management

1. Introduction to MySQL permissions There are 4 ...

Analysis of the principle of Vue nextTick

Table of contents Event Loop miscroTask (microtas...

Build Tomcat9 cluster through Nginx and realize session sharing

Use Nginx to build Tomcat9 cluster and Redis to r...

How to configure MySQL on Ubuntu 16.04 server and enable remote connection

background I am learning nodejs recently, and I r...

Detailed explanation of DOM style setting in four react components

1. Inline styles To add inline styles to the virt...

CSS easily implements fixed-ratio block-level containers

When designing H5 layout, you will usually encoun...

Pure CSS to achieve the water drop animation button in Material Design

Preface You should often see this kind of special...

Sample code for implementing interface signature with Vue+Springboot

1. Implementation ideas The purpose of interface ...