当前位置:网站首页>Usage of SFTP
Usage of SFTP
2022-08-04 06:33:00 【Louzen】
From Jasonzhiying
The concept of SFTP
sftp is the abbreviation of Secure File Transfer Protocol, secure file transfer protocol.An encryption method that can provide a secure network for transferring files.sftp has almost the same syntax and functionality as ftp.SFTP, part of SSH, is a secure way to transfer files to the Blogger server.In fact, the SSH software package already contains a secure file information transfer subsystem called SFTP (Secure File Transfer Protocol). SFTP itself does not have a separate daemon process, it must use the sshd daemon process (the default port number is 22) toComplete the corresponding connection and reply operations, so in a sense, SFTP is not like a server program, but more like a client program.SFTP also uses encryption to transmit authentication information and transmitted data, so using SFTP is very secure.However, because this transmission method uses encryption/decryption technology, the transmission efficiency is much lower than that of ordinary FTP. If you have higher requirements for network security, you can use SFTP instead of FTP.(from Baidu Encyclopedia)
Here we use sftp to upload and download files on remote servers and local computers.
Basic usage:
- Connect to remote server:
sftp [email protected]Enter the server password after pressing Enter to connect successfully.
- Upload the file to the server:
put [address of local file] [Where files are stored on the server]- Download the file on the server to the local:
get [where the file is stored on the server] [Location to store locally]边栏推荐
- LeetCode_Nov_2nd_Week
- 基于asp.net的法律援助平台的设计与实现(附项目链接)
- 文件编辑器
- Introduction to Convolutional Neural Networks
- No matching function for call to 'RCTBridgeModuleNameForClass'
- 第二章 STA相关概念
- The Unity of ML - agents interpret parameter Settings
- 集合--LinkedList
- MNIST handwritten digit recognition, sorted by from two to ten
- Shell脚本执行的三种方式
猜你喜欢
随机推荐
Deep learning, "grain and grass" first--On the way to obtain data sets
LeetCode_Nov_2nd_Week
Cut the hit pro subtitles export of essays
【C语言】数组名是什么
"A minute" Copy siege lion log 】 【 run MindSpore LeNet model
Amazon Cloud Technology Build On 2022 - AIot Season 2 IoT Special Experiment Experience
Chapter One Introduction
How to grow into a senior engineer?
Tensorflow/Pytorch安装(Anaconda环境下,无版本冲突,亲测有效)
The usefulness of bind() system call
深度学习理论——过拟合、欠拟合、正则化、优化器
FAREWARE ADDRESS
关于DG(域泛化)领域的PCL方法的代码实例
tmux概念和使用
迅雷关闭自动更新
Windows10重置MySQL用户密码
安装pyspider后运行pyspider all后遇到的问题
文件权限管理 ugo
jdbc:mysql://localhost:3306/student?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8时报错
【五一专属】阿里云ECS大测评#五一专属|向所有热爱分享的“技术劳动者”致敬#









