gpt4 book ai didi

Powershell:需要从 PS 脚本创建 "active"ftp 传输连接

转载 作者:行者123 更新时间:2023-12-02 23:15:13 25 4
gpt4 key购买 nike

我正在使用以下脚本文件 (ftp_test_2.ps1) 将文件传输到 ftp 服务器:

#we specify the directory where all files that we want to upload are contained 
$Dir="C:/Users/you-who/Documents/textfiles/"
#ftp server

$ftp = "ftp://192.168.100.101:21/"
$user = "aP_RDB"
$pass = "pw"
$webclient = New-Object System.Net.WebClient
$webclient.Credentials = New-Object System.Net.NetworkCredential($user,$pass)

#list every txt file
foreach($item in (dir $Dir "*.txt"))
{
"creating URI..."
$uri = New-Object System.Uri($ftp+$item.Name)
$uri
"attempting upload... $item"
$webclient.UploadFile($uri, $item.FullName)
}

当 $ftp 设置为本地主机并连接到另一个 ftp 测试服务器时,这工作正常。但是,在生产 ftp 服务器上,服务器拒绝上传并出现 Powershell 错误:

Exception calling "UploadFile" with "2" argument(s): "The remote server returned an error: 227 Entering Passive Mode (192,168,101,99,228,67)."

At C:\Users\you-who\Documents\SandBox\ftp_test_2.ps1:17 char:24

\+$webclient.UploadFile <<<< ($uri, $item.FullName)
\+CategoryInfo : NotSpecified: (:) [], MethodInvocationException
\+ FullyQualifiedErrorId : DotNetMethodExceptionPP

在生产服务器上运行着一个 FileZilla 服务器。服务器 UI 中的消息“似乎”没有显示任何错误:

(000029)2/5/2013 5:58:53 AM - (not logged in) (192.168.100.101)> USER aP_RDB
(000029)2/5/2013 5:58:53 AM - (not logged in) (192.168.100.101)> 331 Password required for ap_rdb
(000029)2/5/2013 5:58:53 AM - (not logged in) (192.168.100.101)> PASS *******
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> 230 Logged on
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> OPTS utf8 on
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> 200 UTF8 mode enabled
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> PWD
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> 257 "/" is current directory.
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> CWD /
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> 250 CWD successful. "/" is current directory.
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> TYPE I
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> 200 Type set to I
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> PASV
(000029)2/5/2013 5:58:53 AM - ap_rdb (192.168.100.101)> 227 Entering Passive Mode (192,168,101,99,228,74)
(000029)2/5/2013 5:59:14 AM - ap_rdb (192.168.100.101)> disconnected.

从笔记本电脑上的 FileZilla ftp 客户端,我可以连接并在生产 ftp 服务器上放置/获取文件 IF 我将“传输模式”设置为“事件”(在 FileZilla 客户端中)用于连接到生产 ftp 服务器。

由于我无法更改生产服务器,是否可以在我上面的脚本中某处的 Powershell 中将传输模式设置为“事件”?我在网站和 MS 站点上搜索了这方面的帮助,但在 .非常感谢任何帮助。

-戴夫·埃夫

最佳答案

即使您最终选择了不同的路线 - 我决定回来并提供有关如何子类 WebClient 的答案并确保所有 FTP 请求都是“主动”传输。这需要 PowerShell v2 及更高版本才能添加新类型。如果您需要在 PowerShell v1 中执行此操作,您可以将类定义编译为程序集并加载它。

另外请注意,您可以轻松地公开 FtpWebRequest 类的 UseBinary 属性,方式与 UsePassive 属性相同 - 如果您还需要设置它。

$def = @"
public class ActiveFtpWebClient : System.Net.WebClient
{
protected override System.Net.WebRequest GetWebRequest(System.Uri address)
{
System.Net.WebRequest request = base.GetWebRequest(address);
if (request is System.Net.FtpWebRequest)
{
(request as System.Net.FtpWebRequest).UsePassive = false;
}
return request;
}
}
"@

Add-Type -TypeDefinition $def
$ftp = New-Object ActiveFtpWebClient
$ftp.DownloadString("ftp://server/file.txt")

关于Powershell:需要从 PS 脚本创建 "active"ftp 传输连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14708205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com