web-dev-qa-db-ja.com

FTPサーバーにアクセスできません

リモートマシンからftpサーバーを取得しようとしています。コマンドが'Logging in as anonymous'を超えていません。これは私が得ているものです。

 wget ftp://hgdownload.cse.ucsc.edu/goldenPath/hg19/chromosomes/chr1.fa.gz
--2013-09-29 22:07:53--  ftp://hgdownload.cse.ucsc.edu/goldenPath/hg19/chromosomes/chr1.fa.gz
           => ‘chr1.fa.gz’
Resolving proxy.x.y.z... *.*.*.*
Connecting to proxy.x.y.z|*.*.*.*|:3128... connected.
Logging in as anonymous ...

リモートマシンからFirefoxでサイトにアクセスしようとすると、正常に動作します。私は自分のftpプロキシをこのように設定しました

export ftp_proxy="ftp://a.user:password@proxy:3128

誰かが私がこの問題を解決するのを手伝ってもらえますか?

ありがとう

3
Ashwin

そのようにプロキシ環境を設定しようとしましたか? (ftp://の代わりにhttp://)

$ export ftp_proxy=http://a.user:[email protected]:3128

また、他の方法でも実行できます。以下の設定を含むファイル〜/ .wgetrcを作成してください。

http_proxy = http://a.user:[email protected]:3128 
ftp_proxy = http://a.user:[email protected]:3128 
proxy_user = username
proxy_password = password 
use_proxy = on
1
jamzed

この問題を解決するために、次の環境を設定しました。

#PROXY_URL=http://proxy_usr:proxy_pwd@localhost:3128
PROXY_URL=http://localhost:3128
export HTTP_PROXY=$PROXY_URL
export http_proxy=$PROXY_URL
export HTTPS_PROXY=$PROXY_URL
export https_proxy=$PROXY_URL
export FTP_PROXY=$PROXY_URL
export ftp_proxy=$PROXY_URL
export no_proxy='localhost,127.0.0.1,.yourdomain.com'
alias curl='curl -x $PROXY_URL'
git config --global http.proxy $PROXY_URL
git config --global https.proxy $PROXY_URL
1
Fè Boson

そのリンクは私のためにうまくいきました。

$:wget ftp://hgdownload.cse.ucsc.edu/goldenPath/hg19/chromosomes/chr1.fa.gz--2013-09-

23:34:58--  ftp://hgdownload.cse.ucsc.edu/goldenPath/hg19/chromosomes/chr1.fa.gz
           => `chr1.fa.gz.1'
Resolving hgdownload.cse.ucsc.edu (hgdownload.cse.ucsc.edu)... 128.114.119.163
Connecting to hgdownload.cse.ucsc.edu (hgdownload.cse.ucsc.edu)|128.114.119.163|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done.    ==> PWD ... done.
==> TYPE I ... done.  ==> CWD (1) /goldenPath/hg19/chromosomes ... done.
==> SIZE chr1.fa.gz ... 73773666
==> PASV ... done.    ==> RETR chr1.fa.gz ... done.
Length: 73773666 (70M) (unauthoritative)

 3% [=>                                                             ] 2,810,568    101K/s  eta 10m 57s

私の/etc/wgetrc

passive_ftp = on

$: wget --version

GNU Wget 1.13.4 built on linux-gnu.

+digest +https +ipv6 +iri +large-file +nls +ntlm +opie +ssl/openssl 

Wgetrc: 
    /etc/wgetrc (system)
Locale: /usr/share/locale 
Compile: gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC="/etc/wgetrc" 
    -DLOCALEDIR="/usr/share/locale" -I. -I../../src -I../lib 
    -I../../lib -D_FORTIFY_SOURCE=2 -Iyes/include -g -O2 
    -fstack-protector --param=ssp-buffer-size=4 -Wformat 
    -Wformat-security -Werror=format-security -DNO_SSLv2 
    -D_FILE_OFFSET_BITS=64 -g -Wall 
Link: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
    -Wformat-security -Werror=format-security -DNO_SSLv2 
    -D_FILE_OFFSET_BITS=64 -g -Wall -Wl,-Bsymbolic-functions 
    -Wl,-z,relro -Lyes/lib -lssl -lcrypto -lz -ldl -lz -lidn -lrt 
    ftp-opie.o openssl.o http-ntlm.o ../lib/libgnu.a

OS:Ubuntu 12.04.3 LTS 64 bit

私はDHCPルーターに接続された自宅のLANにいて、住宅用ISPへの動的IPアドレスを持つWANケーブルモデムに接続されています。

1
inetplumber