diff options
Diffstat (limited to 'include/config.pm')
-rw-r--r-- | include/config.pm | 25 |
1 files changed, 25 insertions, 0 deletions
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 = "<removed>"; +our $db_host = "nms.tg08.gathering.org"; +our $db_username = "<removed>"; +our $db_password = "<removed>"; + +our $zyxel_password = "<removed>"; +our $telnet_timeout = 300; + +# Tech:Net sets up at least a read-community for SNMP for use +our $ios_user = "<removed>"; +our $ios_pass = "<removed>"; + +# No longer in use as of '12 ? +#our $telegw_ip = "12.34.56.78"; +#our @telegw_wanlinks = ("gig1/1", "gig1/2"); + +1; |