what is ssh linux
What is ssh linux?
SSH (remote connection tool) connection principle: the ssh service is a daemon process (demon). The system background monitors client connections. The process of the ssh server is called sshd, which is responsible for monitoring client requests in real time ( IP 22 port), including exchange of public keys and other information.
The ssh server consists of 2 parts: openssh (providing ssh service) openssl (providing encryption program)
The ssh client can use XSHELL, Securecrt, Mobaxterm and other tools to connect
The working mechanism of SSH
When the server starts, it generates a key (768bit public key). The local ssh client sends a connection request to the ssh server, and the server checks the connection. Click on the data and IP address sent by the client, and send the key (768bits) to the client after confirming it is legal. At this time, the client combines the local private key (256bit) and the server's public key (768bit) into a key pair key (1024bit) ), sent back to the server, and the connection is established through key-pair data transmission.
SSH encryption technology
Encryption technology: transmission process, data encryption.
1.SSH1 does not verify the client's secret key, and it is easy to implant malicious code
2.SSH2 adds a Diffe_Hellman mechanism to confirm the correctness of the connection. Each time the data is During transmission, the server will check the correctness of the data source to avoid hacker intrusion.
SSH2 supports RSA and DSA keys
DSA: digital signature Algorithm Digital signature
RSA: can both digitally sign and encrypt
Summary of SSH knowledge
1.SSH is a secure encryption protocol, used to remotely connect to Linux servers
2. The default port of SSH is 22, and the security protocol version is SSH2
3. The SSH server mainly includes 2 service functions: SSH connection and SFTP server. , learning address:
https://www.php.cn/course/list/33.htmlThe above is the detailed content of what is ssh linux. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)
