User Tools

Site Tools


2_x:datamodel:teemip_cmdb

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
2_x:datamodel:teemip_cmdb [2023/09/15 15:29] – [Linking CIs to IPs] cnaud2_x:datamodel:teemip_cmdb [2023/09/15 15:57] cnaud
Line 1: Line 1:
 ====== CMDB ====== ====== CMDB ======
  
-The **Configuration Management Data Base** defines the objects that can be managed inside TeemIp, next to the pure IP objects (subnets, addresses, etc.). Widely inherited from iTop, it defines all the physical devices (PCs, Servers, Printers, Network devices, Telephones, etc.) but also some logicals elements (Groups, Application Solutions, Business Processes), software objects (Software Instances, Licenses, etc.), structuring entities (Organizations, Locations, etc...) and objects that are specific to network management (Domains, AS numbers, VRFs, etc..). Persons and Teams are also defined in this module.+The **Configuration Management Data Base** defines the objects (Configuration Items or **CIs**) that can be managed inside TeemIp, next to the pure IP objects (subnets, addresses, etc.). Widely inherited from iTop, it defines all the physical devices (PCs, Servers, Printers, Network devices, Telephones, etc.) but also some logicals elements (Groups, Application Solutions, Business Processes), software objects (Software Instances, Licenses, etc.), structuring entities (Organizations, Locations, etc...) and objects that are specific to network management (Domains, AS numbers, VRFs, etc..). Persons and Teams are also defined in this module.
  
 In order to keep the elements to manage as simple as possible while covering most IT needs, the configuration management domain has been split into 6 modules, including a TeemIp specific one that groups the objects related to network management. In order to keep the elements to manage as simple as possible while covering most IT needs, the configuration management domain has been split into 6 modules, including a TeemIp specific one that groups the objects related to network management.
Line 23: Line 23:
 </note> </note>
  
-More details can be found in the [[2_x:datamodel:ip-addresses#links_between_ip_addresses_and_cis|IP addresses]] documentation+More details can be found in the [[2_x:datamodel:ip-addresses#links_between_ip_addresses_and_cis|IP addresses]] documentation page.
-==== Obsoleting CIs with IPs ==== +
-TeemIp's standard datamodel defines a status for most CIs : implementation, obsolete, production, stock. A conditional behaviour triggered by configuration parameters removes all the IPs attached to CIs that have a specific status (obsolete by default) as well as all the IPs attached to the interfaces of these CIs. These removed IPs are set to to the 'released' state.+
  
-This action is not done when a CI is moved to the specific state but through a background task that runsby defaultevery 1 hour.+==== Automation ==== 
 +When linking an IP together with a CI, one must insure that both the CI's and the IP's status are consistent. TeemIp provides configurable automation processes to help IP Administrators with that task
 +  * One will [[2_x:datamodel:ip-settings#automatic_ip_release|release]] IPs that are linked to an obsolete CI, 
 +  * Another one will [[2_x:datamodel:ip-settings#automatic_ip_allocation|allocate]] IPs that are attached to a production CI, 
 +  * A last one will [[2_x:datamodel:ip-settings#automatic_ip_un-assignment|unassign]] IPs that are no longer attached to a CI.
  
-=== Configuration ===+These processes are documented in the [[2_x:datamodel:ip-settings|IP Settings]] documentation page.
  
-Once TeemIp has been installed, the standard configuration file config-itop.php will show the following section under the modules specific settings: 
- 
-<code php> 
- 'teemip-ip-mgmt' => array ( 
- 'ip_release_on_ci_status' => array ( 
-   'enabled' => true, 
-   'debug' => false, 
-   'periodicity' => 3600, 
-   'status_list' => array ( 
-     'obsolete', 
-   ), 
- ), 
- ), 
-</code> 
- 
-^ Parameter  ^  Type  ^  Description  ^  Default Value  ^ 
-| enabled | boolean | Should the process run? | false | 
-| debug | boolean | Should the CRON log be enriched with debug information? | false | 
-| periodicity | integer | Defines the periodicity of the process, in seconds | 3600 | 
-| status_list | array | IP release process will be applied to CIs with these status | ['obsolete'] | 
- 
- 
-When the process is enabled, TeemIp administrator can further decide to activate or deactivate it for each organization. This is controlled through the [[2_x:datamodel:ip-settings|global IP settings]] parameter "Release IPs of CIs that become obsolete". 
- 
-<note important> 
-By default, the process is disabled both **globally** and at the **Global IP settings** level ! 
-</note>