Control Route53 DNS - CLI53 Command | Online Free DevTools by Hexmos
Control Route53 DNS zones with CLI53. Easily manage DNS records, create domains, and export zone files. Free online tool, no registration required.
cli53
Command line tool for Amazon Route 53. More information: https://github.com/barnybug/cli53.
- List domains:
cli53 list
- Create a domain:
cli53 create {{example.com}} --comment "{{comment}}"
- Export a bind zone file to
stdout:
cli53 export {{example.com}}
- Create a
wwwsubdomain pointing to a relative record in the same zone:
cli53 {{[rc|rrcreate]}} {{example.com}} {{'www 300 CNAME lb'}}
- Create a
wwwsubdomain pointing to an external address (must end with a dot):
cli53 {{[rc|rrcreate]}} {{example.com}} {{'www 300 CNAME lb.example.com.'}}
- Create a
wwwsubdomain pointing to an IP address:
cli53 {{[rc|rrcreate]}} {{example.com}} {{'www 300 A 150.130.110.1'}}
- Replace a
wwwsubdomain pointing to a different IP:
cli53 {{[rc|rrcreate]}} --replace {{'www 300 A 150.130.110.2'}}
- Delete a record A:
cli53 {{[rd|rrdelete]}} {{example.com}} {{www}} {{A}}