"; $config['email_headers'] = "From: " . $config['email_from'] . "\r\n"; ### Which interface sections should we show? $config['int_customers'] = 1; # Enable Customer Port Parsing $config['int_transit'] = 1; # Enable Transit Types $config['int_peering'] = 1; # Enable Peering Types $config['int_core'] = 1; # Enable Core Port Types $config['int_l2tp'] = 1; # Enable L2TP Port Types $config['show_locations'] = 1; # Enable Locations on menu ### Which additional features should we enable? $config['enable_bgp'] = 1; # Enable BGP session collection and display $config['enable_syslog'] = 1; # Enable Syslog ### Interface name strings to ignore $config['bad_if'] = array("null", "virtual-", "unrouted", "eobc", "mpls", "sl0", "lp0", "faith0", "-atm layer", "-atm subif", "-shdsl", "-adsl", "-aal5", "-atm", "async", "plip", "-physical", "-signalling", "control plane", "bri", "-bearer", "ng", "bluetooth", "isatap", "ras", "qos", "miniport"); ### Mountpoints to ignore $config['ignore_mount'] = array("/kern", "/mnt/cdrom", "/dev", "/dev/pts"); ### entPhysicalVendorType rewrites $entPhysicalVendorTypes = array ( 'cevC7xxxIo1feTxIsl' => 'C7200-IO-FE-MII', 'cevChassis7140Dualfe' => 'C7140-2FE', 'cevChassis7204' => "C7204", 'cevChassis7204Vxr' => 'C7204VXR', 'cevChassis7206' => 'C7206', 'cevChassis7206Vxr' => 'C7206VXR', 'cevCpu7200Npe200' => 'NPE-200', 'cevCpu7200Npe225' => 'NPE-225', 'cevCpu7200Npe300' => 'NPE-300', 'cevCpu7200Npe400' => 'NPE-400', 'cevCpu7200Npeg1' => 'NPE-G1', 'cevCpu7200Npeg2' => 'NPE-G2', 'cevPa1feTxIsl' => 'PA-FE-TX-ISL', 'cevPa2feTxI82543' => 'PA-2FE-TX', 'cevPa8e' => 'PA-8E', 'cevPaA8tX21' => 'PA-8T-X21', 'cevMGBIC1000BaseLX' => '1000BaseLX GBIC', 'cevPort10GigBaseLR' => '10GigBaseLR'); ### Style Options $list_colour_a = "#ffffff"; $list_colour_b = "#eeeeee"; $warn_colour_a = "#ffeeee"; $warn_colour_b = "#ffcccc"; ############################## # No changes below this line # ############################## $config['version'] = "0.3.2-pre"; ### Connect to database if (!@mysql_connect($config['db_host'], $config['db_user'], $config['db_pass'])) { echo "

MySQL Error

"; die; } mysql_select_db($config['db_name']); # Set some times needed by loads of scripts (it's dynamic, so we do it here!) $now = time(); $day = time() - (24 * 60 * 60); $twoday = time() - (2 * 24 * 60 * 60); $week = time() - (7 * 24 * 60 * 60); $month = time() - (31 * 24 * 60 * 60); $year = time() - (365 * 24 * 60 * 60); ?>