The higher-ups at our institution (MD Anderson Cancer Center) have made the decision to disable Internet access on our computing cluster, and only allow incoming access to specific IP addresses.
In order to install Bioconductor packages, we need a list of stable IP addresses for Bioconductor that we can whitelist. However, the IP address for bioconductor.org
does not appear to be stable (currently 13.33.112.5
, pointing to an Amazon server).
This question was asked before, but the provided answer is no longer applicable, as the recommended stable IP address is no longer hosting a Bioconductor mirror (140.107.3.20
; Fred Hutch).
I suppose one solution is to whitelist all of AWS's IP ranges... but this might not be acceptable to the higher-ups.
Does anyone have other solutions to this firewall problem?
EDIT:
As Martin indicates below, master.bioconductor.org
has a stable IP of 52.71.54.154
and is serving packages.
Perhaps options(BioC_mirror="52.71.54.154"); biocLite("DNAcopy")
will work once 52.71.54.154
is whitelisted on our network.
Will it be acceptable to Bioconductor for us to bypass load balancing and use 52.71.54.154
as the sole IP address for downloading packages on our Internet-disabled computing cluster?
Unfortunately, our new cluster will not have a head node with Internet access; the admins will have temporary Internet access on special nodes until a unspecified date. The cluster will be a dead zone once Information Security is done with it...
I'll look into mirroring the Bioconductor repository, but space is very limited for both my workstation and my allocation on the cluster.
I'll ask request that 52.71.54.154 be whitelisted... hopefully this will solve our problem.
I mistakenly thought that
bioconductor.org
andmaster.bioconductor.org
were the same.