FTPによるアクセスを可能にするDebian Secure APTリポジトリはありますか?

FTPによるアクセスを可能にするDebian Secure APTリポジトリはありますか?

Debian のセキュリティアップデートが必要な場合は、次の行を追加します。/etc/apt/sources.list:

deb http://security.debian.org <codename>/updates main

httpこれを許可するリポジトリはありますかftp?私がこれを言うのは、他の一般的なDebian APTイメージがこれを可能にするのですが、ここで同じことを行うとうまくいかないからです。つまり、次の行を使用するとエラーが発生します。

deb ftp://security.debian.org <codename>/updates main

ftpの利点の1つは、通常(または私の限られた経験によると)プロキシの後ろに配置されないことです。

答え1

うん、巧妙に呼ばれたsecurity.debian.org。次の行を次の項目に追加します/etc/apt/sources.list

deb ftp://security.debian.org/debian-security <codename>/updates main

security.debian.orgデザインには公式のミラーはありません。参照してください。Debianセキュリティアップデートに別々のパッケージリポジトリがあるのはなぜですか?

強制HTTPプロキシを使用する多くの場所では、FTPを完全にブロックします。したがって、FTPを使用することが有利な状況はあまりありません。

答え2

職場では、エンタープライズプロキシの背後にあるVirtualBoxにDebianがあり、HTTPが正常に動作します。 security.debian.orgがFTPを許可しているかどうかはわかりませんが、本当にわかりません。信じる私の他のソースのいくつか安全直す。

注:プロキシを使用するように適切に構成しました。

編集:あなたはここにプロキシを持っていないので、FTPをテストできます。

$ ftp security.debian.org
Connected to security.debian.org.
220 security.debian.org FTP server (vsftpd)
Name (security.debian.org:d4rio): anonymous
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
200 PORT command successful. Consider using PASV.
150 Here comes the directory listing.
drwxrwsr-x    6 1176     1176         4096 Mar 18 17:54 debian-security
226 Directory send OK.
ftp> cd debian-security
250 Directory successfully changed.
ftp> ls
200 PORT command successful. Consider using PASV.
150 Here comes the directory listing.
-rw-rw-r--    1 1176     1176          183 Aug 16  2000 README.security
drwxrwsr-x    5 1176     1176         4096 Feb 05 15:37 dists
drwxrwsr-x    2 1176     1176         4096 Feb 12  2009 indices
drwxrwsr-x    3 1176     1176         4096 Nov 20  2002 pool
drwxrwsr-x    4 1176     1176         4096 May 13  2008 project
226 Directory send OK.
ftp>

したがって、security.debian.orgはftpを介した匿名ログインを許可します。

関連情報