Differences between revisions 13 and 14
Revision 13 as of 2023-11-11 08:15:49
Size: 4354
Comment:
Revision 14 as of 2023-11-11 08:22:54
Size: 5108
Comment:
Deletions are marked like this. Additions are marked like this.
Line 15: Line 15:
== record types == == record types (Bard) ==
Line 41: Line 41:

Route 53 で設定する NS レコードには、次の制限があります。(間違いがある。)
{{{
    最大 10 個の NS レコードを指定できます。
    各 NS レコードは、10 個の文字以内でなければなりません。
    各 NS レコードは、完全修飾ドメイン名でなければなりません。
}}}
さらに、NS レコードを設定するには、次の条件を満たす必要があります。
{{{
    ドメインを登録しているレジストラが、Route 53 を DNS プロバイダとしてサポートしている必要があります。
    ドメインのネームサーバーとして、Route 53 が提供する NS レコードを指定する必要があります。
}}}

1. DNS/route53

Amazon Route 53 料金表 https://aws.amazon.com/jp/route53/pricing/

https://www.nic.ad.jp/ja/materials/iw/2014/proceedings/d1/d1-imai.pdf

Amazon Route 53 を使用したドメイン名の登録 https://docs.aws.amazon.com/ja_jp/Route53/latest/DeveloperGuide/registrar.html

新しいドメイン名(URL が http://example.com であれば、example.com という部分)を取得する場合は、ドメイン名を Amazon Route 53 に登録することができます。

また、既存のドメインの登録を他のレジストラから Route 53 に移管することも、逆に、Route 53 に登録したドメインの登録を別のレジストラに移管することもできます。

1.1. record types (Bard)

Amazon Route 53 supports the following DNS record types:

    A (address record): Maps a domain name to an IPv4 address.
    AAAA (IPv6 address record): Maps a domain name to an IPv6 address.
    CNAME (canonical name record): An alias record that redirects traffic to another domain name.
    CAA (certification authority authorization): Specifies which certificate authorities (CAs) are authorized to issue certificates for the domain name.
    MX (mail exchange record): Specifies the mail servers that are responsible for handling email for the domain name.
    NAPTR (name authority pointer record): Specifies the servers that are responsible for handling specific services for the domain name (such as SIP or XMPP).
    NS (name server record): Specifies the servers that are responsible for managing the DNS records for the domain name.
    PTR (pointer record): Maps an IP address to a domain name.
    SOA (start of authority record): Specifies the authoritative DNS server for the domain name and other administrative information.
    SPF (sender policy framework): Specifies which servers are authorized to send email on behalf of the domain name.
    SRV (service locator): Specifies the servers that are hosting specific services for the domain name (such as HTTPS or FTP).
    TXT (text record): Stores arbitrary text data for the domain name.

Route 53 also supports alias records, which are an Amazon Route 53-specific extension to DNS. Alias records can be used to route traffic to selected AWS resources, such as Amazon Elastic Load Balancing load balancers, Amazon CloudFront distributions, AWS Elastic Beanstalk environments, API Gateways, VPC interface endpoints, and Amazon S3 buckets that are configured as websites.

To create a record in a Route 53 hosted zone, you can use the Route 53 console, the AWS CLI, or the AWS SDKs.

Sources
    github.com/MediaComem/comem-archidep    subject to license (MIT)
    stackoverflow.com/questions/59742270/how-to-have-angular-app-in-aws-s3-bucket-make-api-calls-to-service-in-aws-elasti
    aws.amazon.com/route53/faqs/#:~:text=Learn%20more%20about%20Amazon%20EC2,CAA%20(certification%20authority%20authorization)

Route 53 で設定する NS レコードには、次の制限があります。(間違いがある。)

    最大 10 個の NS レコードを指定できます。
    各 NS レコードは、10 個の文字以内でなければなりません。
    各 NS レコードは、完全修飾ドメイン名でなければなりません。

さらに、NS レコードを設定するには、次の条件を満たす必要があります。

    ドメインを登録しているレジストラが、Route 53 を DNS プロバイダとしてサポートしている必要があります。
    ドメインのネームサーバーとして、Route 53 が提供する NS レコードを指定する必要があります。

1.2. 警告

パブリックホストゾーンの削除 https://docs.aws.amazon.com/ja_jp/Route53/latest/DeveloperGuide/DeleteHostedZone.html

重要

ホストゾーンを削除した場合、復元することはできません。新しいホストゾーンを作成して、ドメイン登録のネームサーバーを更新する必要があります。更新が有効になるには、最大 48 時間かかることがあります。

さらに、ホストゾーンを削除すると、他のユーザーがお客様のドメイン名を使用してドメインをハイジャックし、
自分のリソースにトラフィックをルーティングする可能性があります。 

1.3. サブドメインの委任先DNSサーバーとして利用

https://blog.serverworks.co.jp/Route53_SubDomain

やさしいRoute 53 DNSサブドメインの委任 12月 25, 2019 https://oji-cloud.net/2019/12/25/post-3879/

Route53にサブドメインを登録する手順 https://qiita.com/Ibuki-Matsumoto/items/43adcc34c28f61e05d57


www ゾーン NS への委譲は危険です。

1.4. NXDOMAIN

/is.aist.go.jp

1.5. FAQ

https://aws.amazon.com/jp/route53/faqs/

https://aws.amazon.com/th/route53/faqs/?nc1=f_ls

MoinQ: DNS/route53 (last edited 2023-11-11 08:22:54 by ToshinoriMaeno)