Squashed commit of the following: commit39b438aa4bAuthor: Oliver Gorwits <oliver@cpan.org> Date: Sat May 6 16:40:11 2017 +0100 add release notes commitca4ea90d35Author: Oliver Gorwits <oliver@cpan.org> Date: Sat May 6 16:32:06 2017 +0100 update distmeta commit4e35b904b0Author: Oliver Gorwits <oliver@cpan.org> Date: Sat May 6 16:30:22 2017 +0100 rename files from Daemon to Backend commit86a605ba68Author: Oliver Gorwits <oliver@cpan.org> Date: Sat May 6 16:26:43 2017 +0100 rename daemon to backend in code commitffe8fc180fAuthor: Oliver Gorwits <oliver@cpan.org> Date: Sat May 6 16:15:57 2017 +0100 add daemon files which exec to backend equivalents commit53e041594eAuthor: Oliver Gorwits <oliver@cpan.org> Date: Sat May 6 15:32:49 2017 +0100 rename netdisco-daemon to netdisco-backend
84 lines
2.2 KiB
YAML
84 lines
2.2 KiB
YAML
#
|
|
# NETDISCO 2 CONFIGURATION FILE
|
|
#
|
|
# Settings in this file override share/config.yml
|
|
# See App::Netdisco::Manual::Configuration for more info.
|
|
|
|
# ------------------
|
|
# ESSENTIAL SETTINGS
|
|
# ------------------
|
|
|
|
database:
|
|
name: 'netdisco'
|
|
user: 'changeme'
|
|
pass: 'changeme'
|
|
#host: 'localhost'
|
|
|
|
# --------------------
|
|
# RECOMMENDED SETTINGS
|
|
# --------------------
|
|
|
|
# set to false if you MUST maintain backwards compatibility
|
|
# with Netdisco 1.x web frontend.
|
|
# `````````````````````````````````````````````````````````
|
|
safe_password_store: true
|
|
|
|
# will be stripped from fqdn when displayed in the web UI
|
|
# also, do not forget the leading dot.
|
|
# ```````````````````````````````````````````````````````
|
|
#domain_suffix: '.example.com'
|
|
|
|
# SNMP community string(s)
|
|
# ````````````````````````
|
|
snmp_auth:
|
|
- tag: 'default_v2_readonly'
|
|
community: 'public'
|
|
read: true
|
|
write: false
|
|
# - tag: 'default_v2_for_write'
|
|
# community: 'private'
|
|
# read: false
|
|
# write: true
|
|
|
|
# this is the schedule for automatically keeping netdisco up-to-date
|
|
# ``````````````````````````````````````````````````````````````````
|
|
#schedule:
|
|
# discoverall:
|
|
# when: '5 7 * * *'
|
|
# macwalk:
|
|
# when:
|
|
# min: 20
|
|
# arpwalk:
|
|
# when:
|
|
# min: 50
|
|
# nbtwalk:
|
|
# when: '0 8,13,21 * * *'
|
|
# expire:
|
|
# when: '20 23 * * *'
|
|
|
|
# do not discover IP Phones or Wireless Access Points.
|
|
# usually these are visible as device neighbors but don't support
|
|
# SNMP, which just clogs up the job queue.
|
|
# ```````````````````````````````````````````````````````````````
|
|
discover_no_type:
|
|
- '(?i)phone'
|
|
- '(?i)(?:wap|wireless)'
|
|
|
|
# number of SNMP workers to run in parallel (in netdisco-backend).
|
|
# the default is twice the number of CPU cores. increase this if
|
|
# your system has few cores and the schedule is taking too long.
|
|
# ```````````````````````````````````````````````````````````````
|
|
#workers:
|
|
# tasks: 'AUTO * 2'
|
|
|
|
# number of parallel DNS queries for node names
|
|
# `````````````````````````````````````````````
|
|
#dns:
|
|
# max_outstanding: 50
|
|
|
|
# set to true to globally disable authentication/login.
|
|
# create a user called "guest" if you want to assign port/admin rights.
|
|
# `````````````````````````````````````````````````````````````````````
|
|
#no_auth: false
|
|
|