Ask a Question related to Debian, Design and Development.

  1. #1

    Default apt-proxy

    Hi.

    I'd like to install several Debian-Boxes behind our company's firewall.
    However for every http- or ftp-access to the internet I've to
    authenticate. I got apt-get going with the following configuration, taken
    from the apt.conf:

    ftp
    {
    Proxy "ftp://firewall.company.de";

    ProxyLogin
    {
    "USER [email]anonymous@ftp.de.debian.org[/email] firewall_user";
    "PASS firewall_passwd";
    "PASS anonymous";
    }
    };

    This works for apt-get, how do I enable such a login-procedure for
    apt-proxy ? I tried to set the http_proxy and ftp_proxy variables like
    ftp_proxy=ftp://firewall_user:firewall_passwd@firewall.company.de/, but
    with no success.

    Maybe someone got an idea,

    Frank.


    --
    To UNSUBSCRIBE, email to [email]debian-user-request@lists.debian.org[/email]
    with a subject of "unsubscribe". Trouble? Contact [email]listmaster@lists.debian.org[/email]
    Frank Langanke Guest

  2. Similar Questions and Discussions

    1. IE 7 and Proxy
      In a corporate environment where multiple proxies are available. Going to internet options and entering the ip address of the proxy each time is a...
    2. PHP as web proxy ?
      Hi, I need to use a PHP app as a sort of a web proxy To be more specific: I have a mailserver with own web server and web interface. What ...
    3. Proxy and non Proxy configurations
      HEllo people im having a big trouble with Web apps Recently (6 months ago) i´ve installed the webApps on a production server, and all works very...
    4. ftp proxy in php
      hi anyone know of an FTP proxy, preferably written in PHP? i need to be able to upload via a remote server (where the proxy will run) - in order...
    5. IPA behind proxy
      Is there a way to retrieve IP address behind a proxy? Mhaxx
  3. #2

    Default Re: apt-proxy

    On Tue, Aug 05, 2003 at 11:08:56PM +0200, Frank Langanke wrote:
    > This works for apt-get, how do I enable such a login-procedure for
    > apt-proxy ? I tried to set the http_proxy and ftp_proxy variables like
    > ftp_proxy=ftp://firewall_user:firewall_passwd@firewall.company.de/, but
    > with no success.
    apt-proxy just uses wget for http/ftp, so if it works with wget it should
    work with apt-proxy. You need to place the http_proxy line at the bottom of
    apt-proxy.conf, as shown in the example distributed with the package:

    # HTTP/FTP proxy: apt-proxy uses wget to retreive files. Wget uses
    # the http_proxy and ftp_proxy environment variables, which can be set
    # like this:
    #export http_proxy=http://proxy:8080/
    #export ftp_proxy=http://proxy:8080/

    Chris


    --
    To UNSUBSCRIBE, email to [email]debian-user-request@lists.debian.org[/email]
    with a subject of "unsubscribe". Trouble? Contact [email]listmaster@lists.debian.org[/email]
    Chris Halls Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139