Loading controls...
Control: SOA refresh value should be between 1200 and 43200 seconds (12 minutes to 12 hours)
Description
Number of seconds after which secondary name servers should query the master for the SOA record, to detect zone changes. It is recommended that the value should be between 20 minutes to 12 hours.
Usage
Run the control in your terminal:
steampipe check net_insights.control.dns_soa_refresh_value_check
Snapshot and share results via Steampipe Cloud:
steampipe loginsteampipe check --share net_insights.control.dns_soa_refresh_value_check
Plugins & Tables
Params
Args | Name | Default | Description | Variable |
---|---|---|---|---|
$1 | domain_names |
| DNS domain names. |
SQL
select domain as resource, case when refresh < 1200 or refresh > 43200 then 'alarm' else 'ok' end as status, domain || ' SOA refresh value is ' || refresh || ' second(s).' as reasonfrom net_dns_recordwhere domain in ( select jsonb_array_elements_text(to_jsonb($1 :: text [ ])) ) and type = 'SOA';