It seems that RCURL does not use the same proxy settings as R (and therefore the internet2 setting does not help), you need to install them manually using the command curlSetOpt:
curl <- getCurlHandle()
curlSetOpt(.opts = list(proxy = '<address>:<port>'), curl = curl)
ans <- getURL('http://www.cnn.com', curl = curl)
source
share