Skip to content
Snippets Groups Projects
Verified Commit 0d224465 authored by Vojtech Myslivec's avatar Vojtech Myslivec
Browse files

dns: Split and describe sections of resolution attempts

parent dbe2918f
Branches
Tags
1 merge request!16DNS module: Update list of test domains to resolve
......@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [UNRELEASED]
### Added
- `dns` module: Mark resolution attempts with their meaning and desired results
### Changed
- `dns` module: Update list of domain names for resolution attempts
......
......@@ -50,18 +50,23 @@ run () {
done
fi
section "Resolution attempts"
# should pass
subsection "Valid domain names"
echo "Our domains with DNSSEC"
resolve repo.turris.cz
resolve nic.cz
resolve www.turris.com
echo "Third party domains without DNSSEC"
resolve duckduckgo.com
resolve en.wikipedia.org
echo "Third party domains with DNSSEC"
resolve www.debian.org
resolve www.fsf.org
echo "NSEC and wildcard domains with DNSSEC"
resolve '*.wilda.nsec.0skar.cz'
resolve '*.wild.nsec.0skar.cz'
resolve '*.wilda.0skar.cz'
......@@ -69,8 +74,11 @@ run () {
resolve www.wilda.nsec.0skar.cz
resolve www.wilda.0skar.cz
# should fail
subsection "Invalid domain names"
echo "Our domains with broken DNSSEC"
resolve www.rhybar.cz
echo "Third party domains with broken DNSSEC"
resolve '*.wilda.rhybar.0skar.cz'
resolve '*.wilda.rhybar.ecdsa.0skar.cz'
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment