[cisco 模拟器] ftp服务器配置

首先确保 PC能ping通 FTP服务器

服务器端配置

  1. 打开FTP服务
  2. 配置FTP用户名密码

客户端使用

sh 复制代码
> ftp {ftp服务器的IP}
> 输入用户名密码
> put {文件路径}# dir不加盘符直接是从C盘开始定位; 可以使用dir看c盘下有什么文件
> get {文件名}

例如

sh 复制代码
C:\>ftp 210.31.224.4
Trying to connect...210.31.224.4
Connected to 210.31.224.4
220- Welcome to PT Ftp server
Username:cisco
331- Username ok, need password
Password:
230- Logged in
(passive mode On)
ftp>put sampleFile.txt

Writing file sampleFile.txt to 210.31.224.4: 
File transfer in progress...

[Transfer complete - 26 bytes]

26 bytes copied in 0.021 secs (1238 bytes/sec)
ftp>get sampleFile.txt

Reading file sampleFile.txt from 210.31.224.4: 
File transfer in progress...

[Transfer complete - 26 bytes]

26 bytes copied in 0.001 secs (26000 bytes/sec)
ftp>
相关推荐
阿巴斯甜7 小时前
Android 报错:Zip file '/Users/lyy/develop/repoAndroidLapp/l-app-android-ble/app/bu
android
Kapaseker7 小时前
实战 Compose 中的 IntrinsicSize
android·kotlin
碳基沙盒8 小时前
OpenClaw 多 Agent 配置实战指南
运维
xq95278 小时前
Andorid Google 登录接入文档
android
黄林晴10 小时前
告别 Modifier 地狱,Compose 样式系统要变天了
android·android jetpack
冬奇Lab1 天前
Android触摸事件分发、手势识别与输入优化实战
android·源码阅读
城东米粉儿1 天前
Android MediaPlayer 笔记
android
Jony_1 天前
Android 启动优化方案
android
阿巴斯甜1 天前
Android studio 报错:Cause: error=86, Bad CPU type in executable
android
张小潇1 天前
AOSP15 Input专题InputReader源码分析
android