becklyn / domain-checker
Checks domains and their A records.
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
Type:cli
Requires
- php: ^7.4
- khill/php-duration: ^1.0
- symfony/config: ^5.0
- symfony/console: ^5.0
- symfony/yaml: ^5.0
Requires (Dev)
- roave/security-advisories: dev-master
README
A simple CLI tool to check where A records of a given domain list point to. Can also validate, that they point to the correct IP.
Installation
composer global require becklyn/domain-checker
Usage
Call the CLI command in the directory containing the config.
# use with default filename "domains.yaml" domain-checker # or use with other file name domain-checker check other-file.yaml
Config File
The config file defines the domains to check and optionally the desired target IP:
ip: 127.0.0.1 # optional domains: - example.org - sub.example.com
If only a domain without subdomain is given, both the main domain and the "www." subdomain are automatically added.
So in the example config, the following domains will be checked:
example.org
www.example.org
sub.example.com