Ports, sysinstall und ein ISA-Server

Heinz 65

Member
Moin zusammen.

Ich versuche grad die Portscollection über sysinstall zu beziehen. Via cvsup geht es nicht, da ich mich ein ISA-Server vom Internet trennt (nur http/ftp). Wenn http_über_proxy auswähle, meinen Proxy (den ISA-Server) eintrage und einen entsprechenden Mirror auswähle, sagt sysinstall kurz, dass es die Archive entpacken würde, dann dass diese nicht verfügbar seien, was sie aber sind. http_proxy und ftp_proxy sind gesetzt. Die Anfrage geht auch an den ISA-Server, dieser anwortet auch, aber dann ist Schweigen im Walde.....
 
Ich meinte, ob ich die gestückelten Kernelsourcen runterladen und dann mit zcat wieder zusammenfügen muss oder ob es da noch einen anderen Weg ohne cvsup oder sysinstall gäbe.

Und genau dieses überteuerte, widerspenstige Ding von MS meinte ich...
 
@Heinz65
Du kannst das ja mittels CTM machen: http://www.freebsd.org/doc/de_DE.ISO8859-1/books/handbook/ctm.html

cvsup sollte über socks5 und einen separaten Port rennen (man cvsup und nach "proxy" Ausschau halten).
Was FTP angeht, so schau mal in "man ftp" und dort suche nach "proxy".

Code:
USING CVSup WITH SOCKS

     Communication through a SOCKS proxy server is currently supported only
     under FreeBSD.  It requires a modified Modula-3 runtime system as
     provided by the lang/modula-3-lib port, and an add-on SOCKS library
     from the lang/modula-3-socks port.  Also, the SOCKS library uses
     dynamic linking techniques which require that the cvsup executable be
     fully dynamic.  The FreeBSD port net/cvsup links cvsup fully dynamic as
     required.

     To enable SOCKS operation, simply execute cvsup with the m3socks
     command provided in the lang/modula-3-socks package.  See m3socks(1)
     for further details.
     

USING ssh PORT FORWARDING
     As an alternative to SOCKS, a user behind a firewall can penetrate it
     with the TCP port forwarding provided by the Secure Shell package ssh. 
     The user must have a login account on the CVSup server host in order to
     do this.  The procedure is as follows:

     1.   Establish a connection to the server host with ssh, like this:

          ssh -f -x -L 5999:localhost:5999 serverhost sleep 60

          Replace serverhost with the hostname of the CVSup server, but type
           ocalhost' literally.  This sets up the required port forwarding. 
          You must start cvsup before the 60-second sleep finishes.  Once
          the update has begun, ssh will keep the forwarded channels open as
          long as they are needed.

     2.   Run cvsup on the local host, including these arguments on the com-
          mand line: -h localhost -P m'.
 
Zurück
Oben