Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ### Database config
- $config['db_host'] = 'localhost';
- $config['db_port'] = '3306';
- $config['db_user'] = 'librenms';
- $config['db_pass'] = 'Redacted';
- $config['db_name'] = 'librenms';
- $config['db_socket'] = '';
- $config['rrdtool_version'] = '1.7.2';
- $config['fping'] = '/usr/bin/fping';
- $config['force_ip_to_sysname'] = true;
- // This is the user LibreNMS will run as
- //Please ensure this user is created and has the correct permissions to your install
- $config['user'] = 'librenms';
- ### Locations - it is recommended to keep the default
- #$config['install_dir'] = "/opt/librenms";
- ### This should *only* be set if you want to *force* a particular hostname/port
- ### It will prevent the web interface being usable form any other hostname
- #$config['base_url'] = "http://librenms.company.com";
- ### Enable this to use rrdcached. Be sure rrd_dir is within the rrdcached dir
- ### and that your web server has permission to talk to rrdcached.
- $config['rrdcached'] = "unix:/run/rrdcached.sock";
- ### Default community
- $config['snmp']['community'] = array("public");
- ### Authentication Model
- $config['auth_mechanism'] = "mysql"; # default, other options: ldap, http-auth
- #$config['http_auth_guest'] = "guest"; # remember to configure this user if you use http-auth
- $config['allow_unauth_graphs'] = true;
- ### List of RFC1918 networks to allow scanning-based discovery
- #$config['nets'][] = "10.0.0.0/8";
- #$config['nets'][] = "172.16.0.0/12";
- #$config['nets'][] = "192.168.0.0/16";
- # Update configuration
- $config['update_channel'] = 'release'; # uncomment to follow the monthly release channel
- #$config['update'] = 0; # uncomment to completely disable updates
- $config['page_refresh'] = "60";
- #Clear Logs older than x amount of days
- $config['syslog_purge'] = 1;
- $config['device_perf_purge'] = 14;
- # Map Configuration
- $config['map']['engine'] = "leaflet";
- $config['leaflet']['default_lat'] = "38.5816";
- $config['leaflet']['default_lng'] = "-121.4944";
- $config['leaflet']['default_zoom'] = 6;
- $config['geoloc']['engine'] = "google";
- $config['geoloc']['api_key'] = "Redacted";
- # Disable Unneeded Pollers to Improve Performance
- $config['poller_modules']['unix-agent'] = true;
- $config['poller_modules']['os'] = true;
- $config['poller_modules']['ipmi'] = true;
- $config['poller_modules']['sensors'] = true;
- $config['poller_modules']['processors'] = true;
- $config['poller_modules']['mempools'] = true;
- $config['poller_modules']['storage'] = true;
- $config['poller_modules']['netstats'] = true;
- $config['poller_modules']['hr-mib'] = true;
- $config['poller_modules']['ucd-mib'] = true;
- $config['poller_modules']['ipSystemStats'] = true;
- $config['poller_modules']['ports'] = true;
- $config['poller_modules']['nac'] = false;
- $config['poller_modules']['bgp-peers'] = true;
- $config['poller_modules']['junose-atm-vp'] = false;
- $config['poller_modules']['toner'] = false;
- $config['poller_modules']['ucd-diskio'] = true;
- $config['poller_modules']['wireless'] = true;
- $config['poller_modules']['ospf'] = false;
- $config['poller_modules']['cisco-ipsec-flow-monitor'] = false;
- $config['poller_modules']['cisco-remote-access-monitor'] = false;
- $config['poller_modules']['cisco-cef'] = false;
- $config['poller_modules']['cisco-sla'] = false;
- $config['poller_modules']['cisco-mac-accounting'] = false;
- $config['poller_modules']['cipsec-tunnels'] = false;
- $config['poller_modules']['cisco-ace-loadbalancer'] = false;
- $config['poller_modules']['cisco-ace-serverfarms'] = false;
- $config['poller_modules']['cisco-asa-firewall'] = false;
- $config['poller_modules']['cisco-voice'] = false;
- $config['poller_modules']['cisco-cbqos'] = false;
- $config['poller_modules']['cisco-otv'] = false;
- $config['poller_modules']['cisco-vpdn'] = false;
- $config['poller_modules']['netscaler-vsvr'] = false;
- $config['poller_modules']['aruba-controller'] = false;
- $config['poller_modules']['entity-physical'] = true;
- $config['poller_modules']['entity-state'] = false;
- $config['poller_modules']['applications'] = true;
- $config['poller_modules']['availability'] = true;
- $config['poller_modules']['stp'] = true;
- $config['poller_modules']['ntp'] = true;
- $config['poller_modules']['services'] = true;
- $config['poller_modules']['loadbalancers'] = false;
- $config['poller_modules']['mef'] = false;
Add Comment
Please, Sign In to add comment