commitb054119d9cAuthor: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 17 14:29:58 2013 +0000 hide Reports menu if there are no reports commitd86e670600Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 17 14:23:59 2013 +0000 add Report docs for developers commitee8351eb30Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 17 14:06:39 2013 +0000 split Plugin docs into user and developer pages commit5e4b8f3063Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 17 12:59:47 2013 +0000 add duplex report into default config commit8fd622f50cAuthor: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 17 12:56:51 2013 +0000 update query for duplex mismatch to check left and right are both not DOWN commit6d9170598cAuthor: Oliver Gorwits <oliver@cpan.org> Date: Mon Mar 11 23:10:38 2013 +0000 use the new duplex mismatch query in a template commit786977354bAuthor: Oliver Gorwits <oliver@cpan.org> Date: Mon Mar 11 22:54:21 2013 +0000 add VIEW for duplex mismatches commitf37ae8568eAuthor: Oliver Gorwits <oliver@cpan.org> Date: Mon Mar 11 22:54:01 2013 +0000 remove unecessary assign commit13af853582Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 23:40:53 2013 +0000 fixes to main app to support reports commit55a0f3d8dcAuthor: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 22:18:48 2013 +0000 also update fontawesome to match bootstrap version commit83a2c74242Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 22:07:23 2013 +0000 update bootstrap again, to include glyphicons with correct path commit25be8bfa92Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 19:27:37 2013 +0000 implement first report - duplex mismatch - as a placeholder only commit00265a9323Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 18:41:40 2013 +0000 report error on failure to load a plugin commitaf8f124bb2Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 18:37:19 2013 +0000 change id for tag in device and search tab plugins commitb818d4156fAuthor: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 18:29:57 2013 +0000 change id for tag in navbar plugins commitf513000f08Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 17:21:23 2013 +0000 implement register_report() and replace More menu with Reports menu commit4a16e3fde3Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Mar 10 17:00:44 2013 +0000 Upgraded to Twitter Bootstrap 2.3.1 - customized for 13px font 18px line
78 lines
1.6 KiB
YAML
78 lines
1.6 KiB
YAML
# This is the main configuration file for Netdisco web and daemon apps
|
|
# all the settings in this file will be loaded at Dancer's startup.
|
|
|
|
# Web app env-related settings should go to environments/$env.yml
|
|
|
|
# Your application's name
|
|
appname: "Netdisco"
|
|
|
|
# The default web layout to use for your application (located in
|
|
# views/layouts/main.tt)
|
|
layout: "main"
|
|
|
|
# when the charset is set to UTF-8 Dancer will handle for you
|
|
# all the magic of encoding and decoding. You should not care
|
|
# about unicode within your app when this setting is set (recommended).
|
|
charset: "UTF-8"
|
|
|
|
# web sessions stored on disk
|
|
session: "YAML"
|
|
|
|
# logging format
|
|
logger_format: '[%P] %L @%D> %m'
|
|
|
|
# web output template settings
|
|
template: "template_toolkit"
|
|
engines:
|
|
template_toolkit:
|
|
encoding: 'utf8'
|
|
start_tag: '[%'
|
|
end_tag: '%]'
|
|
PRE_CHOMP: 1
|
|
|
|
# netdisco stuff (can be overidden in the environment .yml)
|
|
|
|
web_plugins:
|
|
- Inventory
|
|
- Report::DuplexMismatch
|
|
- Search::Device
|
|
- Search::Node
|
|
- Search::VLAN
|
|
- Search::Port
|
|
- Device::Details
|
|
- Device::Ports
|
|
# - Device::Modules
|
|
- Device::Neighbors
|
|
- Device::Addresses
|
|
|
|
discover_no: []
|
|
discover_only: []
|
|
|
|
snmpver: 2
|
|
snmpretries: 2
|
|
snmptimeout: 1000000
|
|
|
|
mibhome: /usr/share/netdisco/mibs
|
|
mibdirs:
|
|
- cisco
|
|
- rfc
|
|
- net-snmp
|
|
|
|
community: ['public']
|
|
community_rw: ['private']
|
|
|
|
# rights control for Interactive jobs
|
|
vlanctl: 1
|
|
allow_uplinks: 0
|
|
portctl_nophones: 1
|
|
portctl_vlans: 1
|
|
|
|
# sleep time between polls of the database job queue
|
|
daemon_sleep_time: 5
|
|
|
|
# how many daemon processes
|
|
# NB one worker will always be a Queue Manager
|
|
daemon_pollers: 0
|
|
daemon_interactives: 2
|
|
|