Назад | Перейти на главную страницу

yum HTTP Error 403 - Запрещено за NAT на AWS

У меня были странные проблемы при попытке запустить yum update на сервере centos 7 на AWS за NAT экземпляра.

Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=genclo error was
14: HTTP Error 403 - Forbidden


One of the configured repositories failed (Unknown),
and yum doesn't have enough cached data to continue. At this point the only
safe thing yum can do is fail. There are a few ways to work "fix" this:

 1. Contact the upstream for the repository and get them to fix the problem.

 2. Reconfigure the baseurl/etc. for the repository, to point to a working
    upstream. This is most often useful if you are using a newer
    distribution release than is supported by the repository (and the
    packages for the previous distribution release still work).

 3. Disable the repository, so yum won't use it by default. Yum will then
    just ignore the repository until you permanently enable it again or use
    --enablerepo for temporary usage:

        yum-config-manager --disable <repoid>

 4. Configure the failing repository to be skipped, if it is unavailable.
    Note that yum will try to contact the repo. when it runs most commands,
    so will have to try and fail each time (and thus. yum will be be much
    slower). If it is a very temporary problem though, this is often a nice
    compromise:

        yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true

Cannot find a valid baseurl for repo: base/7/x86_64 

Теперь, пытаясь использовать curl из экземпляра, который я использую как экземпляр NAT, я получаю правильный ответ:

curl -vvv 'http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=genclo

http://mirror.strencom.net/centos/7.2.1511/os/x86_64/
http://ftp.heanet.ie/pub/centos/7.2.1511/os/x86_64/
http://www.mirrorservice.org/sites/mirror.centos.org/7.2.1511/os/x86_64/
http://mirrors.ukfast.co.uk/sites/ftp.centos.org/7.2.1511/os/x86_64/
http://anorien.csc.warwick.ac.uk/mirrors/centos/7.2.1511/os/x86_64/
http://mirrors.vooservers.com/centos/7.2.1511/os/x86_64/
http://centos.serverspace.co.uk/centos/7.2.1511/os/x86_64/
http://mirror.ox.ac.uk/sites/mirror.centos.org/7.2.1511/os/x86_64/
http://mirrors.melbourne.co.uk/sites/ftp.centos.org/centos/7.2.1511/os/x86_64/
 http://mirror.vorboss.net/centos/7.2.1511/os/x86_64/ 

Дата правильная, поэтому я очень запутался. И я начинаю рассматривать возможность перехода на AWS Linux.

Спасибо за помощь :)

ОБНОВЛЕНИЕ: я использовал EIP для того же экземпляра, и yum работает, поэтому я предполагаю, что это проблема с NAT. Я до сих пор не понимаю почему.

Ошибка 403 представляет собой код ответа http и не имеет отношения к проблемам маршрутизации IP (уровня 3) / NAT. Возможные причины:

  1. Что-то не так в конфигурации вашего экземпляра NAT
  2. Вы используете обратный прокси-сервер уровня 7 (проверьте переменные прокси, yum.conf и т. Д.)
  3. Вы используете прозрачный прокси-сервер
  4. mirrorlist.centos.org очень тебя не любит :)

Чтобы доступ в Интернет работал за экземпляром NAT, ваш маршрут по умолчанию в ваших частных подсетях должен быть внутренний ENI вашего экземпляра NAT - см. документы.

Кроме того, ваш экземпляр NAT EC2 должен иметь Проверка источника / назначения отключен - см. Вот. Я также хотел бы убедиться, что вы следовали и поняли Документация Amazon при использовании экземпляра NAT EC2.

Для простоты использования я бы рекомендовал использовать AWS NAT шлюз, который обеспечивает ту же функциональность, что и экземпляр EC2, без необходимости настраивать брандмауэр ОС.