From 2a0c0a3dbbdf7fa5040953c0b0d88ad6f62c011e Mon Sep 17 00:00:00 2001 From: Joachim Tingvold Date: Sun, 6 Apr 2014 03:11:04 +0200 Subject: Initial commit. Source; TG13-goodiebag. --- include/config.pm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 include/config.pm (limited to 'include/config.pm') diff --git a/include/config.pm b/include/config.pm new file mode 100644 index 0000000..17f2c68 --- /dev/null +++ b/include/config.pm @@ -0,0 +1,25 @@ +#! /usr/bin/perl +use strict; +use warnings; +use DBI; +package nms::config; + +# Don't change this file for your local setup; use config.local.pm instead. + +our $db_name = ""; +our $db_host = "nms.tg08.gathering.org"; +our $db_username = ""; +our $db_password = ""; + +our $zyxel_password = ""; +our $telnet_timeout = 300; + +# Tech:Net sets up at least a read-community for SNMP for use +our $ios_user = ""; +our $ios_pass = ""; + +# No longer in use as of '12 ? +#our $telegw_ip = "12.34.56.78"; +#our @telegw_wanlinks = ("gig1/1", "gig1/2"); + +1; -- cgit v1.2.3