Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1013 Bytes

File metadata and controls

29 lines (23 loc) · 1013 Bytes

DNSServerAccessSettings

Properties

Name Type Description Notes
AllowedClients String[] Allowed IP's, CIDR's or ASN's
BlockKnownScanners Boolean If known scanners should be blocked
BlockedClients String[] Blocked IP's, CIDR's or ASN's
BlockedDomainRules String[] Blocked domain rules
Enabled Boolean Flag that access settings are enabled

Examples

  • Prepare the resource
$DNSServerAccessSettings = Initialize-PSAdGuardDNSDNSServerAccessSettings  -AllowedClients null `
 -BlockKnownScanners null `
 -BlockedClients null `
 -BlockedDomainRules null `
 -Enabled null
  • Convert the resource to JSON
$DNSServerAccessSettings | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]