You are not logged in.
Pages: 1
Topic closed
Bonjour,
j'aimerais retrouver l'adresse ip source ipsrc de la table hardware ocs sous GLPI mais je ne l'a vois pas...
comment faire svp ?
merci
OCS 2.1.2 / GLPI 0.85.2 + OCS Inventory NG 1.1.0 + plugins
Offline
C'est bien dommage de perdre une info qui est remonté
OCS 2.1.2 / GLPI 0.85.2 + OCS Inventory NG 1.1.0 + plugins
Offline
C'est quoi ca "adresse ip source ipsrc" ?
Offline
C'est l'adresse ip publique utilisée lors de l'install OCS
En interne çà à peu d'interet mais pour des clients externe c'est utile couplé aux liens protocolés par exemple
Table HARDWARE
OCS 2.1.2 / GLPI 0.85.2 + OCS Inventory NG 1.1.0 + plugins
Offline
Bonjour
cette info à t'elle été intégrée dans GLPI ?!
OCS 2.1.2 / GLPI 0.85.2 + OCS Inventory NG 1.1.0 + plugins
Offline
Ah bah pour fusion ca remonte, pour OCS, faut le coder
Offline
c'est possible de rajouter cette demande au plugin ocs ?
OCS 2.1.2 / GLPI 0.85.2 + OCS Inventory NG 1.1.0 + plugins
Offline
Ticket créé : https://forge.indepnet.net/issues/5068
Offline
Merci
OCS 2.1.2 / GLPI 0.85.2 + OCS Inventory NG 1.1.0 + plugins
Offline
I'm aready add this data for test purpose,
I add this field on table glpi_plugin_ocsinventoryng_ocslinks:
`last_ocs_conn` datetime default NULL,
`ip_src` varchar(255) collate utf8_unicode_ci default NULL
Then i modify the query on ocsserver.class.php:
$query = "UPDATE `glpi_plugin_ocsinventoryng_ocslinks`
SET `last_update` = '" . $_SESSION["glpi_currenttime"] . "',
`last_ocs_update` = '" . $data_ocs["LASTDATE"] . "',
`ocs_agent_version` = '".$data_ocs["USERAGENT"]." ',
`last_ocs_conn` = '" . $data_ocs["LASTCOME"] . "',
`ip_src` = '".$data_ocs["IPSRC"]." '
WHERE `id` = '$ID'";
and finally i modify the tab_glpi on ocslink.class.php:
echo "<table class='tab_glpi'>";
echo "<tr class='tab_bg_1'><th colspan='2'>".__('OCS Inventory NG')."</th>";
echo "<tr class='tab_bg_1'><td>".__('Last OCSNG inventory date', 'ocsinventoryng');
echo "</td><td>".Html::convDateTime($data["last_ocs_update"]).'</td></tr>';
echo "<tr class='tab_bg_1'><td>".__('Last OCSNG connection date', 'ocsinventoryng');
echo "</td><td>".Html::convDateTime($data["last_ocs_conn"]).'</td></tr>';
echo "<tr class='tab_bg_1'><td>".__('GLPI import date', 'ocsinventoryng');
echo "</td><td>".Html::convDateTime($data["last_update"]).'</td></tr>';
echo "<tr class='tab_bg_1'><td>".__('Inventory agent', 'ocsinventoryng');
echo "</td><td>".$data["ocs_agent_version"].'</td></tr>';
echo "<tr class='tab_bg_1'><td>".__('IP Source', 'ocsinventoryng');
echo "</td><td>".$data["ip_src"].'</td></tr>';
echo "<tr class='tab_bg_1'><td>".__('Server');
echo "</td><td>";
Davide
Offline
Super,
si y a déjà le code çà va etre rapide de l'intégré dans la prochaine version
merci
OCS 2.1.2 / GLPI 0.85.2 + OCS Inventory NG 1.1.0 + plugins
Offline
Offline
Pages: 1
Topic closed