Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
GDNSD-PLUGIN-STATIC(8)		      gdnsd		  GDNSD-PLUGIN-STATIC(8)

NAME
     gdnsd-plugin-static - gdnsd static plugin

SYNOPSIS
     Example static resources config for resolution:

       plugins => {
	 static => {
	   foo => 192.0.2.1
	   bar => 2001:db8::1
	   baz => something.example.org.
	 }
       }

     Example static service_types config for monitoring:

       service_types => {
	 my_static_mon => {
	   plugin => static,
	   ttl => 123,
	   state => UP,
	   # ... other generic service_type params (ignored)
	 }
       }

     Zonefile RRs using static plugin resolution, in zone example.com:

       foo 300 DYNA static!foo
       bar 300 DYNC static!bar
       baz 300 DYNC static!baz

DESCRIPTION
     gdnsd-plugin-static is a combined monitoring and resolution plugin that re-
     turns static data.  It is generally useless in real scenarios, and mostly
     serves only as an example/test plugin.

     For resolution, the configuration is a simple key/value hash where the keys
     are resource names and the values can be a single IP address (v4 or v6) or
     a domainname.  The domainname form can only be used with "DYNC", while the
     address form can be used with either "DYNA" or "DYNC".

     For monitoring configuration as a service_type, the only two useful parame-
     ters are "ttl" and "state", which set a fixed TTL and state for this static
     monitor result.  The other standard monitoring parameters (e.g. interval,
     timeout) are ignored, as static sets its states once at startup and never
     runs again.

SEE ALSO
     gdnsd.config(5), gdnsd.zonefile(5), gdnsd(8)

     The gdnsd manual.

COPYRIGHT AND LICENSE
     Copyright (c) 2014 Brandon L Black <blblack@gmail.com>

     This file is part of gdnsd.

     gdnsd is free software: you can redistribute it and/or modify it under the
     terms of the GNU General Public License as published by the Free Software
     Foundation, either version 3 of the License, or (at your option) any later
     version.

     gdnsd is distributed in the hope that it will be useful, but WITHOUT ANY
     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
     FOR A PARTICULAR PURPOSE.	See the GNU General Public License for more de-
     tails.

     You should have received a copy of the GNU General Public License along
     with gdnsd.  If not, see <http://www.gnu.org/licenses/>.

gdnsd 3.8.0			   2026-08-01		  GDNSD-PLUGIN-STATIC(8)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=gdnsd-plugin-static&sektion=8&manpath=FreeBSD+Ports+15.1.quarterly>

home | help