2008-04-24 Sancho Lerena <slerena@artica.es>

* pandoradb_data.sql: Added several modules by Guguevi.

        * operation/events/events_rss.php: Added RSS events page, contributed
        by guruevi.

        * manage_network_components_form.php, 
        manage_network_templates_form.php,
        modules/manage_network_components.php: Combos are classified by name.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@818 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2008-04-23 20:51:37 +00:00
parent cb578d25b6
commit be47f5c015
6 changed files with 187 additions and 8 deletions

View File

@ -1,3 +1,14 @@
2008-04-24 Sancho Lerena <slerena@artica.es>
* pandoradb_data.sql: Added several modules by Guguevi.
* operation/events/events_rss.php: Added RSS events page, contributed
by guruevi.
* manage_network_components_form.php,
manage_network_templates_form.php,
modules/manage_network_components.php: Combos are classified by name.
2008-04-23 Sancho Lerena <slerena@artica.es>
* include/functions_reporting_pdf.php: New functions for PDF reporting.

View File

@ -176,7 +176,7 @@ if ($ncgroup != 0){
echo "<option value='$ncgroup'>".give_network_component_group_name($ncgroup)."</option>";
}
echo "<option value='0'>".$lang_label["all"]."</option>";
$sql1 = "SELECT * FROM tnetwork_component_group WHERE id_sg != '$ncgroup'";
$sql1 = "SELECT * FROM tnetwork_component_group WHERE id_sg != '$ncgroup' ORDER BY name";
$result = mysql_query($sql1);
while ($row = mysql_fetch_array ($result))
echo "<option value='" . $row["id_sg"] . "'>". give_network_component_group_name ($row["id_sg"])."</option>";
@ -186,9 +186,9 @@ echo "<noscript><input name='uptbutton' type='submit' class='sub' value='".$lang
echo "</td></form></table><br>";
if ($ncgroup != 0)
$sql1 = "SELECT * FROM tnetwork_component WHERE id_group = $ncgroup";
$sql1 = "SELECT * FROM tnetwork_component WHERE id_group = $ncgroup ORDER BY name";
else
$sql1 = "SELECT * FROM tnetwork_component ORDER BY id_group";
$sql1 = "SELECT * FROM tnetwork_component ORDER BY id_group,name";
$result = mysql_query ($sql1);
if ( $row = mysql_num_rows ($result)){

View File

@ -148,7 +148,7 @@ if (give_acl($id_user, 0, "PM")!=1) {
if (isset($_GET["update"])){ // Edit mode
$id_nc = entrada_limpia ($_GET["id_nc"]);
$sql1 = "SELECT * FROM tnetwork_component where id_nc = $id_nc";
$sql1 = "SELECT * FROM tnetwork_component where id_nc = $id_nc ORDER BY name";
$result=mysql_query($sql1);
$row=mysql_fetch_array($result);
$name = $row["name"];

View File

@ -64,7 +64,8 @@ if (isset($_GET["refresh_module"])){ //Refresh module info from group combo
if (isset($_GET["id_np"])){ // Read module data
$id_np = $_GET["id_np"];
if ($id_np != -1){
$sql1="SELECT * FROM tnetwork_profile WHERE id_np = $id_np";
$sql1="SELECT * FROM tnetwork_profile WHERE id_np = $id_np ORDER BY
name";
$result=mysql_query($sql1);
$row=mysql_fetch_array($result);
$description = $row["description"];
@ -143,7 +144,7 @@ if ($id_np != -1){
while ( $row = mysql_fetch_array($result)) {
$id_nc = $row["id_nc"];
$id_npc = $row["id_npc"];
$sql2 = "SELECT * FROM tnetwork_component where id_nc = $id_nc";
$sql2 = "SELECT * FROM tnetwork_component where id_nc = $id_nc ORDER BY name";
$result2 = mysql_query ($sql2);
if ($row2=mysql_fetch_array($result2)){
if ($color == 1){
@ -191,7 +192,7 @@ if ($id_np != -1){
echo "<table class='databox'>";
echo '<tr><td>';
echo '<form name="add_module" method="post" action="index.php?sec=gmodules&sec2=godmode/modules/manage_network_templates_form&id_np='.$id_np.'&add_module=1">';
$sql1 = "SELECT * FROM tnetwork_component ORDER BY id_group";
$sql1 = "SELECT * FROM tnetwork_component ORDER BY id_group, name";
$result = mysql_query ($sql1);
echo "<select name='component'>";
while ($row = mysql_fetch_array($result)) {

View File

@ -0,0 +1,76 @@
<?php
// Pandora FMS - the Free monitoring system
// ========================================
// Copyright (c) 2004-2007 Sancho Lerena, slerena@openideas.info
// Copyright (c) 2005-2007 Artica Soluciones Tecnologicas
// Copyright (c) 2008 Evi Vanoost, vanooste@rcbi.rochester.edu
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation version 2
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
error_reporting(E_ALL);
require "../../include/config.php";
require "../../include/functions.php";
require "../../include/functions_db.php";
$constraints = "";
$sql="SELECT `tevento`.`id_evento` AS event_id, `tagente`.`nombre` AS agent_name, `tevento`.`id_usuario` AS validated_by , `tevento`.`estado` AS validated, `tevento`.`evento` AS event_descr , `tevento`.`utimestamp` AS unix_timestamp, `tgrupo`.`nombre` AS group_name, `tgrupo`.`icon` AS group_icon
FROM tevento, tagente, tgrupo
WHERE `tevento`.`id_agente` = `tagente`.`id_agente` AND `tevento`.`id_grupo` = `tgrupo`.`id_grupo` $constraints
ORDER BY utimestamp DESC
LIMIT 0 , 30";
$result=mysql_query($sql);
//$url = "https://".$_SERVER['HTTP_HOST']."/pandora_console";
$url = $config["homeurl"];
$rss_feed = '<?xml version="1.0" ?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel>
<title>Pandora RSS Feed</title>
<description>Latest events on Pandora</description>
<link>' . $url . '</link>
<atom:link href="' . $url . '/operation/events/events_rss.php" rel="self" type="application/rss+xml" />';
while($row=mysql_fetch_array($result,MYSQL_ASSOC)) {
//This is mandatory
$rss_feed .= '<item><guid>';
$rss_feed .= $url . "/operation/events/view_event?id=" . $row['event_id'];
$rss_feed .= '</guid><title>';
$rss_feed .= htmlentities($row['agent_name']);
$rss_feed .= '</title><description>';
$rss_feed .= htmlentities($row['event_descr']);
if($row['validated'] == 1) {
$rss_feed .= '<br /><br />Validated by ' . $row['validated_by'];
}
$rss_feed .= '</description><link>';
$rss_feed .= $url . "/operation/events/view_event?id=" . $event_id;
$rss_feed .= '</link>';
//The rest is optional
$rss_feed .= '<pubDate>' . date(DATE_RFC822, $row['unix_timestamp']) . '</pubDate>';
$rss_feed .= '<image>';
$rss_feed .= '<link>' . $url . '</link>';
$rss_feed .= '<title>' . $row['group_name'] . '</title>';
$rss_feed .= '<url>' . $url . '/images/groups_small/' . $row['group_icon'] . '.png</url>';
$rss_feed .= '</image>';
//This is mandatory again
$rss_feed .= '</item>';
}
$rss_feed .= "</channel></rss>";
header("Content-Type: application/xml; charset=UTF-8");
echo $rss_feed;
?>

View File

@ -214,7 +214,98 @@ INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `t
INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`) VALUES (51,'OS Raw Interrupts','Get system raw interrupts from SO',13,16,0,0,180,0,'','','public','UCD-SNMP-MIB::ssRawInterrupts.0',4);
INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`) VALUES (52,'OS IO Signals sent','IO Signals sent by Kernel',13,16,0,0,180,0,'','','public','UCD-SNMP-MIB::ssIOSent.0',4);
INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`) VALUES (53,'System Uptime','Sistem uptime in timeticks',1,15,0,0,180,0,'','','public','HOST-RESOURCES-MIB::hrSystemUptime.0',4);
INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`) VALUES (54,'Catalyst Free Mem','Taken from ftp://ftp.cisco.com/pub/mibs/oid/OLD-CISCO-MEMORY-MIB.oid',2,15,0,0,180,0,'','','public','1.3.6.1.4.1.9.2.1.8',4);
INSERT INTO `tnetwork_component` VALUES (53,'Sytem IO Sent','Linux System IO Sent ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.5.0',4);
INSERT INTO `tnetwork_component` VALUES (54,'System IO Recv','Linux System IO Recv ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.6.0',4);
INSERT INTO `tnetwork_component` VALUES (55,'System SwapIn ','Linux System Swap In',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.3.0',1);
INSERT INTO `tnetwork_component` VALUES (56,'System Buffer Memory','Linux System Buffer Memory (used as available\nmemory)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.4.14.0',4);
INSERT INTO `tnetwork_component` VALUES (57,'System Cached Memory','Linux System Cached Memory (used as free\nmemory)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.4.15.0',4);
INSERT INTO `tnetwork_component` VALUES (58,'System Processes','Total system process on any host',12,15,0,0,180,0,'','','public','.1.3.6.1.2.1.25.1.6.0',4);
INSERT INTO `tnetwork_component` VALUES (59,'CPU User','Linux User CPU Usage (%)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.9.0',4);
INSERT INTO `tnetwork_component` VALUES (60,'CPU System','Linux System CPU usage',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.10.0',4);
INSERT INTO `tnetwork_component` VALUES (177,'System Context Change','Linux System Context changes ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.8.0',4);
INSERT INTO `tnetwork_component` VALUES (178,'System Interrupts','Linux system interrupts ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.7.0',4);
INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`) VALUES (176,'Catalyst Free Mem','Taken from ftp://ftp.cisco.com/pub/mibs/oid/OLD-CISCO-MEMORY-MIB.oid',2,15,0,0,180,0,'','','public','1.3.6.1.4.1.9.2.1.8',4);
INSERT INTO `tnetwork_component` VALUES (61,'GigabitEthernet1/0/1 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10101',2);
INSERT INTO `tnetwork_component` VALUES (62,'GigabitEthernet1/0/2 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10102',2);
INSERT INTO `tnetwork_component` VALUES (63,'GigabitEthernet1/0/3 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10103',2);
INSERT INTO `tnetwork_component` VALUES (64,'GigabitEthernet1/0/4 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10104',2);
INSERT INTO `tnetwork_component` VALUES (65,'GigabitEthernet1/0/5 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10105',2);
INSERT INTO `tnetwork_component` VALUES (66,'GigabitEthernet1/0/6 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10106',2);
INSERT INTO `tnetwork_component` VALUES (67,'GigabitEthernet1/0/7 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10107',2);
INSERT INTO `tnetwork_component` VALUES (68,'GigabitEthernet1/0/8 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10108',2);
INSERT INTO `tnetwork_component` VALUES (69,'GigabitEthernet1/0/9 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10109',2);
INSERT INTO `tnetwork_component` VALUES (70,'GigabitEthernet1/0/10 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10110',2);
INSERT INTO `tnetwork_component` VALUES (71,'GigabitEthernet1/0/11 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10111',2);
INSERT INTO `tnetwork_component` VALUES (72,'GigabitEthernet1/0/12 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10112',2);
INSERT INTO `tnetwork_component` VALUES (73,'GigabitEthernet1/0/13 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10113',2);
INSERT INTO `tnetwork_component` VALUES (74,'GigabitEthernet1/0/14 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10114',2);
INSERT INTO `tnetwork_component` VALUES (75,'GigabitEthernet1/0/15 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10115',2);
INSERT INTO `tnetwork_component` VALUES (76,'GigabitEthernet1/0/16 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10116',2);
INSERT INTO `tnetwork_component` VALUES (77,'GigabitEthernet1/0/17 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10117',2);
INSERT INTO `tnetwork_component` VALUES (78,'GigabitEthernet1/0/18 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10118',2);
INSERT INTO `tnetwork_component` VALUES (79,'GigabitEthernet1/0/19 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10119',2);
INSERT INTO `tnetwork_component` VALUES (80,'GigabitEthernet1/0/20 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10120',2);
INSERT INTO `tnetwork_component` VALUES (81,'GigabitEthernet1/0/21 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10121',2);
INSERT INTO `tnetwork_component` VALUES (82,'GigabitEthernet1/0/22 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10122',2);
INSERT INTO `tnetwork_component` VALUES (83,'GigabitEthernet1/0/23 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10123',2);
INSERT INTO `tnetwork_component` VALUES (84,'GigabitEthernet1/0/24 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10124',2);
INSERT INTO `tnetwork_component` VALUES (85,'GigabitEthernet1/0/25 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10125',2);
INSERT INTO `tnetwork_component` VALUES (86,'GigabitEthernet1/0/26 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10126',2);
INSERT INTO `tnetwork_component` VALUES (87,'GigabitEthernet1/0/27 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10127',2);
INSERT INTO `tnetwork_component` VALUES (88,'GigabitEthernet1/0/28 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10128',2);
INSERT INTO `tnetwork_component` VALUES (90,'GigabitEthernet2/0/1 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10601',2);
INSERT INTO `tnetwork_component` VALUES (91,'GigabitEthernet2/0/2 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10602',2);
INSERT INTO `tnetwork_component` VALUES (92,'GigabitEthernet2/0/3 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10603',2);
INSERT INTO `tnetwork_component` VALUES (93,'GigabitEthernet2/0/4 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10604',2);
INSERT INTO `tnetwork_component` VALUES (94,'GigabitEthernet2/0/5 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10605',2);
INSERT INTO `tnetwork_component` VALUES (95,'GigabitEthernet2/0/6 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10606',2);
INSERT INTO `tnetwork_component` VALUES (96,'GigabitEthernet2/0/7 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10607',2);
INSERT INTO `tnetwork_component` VALUES (97,'GigabitEthernet2/0/8 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10608',2);
INSERT INTO `tnetwork_component` VALUES (98,'GigabitEthernet2/0/9 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10609',2);
INSERT INTO `tnetwork_component` VALUES (99,'GigabitEthernet2/0/10 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10610',2);
INSERT INTO `tnetwork_component` VALUES (100,'GigabitEthernet2/0/11 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10611',2);
INSERT INTO `tnetwork_component` VALUES (101,'GigabitEthernet2/0/12 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10612',2);
INSERT INTO `tnetwork_component` VALUES (102,'GigabitEthernet2/0/13 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10613',2);
INSERT INTO `tnetwork_component` VALUES (103,'GigabitEthernet2/0/14 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10614',2);
INSERT INTO `tnetwork_component` VALUES (104,'GigabitEthernet2/0/15 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10615',2);
INSERT INTO `tnetwork_component` VALUES (105,'GigabitEthernet2/0/16 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10616',2);
INSERT INTO `tnetwork_component` VALUES (106,'GigabitEthernet2/0/17 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10617',2);
INSERT INTO `tnetwork_component` VALUES (107,'GigabitEthernet2/0/18 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10618',2);
INSERT INTO `tnetwork_component` VALUES (108,'GigabitEthernet2/0/19 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10619',2);
INSERT INTO `tnetwork_component` VALUES (109,'GigabitEthernet2/0/20 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10620',2);
INSERT INTO `tnetwork_component` VALUES (110,'GigabitEthernet2/0/21 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10621',2);
INSERT INTO `tnetwork_component` VALUES (111,'GigabitEthernet2/0/22 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10622',2);
INSERT INTO `tnetwork_component` VALUES (112,'GigabitEthernet2/0/23 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10623',2);
INSERT INTO `tnetwork_component` VALUES (113,'GigabitEthernet2/0/24 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10624',2);
INSERT INTO `tnetwork_component` VALUES (114,'GigabitEthernet2/0/25 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10625',2);
INSERT INTO `tnetwork_component` VALUES (115,'GigabitEthernet2/0/26 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10626',2);
INSERT INTO `tnetwork_component` VALUES (116,'GigabitEthernet2/0/27 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10627',2);
INSERT INTO `tnetwork_component` VALUES (117,'GigabitEthernet2/0/28 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10628',2);
INSERT INTO `tnetwork_component` VALUES (152,'GigabitEthernet1/0/35 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10135',2);
INSERT INTO `tnetwork_component` VALUES (153,'GigabitEthernet1/0/36 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10136',2);
INSERT INTO `tnetwork_component` VALUES (154,'GigabitEthernet1/0/37 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10137',2);
INSERT INTO `tnetwork_component` VALUES (155,'GigabitEthernet1/0/38 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10138',2);
INSERT INTO `tnetwork_component` VALUES (156,'GigabitEthernet1/0/39 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10139',2);
INSERT INTO `tnetwork_component` VALUES (157,'GigabitEthernet1/0/40 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10140',2);
INSERT INTO `tnetwork_component` VALUES (158,'GigabitEthernet1/0/41 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10141',2);
INSERT INTO `tnetwork_component` VALUES (159,'GigabitEthernet1/0/42 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10142',2);
INSERT INTO `tnetwork_component` VALUES (160,'GigabitEthernet1/0/43 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10143',2);
INSERT INTO `tnetwork_component` VALUES (161,'GigabitEthernet1/0/44 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10144',2);
INSERT INTO `tnetwork_component` VALUES (162,'GigabitEthernet1/0/45 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10145',2);
INSERT INTO `tnetwork_component` VALUES (163,'GigabitEthernet1/0/46 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10146',2);
INSERT INTO `tnetwork_component` VALUES (164,'GigabitEthernet1/0/47 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10147',2);
INSERT INTO `tnetwork_component` VALUES (165,'GigabitEthernet1/0/48 Status','',2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10148',2);
INSERT INTO `tnetwork_component` VALUES (170,'GigabitEthernet1/0/29 Status',NULL,2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10129',2);
INSERT INTO `tnetwork_component` VALUES (171,'GigabitEthernet1/0/30 Status',NULL,2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10130',2);
INSERT INTO `tnetwork_component` VALUES (172,'GigabitEthernet1/0/31 Status',NULL,2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10131',2);
INSERT INTO `tnetwork_component` VALUES (173,'GigabitEthernet1/0/32 Status',NULL,2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10132',2);
INSERT INTO `tnetwork_component` VALUES (174,'GigabitEthernet1/0/33 Status',NULL,2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10133',2);
INSERT INTO `tnetwork_component` VALUES (175,'GigabitEthernet1/0/34 Status',NULL,2,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.10134',2);
--
-- Dumping data for table `tnetwork_component_group`