Download server [Request Access]

CSC has comissioned a new server, download.iitd.ac.in, to facilitate research downloads through non-standard ports. Internet services can be accessed on all ports from this machine and all accesses and downloads will be logged. Users can request for access to this service here. Requests from students and contract staff will need to be approved by their supervisors.

  1. Once access is approved, IIT Delhi kerberos credentials are required for authentication over ssh.
  2. The server has Firefox installed and has about 200GB of temporary storage in /var/misc and about 2 TB of temporary storage in /download. Please delete any temporary files that you may download to this area as soon as you copy them elsewhere. Use ssh -Y userid@download.iitd.ac.in to enable X forwarding, where userid is the kerberos id.
  3. Alternatively, you can use ssh tunnel through this machine to download directly on your desktop/laptop. Please do a internet search on ''ssh tunnel'' for a howto/tutorial. Here are some basic commands to set up ssh tunnels.
    1. ssh -L 7777:www.google.com:80 download.iitd.ac.in -N will map localhost:7777 to www.google.com:80. Pointing your browser to http://localhost:7777 will redirect to www.google.com.
    2. ssh -L 7778:cli.globusonline.org:22 download.iitd.ac.in -N will map localhost:7778 to cli.globusonline.org:22. The command ssh localhost -p 7778 from another terminal will take you to the ssh port of cli.globusonline.org
      File transfers via scp will also work over this tunnel e.g. scp -P7778 test.txt localhost: will transfer file "test.txt" to cli.globusonline.org
  4. You can set up tunnels to any port using similar commands.