Initial commit: SANEF Qualys V3 taxonomie scripts (gen_xlsx, gen_resume, send_*, apply_sed_sei) + inputs + docs

This commit is contained in:
Pierre & Lumière 2026-04-24 14:23:16 +02:00
commit 6a475e680f
47 changed files with 15780 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
__pycache__/
*.pyc
*.tmp
~$*
.sanef_qualys.db

28
README.md Normal file
View File

@ -0,0 +1,28 @@
# SANEF Qualys Taxonomie V3
Scripts de génération/maintenance de la taxonomie Qualys V3 SANEF (tags dynamiques + statiques + préfixes manuels).
## Structure
- `inputs/` — sources : exports CSV Qualys, listes bulk manuelles, refs QQL, captures règles
- `docs/` — générés : xlsx référence + docx résumé exécution
- Scripts à la racine
## Scripts
| Script | Rôle |
|---|---|
| `gen_xlsx.py` | Génère `docs/SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx` (référence complète 23 DYN + 7 STAT + préfixes) |
| `gen_resume.py` | Génère `docs/SANEF_Qualys_V3_Resume_Vigilance.docx` (résumé exécution + points de vigilance + TODO) |
| `send_xlsx.py` | Envoie le xlsx par email via Gmail SMTP |
| `send_docx.py` | Envoie docx + xlsx par email |
| `apply_sed_sei_tags.py` | Applique TAG-SED / TAG-SEI en bulk via API Qualys (fallback si SQATM indispo) |
## Envoi email
```
$env:GMAIL_APP_PASSWORD="xxxx xxxx xxxx xxxx"
py send_docx.py
```
Prérequis : App Password Gmail (voir mémoire `gmail_smtp.md`).
## Notes
Nomenclature V3 : `OS-*`, `EQT-*` (équipement), `ENV-*` (environnement), `POS-*` (positionnement), `TAG-*`.
Voir `inputs/qualys_qql_ref.txt` pour le référentiel QQL.

194
apply_sed_sei_tags.py Normal file
View File

@ -0,0 +1,194 @@
#!/usr/bin/env python3
"""
Bulk apply TAG-SED and TAG-SEI to SANEF DMZ assets via Qualys QPS REST API.
Usage:
# Dry run (default) - just lists what would happen
python apply_sed_sei_tags.py
# Apply for real
python apply_sed_sei_tags.py --apply
Auth:
Set env vars QUALYS_URL, QUALYS_USER, QUALYS_PASS
OR script will prompt interactively.
Files expected:
C:\\Claude\\sanef\\QL\\inputs\\bulk_tag_sed.txt (9 hostnames)
C:\\Claude\\sanef\\QL\\inputs\\bulk_tag_sei.txt (21 hostnames)
"""
import os
import sys
import time
import getpass
import requests
import urllib3
urllib3.disable_warnings()
URL = os.environ.get("QUALYS_URL", "https://qualysapi.qualys.eu")
USER = os.environ.get("QUALYS_USER") or input("Qualys user: ")
PASS = os.environ.get("QUALYS_PASS") or getpass.getpass("Qualys password: ")
APPLY = "--apply" in sys.argv
session = requests.Session()
session.auth = (USER, PASS)
session.headers.update({
"X-Requested-With": "SANEF-bulk-sed-sei",
"Content-Type": "application/json",
})
session.verify = False
# Force no proxy (ignore HTTP_PROXY/HTTPS_PROXY env vars)
session.trust_env = False
session.proxies = {"http": "", "https": ""}
def call(endpoint, body=None, retries=3):
for attempt in range(retries):
r = session.post(URL + endpoint, json=body, timeout=60)
if r.status_code == 200:
return r.text
if r.status_code == 409 or r.status_code == 429: # rate limit
print(f" [RATE LIMIT] wait 30s...")
time.sleep(30)
continue
print(f" [HTTP {r.status_code}] {endpoint}")
print(f" Response body (first 500 chars): {r.text[:500]}")
r.raise_for_status()
raise RuntimeError(f"Max retries exceeded for {endpoint}")
def parse_xml(text, tag):
s, e = f"<{tag}>", f"</{tag}>"
pos = 0
out = []
while True:
i = text.find(s, pos)
if i == -1:
break
i += len(s)
j = text.find(e, i)
if j == -1:
break
out.append(text[i:j].strip())
pos = j + len(e)
return out
def find_tag_id(name):
body = {"ServiceRequest": {"filters": {"Criteria": [
{"field": "name", "operator": "EQUALS", "value": name}
]}}}
resp = call("/qps/rest/2.0/search/am/tag", body)
ids = parse_xml(resp, "id")
return ids[0] if ids else None
def _search_hostasset(field, operator, value):
body = {"ServiceRequest": {"filters": {"Criteria": [
{"field": field, "operator": operator, "value": value}
]}, "preferences": {"limitResults": 20}}}
return call("/qps/rest/2.0/search/am/hostasset", body)
def find_asset_id(name):
# Strategy 1: exact match on name (short hostname)
resp = _search_hostasset("name", "EQUALS", name)
if "<HostAsset>" in resp:
block = resp.split("<HostAsset>", 1)[1].split("</HostAsset>", 1)[0]
ids = parse_xml(block, "id")
if ids:
return ids[0]
# Strategy 2: CONTAINS name — couvre les cas FQDN stockés (vrosapsrv1 -> vrosapsrv1.sanef.groupe)
resp = _search_hostasset("name", "CONTAINS", name)
blocks = [b.split("</HostAsset>", 1)[0] for b in resp.split("<HostAsset>")[1:]]
for b in blocks:
nm = (parse_xml(b, "name") or [""])[0].lower()
if nm == name.lower() or nm.startswith(name.lower() + "."):
ids = parse_xml(b, "id")
if ids:
return ids[0]
# Strategy 3: netbiosName EQUALS uppercase (cas Windows hosts)
try:
resp = _search_hostasset("netbiosName", "EQUALS", name.upper())
if "<HostAsset>" in resp:
block = resp.split("<HostAsset>", 1)[1].split("</HostAsset>", 1)[0]
ids = parse_xml(block, "id")
if ids:
return ids[0]
except Exception:
pass
return None
def add_tag_to_asset(asset_id, tag_id):
body = {"ServiceRequest": {"data": {"HostAsset": {"tags": {
"add": {"TagSimple": {"id": tag_id}}
}}}}}
resp = call(f"/qps/rest/2.0/update/am/hostasset/{asset_id}", body)
return "SUCCESS" in resp
def process(tag_name, hostnames_file):
print(f"\n=== {tag_name} ===")
tag_id = find_tag_id(tag_name)
if not tag_id:
print(f" !! Tag '{tag_name}' introuvable sur Qualys. SKIP.")
return 0, 0
print(f" Tag ID: {tag_id}")
try:
with open(hostnames_file, encoding="utf-8") as f:
hosts = [l.strip() for l in f if l.strip()]
except FileNotFoundError:
print(f" !! Fichier introuvable: {hostnames_file}")
return 0, 0
print(f" {len(hosts)} hostnames a traiter\n")
ok, ko = 0, 0
for h in hosts:
aid = find_asset_id(h)
if not aid:
print(f" [NOT_FOUND] {h}")
ko += 1
continue
if not APPLY:
print(f" [DRY] {h:<25} aid={aid} -> would add tag {tag_id}")
ok += 1
continue
try:
if add_tag_to_asset(aid, tag_id):
print(f" [OK] {h:<25} aid={aid} tagged")
ok += 1
else:
print(f" [FAIL] {h:<25} aid={aid}")
ko += 1
time.sleep(0.4) # rate limit margin
except Exception as e:
print(f" [ERR] {h}: {e}")
ko += 1
return ok, ko
def main():
mode = "APPLY (real)" if APPLY else "DRY RUN"
print(f"Mode: {mode}")
print(f"URL: {URL}")
print(f"User: {USER}")
t_ok, t_ko = 0, 0
for tag, path in [
("TAG-SED", r"C:\Claude\sanef\QL\inputs\bulk_tag_sed.txt"),
("TAG-SEI", r"C:\Claude\sanef\QL\inputs\bulk_tag_sei.txt"),
]:
ok, ko = process(tag, path)
t_ok += ok
t_ko += ko
print(f"\n=== TOTAL: {t_ok} OK / {t_ko} KO ===")
if not APPLY:
print("\n>>> DRY RUN termine. Pour appliquer: python apply_sed_sei_tags.py --apply")
if __name__ == "__main__":
main()

Binary file not shown.

Binary file not shown.

Binary file not shown.

302
gen_resume.py Normal file
View File

@ -0,0 +1,302 @@
# -*- coding: utf-8 -*-
"""Generate SANEF Qualys V3 - resume execution + points de vigilance.docx"""
from docx import Document
from docx.shared import Pt, RGBColor, Inches, Cm
from docx.enum.text import WD_ALIGN_PARAGRAPH
doc = Document()
style = doc.styles['Normal']
style.font.name = 'Calibri'
style.font.size = Pt(10)
# ===== Cover =====
title = doc.add_heading('SANEF — Qualys Taxonomie V3', 0)
title.alignment = WD_ALIGN_PARAGRAPH.CENTER
sub = doc.add_paragraph()
sub.alignment = WD_ALIGN_PARAGRAPH.CENTER
r = sub.add_run('Résumé d\'exécution + points de vigilance')
r.font.size = Pt(14)
r.italic = True
meta = doc.add_paragraph()
meta.alignment = WD_ALIGN_PARAGRAPH.CENTER
r = meta.add_run('Date : 22 avril 2026\nRédacteur : Khalid MOUTAOUAKIL — SECOPS\nVersion : 1.0')
r.font.size = Pt(11)
doc.add_paragraph()
doc.add_paragraph('_' * 80)
doc.add_paragraph()
# ===== 1. Résumé =====
doc.add_heading('1. Résumé de la session', level=1)
doc.add_paragraph(
"Cette session a consisté à déployer la taxonomie V3 des tags Qualys SANEF, "
"définie dans le document « Processus d'affectation des Tags Qualys — Nomenclature V3 ». "
"L'ensemble des règles a été créé directement dans la console Qualys (module Asset Inventory) "
"et appliqué sur le parc actif (~3,22k assets sur 6,24k au total)."
)
doc.add_heading('1.1 Tags créés', level=2)
doc.add_paragraph('5 parents (containers organisationnels statiques) :', style='List Bullet')
for p in ['OS', 'EQT', 'ENV', 'POS', 'TAG']:
doc.add_paragraph(p, style='List Bullet 2')
doc.add_paragraph('23 tags dynamiques (Asset Inventory rule engine) :', style='List Bullet')
for line in [
'OS-LIN-SRV (729), OS-WIN-SRV (505), OS-WIN-WKS (~2056), OS-MAC (7), OS-ESX (2)',
'EQT-VIR (956), EQT-SRV (307), EQT-SWI (72)',
'ENV-PRD (~772), ENV-REC (~302), ENV-PPR (~76), ENV-TST (83), ENV-DEV (~21)',
'POS-FL, POS-INF, POS-PEA, POS-TRA, POS-BI, POS-GES (counts variables, voir console)',
'NOM-LEGACY (219) — KPI dette de conformité V3',
'TAG-EMV (~34) — zone PCI-DSS',
'TAG-OBS (~190+) — OS EOL liste explicite',
]:
doc.add_paragraph(line, style='List Bullet 2')
doc.add_paragraph('Tags statiques (bulk SQATM) :', style='List Bullet')
for line in [
'TAG-SED (10) — exposition directe Internet',
'TAG-SEI (22) — exposition indirecte derrière frontal',
'TAG-ELS (vide) — extension de licence (exclusion EOL)',
'TAG-DEC, TAG-INT, TAG-SIC, TAG-SIA — statiques manuels',
]:
doc.add_paragraph(line, style='List Bullet 2')
doc.add_heading('1.2 Découvertes techniques majeures', level=2)
findings = [
("Limites QQL Tag rule engine",
"Le moteur Asset Inventory pour la création de règles n'accepte que la syntaxe starts-with "
"(asset.name:vp*). Les opérateurs CONTAINS (*X*) et les guillemets (\"X\") échouent. La clé "
"tags.name peut être utilisée dans les recherches interactives mais PAS dans la création de "
"règles dynamiques (l'API rejette le commit avec « Error while committing transaction »)."),
("FQDN .sanef.groupe non env-spécifique",
"Découverte initialement supposée comme indicateur Production, le domaine AD interne "
".sanef.groupe est en réalité utilisé par tous les serveurs SANEF (PRD, REC, PPR, TST, DEV). "
"Utiliser comme filtre broad provoque des overlaps massifs entre tags ENV. Solution adoptée : "
"scoper FQDN par pattern hostname précis (ex : vmm*.sanef-int.adds pour les Win11 prod uniquement)."),
("Conflits de préfixes 5-char entre POS",
"Plusieurs préfixes hostname appartiennent à des domaines différents selon contexte applicatif "
"(ex : vppea* = FL pour BOOST + PEA pour SVP). Résolution par énumération 7-char spécifique "
"(vppeaab* BOOST = FL, vppeaaa*/ar*/ae* SVP = PEA) et clauses NOT exclusives."),
("Zone DMZ multi-subnet",
"La DMZ SANEF est segmentée en 15 sous-réseaux /24 différents. Pas de CIDR unique. "
"Impossible de faire une règle dynamique simple par IP. Tagging actuel TAG-SED/SEI en static "
"via SQATM bulk."),
("Tag built-in Qualys « Obsolete »",
"Qualys maintient automatiquement un tag « Obsolete » basé sur sa détection EOL. ~190 assets "
"SANEF sont taggés. Ce tag NE peut PAS être référencé dans une règle de tag custom (limitation "
"Qualys). On utilise une liste OS explicite pour TAG-OBS."),
("Postes Superviseur Péage (svp*) — exclusion ENV-TST et EQT-SRV",
"Le préfixe sv* visait initialement les serveurs physiques de test (svboomcla2, etc.). "
"Découverte : ~100 postes de travail Windows 11 (HP Elite Mini desktops SVP2xxxx + HP EliteBook "
"SVP1xxxx) commencent aussi par svp* — ce sont des postes Superviseur Péage, pas des serveurs. "
"Sans exclusion explicite, ils étaient ramassés par ENV-TST (~180 au lieu de 83) et "
"potentiellement par EQT-SRV. Correction : ajout de « and not asset.name:svp* » sur les deux "
"règles. ENV-TST passe à 83 assets, cohérent avec le périmètre attendu."),
]
for h, t in findings:
p = doc.add_paragraph()
p.add_run(h + ' : ').bold = True
p.add_run(t)
# ===== 2. Points de vigilance =====
doc.add_page_break()
doc.add_heading('2. Points de vigilance', level=1)
doc.add_paragraph(
"Les éléments suivants nécessitent une surveillance ou des actions futures pour maintenir "
"la cohérence et l'exhaustivité de la taxonomie V3."
)
doc.add_heading("2.1 POS-DMZ — à adapter une fois la DMZ normalisée", level=2)
doc.add_paragraph(
"Statut actuel : pas de tag POS-DMZ créé. La gestion DMZ est faite via TAG-SED (10 frontaux) "
"et TAG-SEI (22 backends), tous statiques."
)
p = doc.add_paragraph()
p.add_run('Problème : ').bold = True
p.add_run(
"la DMZ SANEF s'étend sur 15 sous-réseaux /24 différents (192.168.2/24, 192.168.20/24, "
"192.168.31/24, 10.41.20/24, 10.42.30/24, 10.205.0/24, etc.). Aucun CIDR unique ne permet "
"actuellement une règle dynamique simple."
)
p = doc.add_paragraph()
p.add_run('Action requise : ').bold = True
p.add_run(
"demander à l'équipe réseau SANEF de fournir soit (a) le CIDR DMZ consolidé (si réorganisation "
"envisagée), soit (b) une nomenclature IP DMZ-spécifique (par exemple un /20 dédié). Une fois "
"obtenu, basculer TAG-SED et TAG-SEI en règles dynamiques basées sur "
"asset.interface:(address: <CIDR>)."
)
p = doc.add_paragraph()
p.add_run('Alternative : ').bold = True
p.add_run(
"si la DMZ reste multi-subnet, garder TAG-SED/TAG-SEI en static. Documenter dans la procédure "
"patcheur SECOPS : tout nouveau serveur en zone DMZ doit être taggé manuellement via SQATM "
"selon son rôle (frontal = SED, backend = SEI)."
)
p = doc.add_paragraph()
p.add_run('Plages publiques connues pour TAG-SED dynamique : ').bold = True
p.add_run("83.68.96.0/24 (Juniper firewalls), 83.68.99.0/24 (F5 BIG-IP). Ces plages peuvent être "
"utilisées pour basculer TAG-SED en dynamique partiel dès aujourd'hui :")
doc.add_paragraph(
"asset.interface:(address: 83.68.96.0/24) or asset.interface:(address: 83.68.99.0/24)",
style='Intense Quote'
)
doc.add_heading('2.2 TAG-ELS — saisie manuelle au cas par cas', level=2)
doc.add_paragraph(
"TAG-ELS (Extended Life License) identifie les serveurs sous contrat de support sécurité "
"étendu payé (Microsoft ESU, Red Hat ELS, etc.). Ces serveurs ne doivent PAS être considérés "
"comme TAG-OBS car ils reçoivent encore des correctifs de sécurité."
)
p = doc.add_paragraph()
p.add_run('Statut actuel : ').bold = True
p.add_run("TAG-ELS créé (statique, vide). Aucun asset taggué.")
p = doc.add_paragraph()
p.add_run('Action requise : ').bold = True
p.add_run(
"lister les serveurs SANEF sous contrats ELS (vérifier avec la DSI / responsables applicatifs / "
"renouvellements de licence Microsoft/RedHat). Saisir manuellement via SQATM avec le tag TAG-ELS "
"sur chaque asset concerné."
)
p = doc.add_paragraph()
p.add_run('Workflow opérationnel : ').bold = True
p.add_run(
"lorsqu'un asset est ajouté à TAG-ELS, retirer manuellement TAG-OBS si présent (les deux tags "
"ne doivent pas coexister). Limitation : la chaîne de tag (tag rule excluant un autre tag) "
"n'est pas supportée par Qualys, donc le double-tagging doit être nettoyé manuellement."
)
p = doc.add_paragraph()
p.add_run('Reporting recommandé : ').bold = True
p.add_run("créer une « Saved Search » Qualys pour le reporting opérationnel :")
doc.add_paragraph('tags.name:"TAG-OBS" and not tags.name:"TAG-ELS"', style='Intense Quote')
doc.add_paragraph("Cette query, valide en recherche interactive, donne les « vrais EOL à patcher » "
"et est utilisable dans les dashboards.")
doc.add_heading("2.3 TAG-OBS — adapter la liste OS quand un nouvel OS devient obsolète", level=2)
doc.add_paragraph(
"TAG-OBS est défini en Option A (liste OS explicite) car la chaîne sur le tag built-in Qualys "
"« Obsolete » n'est pas supportée. La liste actuelle couvre 15 OS / familles."
)
p = doc.add_paragraph()
p.add_run('Liste OS actuelle (à maintenir) : ').bold = True
oses = [
"Windows XP (EOL 2014-04-08)",
"Windows Server 2003 (EOL 2015-07-14)",
"Windows Server 2008 / 2008 R2 (EOL 2020-01-14)",
"Windows Server 2012 / 2012 R2 (EOL 2023-10-10)",
"Windows 7 (EOL 2020-01-14)",
"Red Hat Enterprise Linux 5 (EOL 2017-03-31)",
"Red Hat Enterprise Linux 6 (EOL 2020-11-30)",
"CentOS 5 / 6 / 7 (CentOS 7 EOL 2024-06-30)",
"Ubuntu 14.04 / 16.04 / 18.04 (EOL 2019/2021/2023)",
"Debian 8 / 9 (EOL 2020/2022)",
]
for o in oses:
doc.add_paragraph(o, style='List Bullet')
p = doc.add_paragraph()
p.add_run('Surveillance recommandée : ').bold = True
p.add_run(
"vérifier au moins une fois par an (idéalement en début d'année) si de nouveaux OS sont passés EOL. "
"Sources fiables : endoflife.date, sites éditeurs (microsoft.com/lifecycle, redhat.com/support, "
"ubuntu.com/about/release-cycle)."
)
p = doc.add_paragraph()
p.add_run('OS à surveiller dans les 12-24 mois : ').bold = True
upcoming = [
"RHEL 7 — EOL 2024-06-30 (déjà à inclure si pas déjà fait)",
"Windows Server 2012 R2 ESU — EOL 2026-10-13",
"Ubuntu 20.04 — EOL 2025-04 standard, ESM jusqu'à 2030",
"Debian 10 — EOL 2024-06-30 standard, LTS jusqu'à 2024-06",
"CentOS Stream 8 — EOL 2024-05-31",
]
for o in upcoming:
doc.add_paragraph(o, style='List Bullet')
p = doc.add_paragraph()
p.add_run('Procédure de mise à jour TAG-OBS : ').bold = True
doc.add_paragraph("Ouvrir Qualys Console > AssetView > Configuration > Tags > TAG-OBS > Edit", style='List Number')
doc.add_paragraph('Ajouter la nouvelle clause OR à la query : or operatingSystem:"<nouvel OS>"', style='List Number')
doc.add_paragraph("Cliquer Test pour vérifier le count", style='List Number')
doc.add_paragraph("Save", style='List Number')
doc.add_paragraph("Mettre à jour le fichier de référence SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx", style='List Number')
doc.add_heading("2.4 Mécanisme natif Qualys « Obsolete » (à connaître)", level=2)
doc.add_paragraph(
"Qualys propose un tag système « Obsolete » auto-appliqué à partir d'une base de connaissance "
"interne sur les fins de support OS. Ce tag est maintenu par Qualys (pas par SANEF), s'applique "
"automatiquement aux assets quand leur OS bascule EOL."
)
p = doc.add_paragraph()
p.add_run("Couverture observée dans le parc SANEF : ").bold = True
p.add_run("~190 assets (181 dans l'export AssetView et 180 dans Cloud Agent au 22 avril 2026).")
p = doc.add_paragraph()
p.add_run("Pourquoi ne pas utiliser uniquement ce tag : ").bold = True
p.add_run(
"(1) il n'est PAS référençable dans une règle de tag dynamique custom (limitation Qualys "
"confirmée), donc impossible de créer un TAG-OBS = mirror du tag Qualys ; "
"(2) il n'inclut pas toujours toutes les variantes EOL (parfois décalage temporel ou critères "
"différents) ; "
"(3) il ne permet pas l'exclusion ELS via règle."
)
p = doc.add_paragraph()
p.add_run("Comment l'utiliser malgré ses limites : ").bold = True
p.add_run(
"via les Saved Searches dans la console Qualys. Exemple de query à sauvegarder pour le reporting :"
)
doc.add_paragraph('tags.name:"Obsolete" and not tags.name:"TAG-ELS"', style='Intense Quote')
p = doc.add_paragraph()
p.add_run("Comparaison TAG-OBS (Option A) vs Obsolete built-in : ").bold = True
p.add_run(
"TAG-OBS = liste explicite contrôlée par SECOPS, plus large potentiellement, mais nécessite "
"maintenance. Obsolete built-in = auto-update Qualys, sans maintenance, mais sans contrôle SANEF "
"et non chaînable. La meilleure approche est de conserver les deux et de les utiliser en croisant "
"leur intersection."
)
# ===== 3. Suite à faire =====
doc.add_page_break()
doc.add_heading('3. Suite à faire (TODO)', level=1)
todos = [
("Bulk SQATM TAG-SED, TAG-SEI",
"Appliqué aujourd'hui via SQATM (10 SED, 22 SEI). Vérifier à la prochaine revue qu'aucun nouveau "
"asset DMZ n'a été oublié."),
("Récupérer CIDR DMZ auprès équipe réseau",
"Pour basculer TAG-SED/TAG-SEI en dynamique IP-based. Voir section 2.1."),
("Saisir TAG-ELS sur les serveurs concernés",
"Inventaire des contrats ELS à faire avec la DSI. Voir section 2.2."),
("Nettoyer tags legacy concurrents dans Qualys",
"Plusieurs tags concurrents détectés dans les exports : TAG-SRVEXPOSEINTERNET, DMZ, SED, "
"ZONE-DMZ. Décision à prendre : garder en parallèle, supprimer ou consolider sur la nomenclature V3."),
("Documenter procédure SECOPS pour nouveaux serveurs",
"Procédure à intégrer dans le wiki DokuWiki SANEF (page infra:sanef_utiles:sanef_utiles:qualys_tagv3) : "
"tout nouveau serveur SANEF doit être taggé selon V3 dans les 48h après scan Qualys initial."),
("Dashboard Qualys « Conformité V3 »",
"Construire un dashboard avec : count NOM-LEGACY (KPI dette renommage), count TAG-OBS (hors ELS), "
"% serveurs avec OS-* + ENV-* + POS-* + EQT-* tags présents (couverture V3)."),
("Surveillance annuelle TAG-OBS",
"Revérifier la liste OS EOL en janvier 2027 et ajouter les nouveaux OS passés EOL. Voir 2.3."),
]
for title_, desc in todos:
p = doc.add_paragraph(style='List Bullet')
p.add_run(title_).bold = True
p.add_run(' : ' + desc)
doc.add_paragraph()
doc.add_paragraph('_' * 80)
p = doc.add_paragraph()
p.alignment = WD_ALIGN_PARAGRAPH.CENTER
r = p.add_run("SANEF DSI / Sécurité Opérationnelle — Plan d'action Qualys V3")
r.italic = True
r.font.size = Pt(9)
out = r"C:\Claude\sanef\QL\docs\SANEF_Qualys_V3_Resume_Vigilance.docx"
doc.save(out)
print("Saved:", out)
import os
print("Size:", os.path.getsize(out), "bytes")

181
gen_xlsx.py Normal file
View File

@ -0,0 +1,181 @@
"""Generate SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx with description column."""
from openpyxl import Workbook
from openpyxl.styles import PatternFill, Font, Alignment
from openpyxl.utils import get_column_letter
wb = Workbook()
# ============== Sheet 1: Tags Dynamiques (DYN) ==============
ws1 = wb.active
ws1.title = "Tags Dynamiques (DYN)"
ws1.append(["Tag", "Couleur (hex)", "Type", "Rule Type", "Description", "Query QQL"])
for cell in ws1[1]:
cell.font = Font(bold=True, color="FFFFFF")
cell.fill = PatternFill("solid", fgColor="263238")
cell.alignment = Alignment(horizontal="center", vertical="center")
dyn_tags = [
("OS-LIN-SRV", "#4CAF50", "DYN", "Asset Inventory",
"Serveurs Linux avec Cloud Agent Qualys",
"operatingSystem.category1:Linux and operatingSystem.category2:Server and asset.trackingMethod:QAGENT"),
("OS-WIN-SRV", "#1976D2", "DYN", "Asset Inventory",
"Serveurs Windows Server avec Cloud Agent Qualys",
"operatingSystem.category1:Windows and operatingSystem.category2:Server and asset.trackingMethod:QAGENT"),
("OS-WIN-WKS", "#2196F3", "DYN", "Asset Inventory",
"Postes de travail Windows avec Cloud Agent Qualys",
"operatingSystem.category1:Windows and operatingSystem.category2:Client and asset.trackingMethod:QAGENT"),
("OS-MAC", "#546E7A", "DYN", "Asset Inventory",
"Postes macOS avec Cloud Agent Qualys",
"operatingSystem.category1:Mac and asset.trackingMethod:QAGENT"),
("OS-ESX", "#9C27B0", "DYN", "Asset Inventory",
"Hyperviseurs VMware ESXi (hors scope, pas d'agent)",
'operatingSystem:"ESXi"'),
("EQT-VIR", "#00BCD4", "DYN", "Asset Inventory",
"Machines virtuelles (hors postes clients)",
'asset.name:v* and not operatingSystem.category2:"Client"'),
("EQT-SRV", "#03A9F4", "DYN", "Asset Inventory",
"Serveurs physiques (hors VM et equipements reseau)",
'(asset.name:l* or asset.name:s*) and not operatingSystem.category2:"Client" and not asset.name:svp*'),
("EQT-SWI", "#4DD0E1", "DYN", "Asset Inventory",
"Equipements reseau (switches, routeurs, firewalls, LB) - detection via OS reseau Juniper/F5/Cisco/Pulse",
'operatingSystem.category1:"Network Operating System"'),
("ENV-PRD", "#F44336", "DYN", "Asset Inventory",
"Production - V3 prefixes (vp/sp/lp/ls-) sauf vppi, legacy lam* sauf (lamar/lamr/lamt), + vmm*.sanef-int.adds, hors exceptions REC/DEV legacy",
"(asset.name:vp* or asset.name:sp* or asset.name:lp* or asset.name:ls-* or asset.name:lam* or (asset.name:vmm* and asset.fqdn:*.sanef-int.adds)) and not (asset.name:vppi* or asset.name:lamar* or asset.name:lamr* or asset.name:lamt* or asset.name:vmamr* or asset.name:vmamd* or asset.name:vmrgmao7 or asset.name:vmcmdb1 or asset.name:vmcmdb2)"),
("ENV-REC", "#FF9800", "DYN", "Asset Inventory",
"Recette - V3 (vr/sr/lr), legacy lamar/lamr/lamt + AME (vmamr*, vmrgmao7, vmcmdb1/2), + vmd*.recette.adds",
"(asset.name:vr* or asset.name:sr* or asset.name:lr* or asset.name:lamar* or asset.name:lamr* or asset.name:lamt* or (asset.name:vmd* and asset.fqdn:*.recette.adds) or asset.name:vmamr* or asset.name:vmrgmao7 or asset.name:vmcmdb1 or asset.name:vmcmdb2) and not (asset.name:vrsupbmap1 or asset.name:vrsupbmbi1)"),
("ENV-PPR", "#FFC107", "DYN", "Asset Inventory",
"Pre-Production - V3 (vi/si/vo/vppi)",
"asset.name:vi* or asset.name:si* or asset.name:vo* or asset.name:vppi*"),
("ENV-TST", "#CDDC39", "DYN", "Asset Inventory",
"Test - V3 (vv/vt/sv) + exceptions (vrsupbmap1, vrsupbmbi1), exclut postes Superviseur Peage svp*",
"(asset.name:vv* or asset.name:vt* or asset.name:sv* or asset.name:vrsupbmap1 or asset.name:vrsupbmbi1) and not asset.name:svp*"),
("ENV-DEV", "#8BC34A", "DYN", "Asset Inventory",
"Developpement - V3 (vd/sd) + legacy AME vmamd*",
"asset.name:vd* or asset.name:sd* or asset.name:vmamd*"),
("POS-FL", "#009688", "DYN", "Asset Inventory",
"Flux Libre - Free Flow (BOT/BOO/BOC), AFL, Supervision, BOOST peage",
"asset.name:vpbot* or asset.name:vrbot* or asset.name:vibot* or asset.name:vvbot* or asset.name:vdbot* or asset.name:vpboo* or asset.name:vrboo* or asset.name:viboo* or asset.name:vvboo* or asset.name:vdboo* or asset.name:spboo* or asset.name:siboo* or asset.name:svboo* or asset.name:vpboc* or asset.name:vrboc* or asset.name:viboc* or asset.name:vvboc* or asset.name:vdboc* or asset.name:spboc* or asset.name:siboc* or asset.name:vpafl* or asset.name:vrafl* or asset.name:viafl* or asset.name:vvafl* or asset.name:vdafl* or asset.name:vpsupa* or asset.name:vrsupa* or asset.name:visupa* or asset.name:vvsupa* or asset.name:vpsupb* or asset.name:vrsupb* or asset.name:vppeaab* or asset.name:vrpeaab* or asset.name:vipeaab* or asset.name:vvpeaab* or asset.name:vrpeaak* or asset.name:vppeab* or asset.name:vrpeab* or asset.name:vipeab* or asset.name:vvpeab* or asset.name:vppeah* or asset.name:vrpeah* or asset.name:vipeah* or asset.name:vvpeah* or asset.name:vpnit*"),
("POS-INF", "#3F51B5", "DYN", "Asset Inventory",
"Infrastructure DSI - DNS/AD, Sauvegarde, Bureautique, SCCM, Logs, Video, GoAnywhere, PKI - voir dom_inf_rule_v2.txt",
"Voir fichier C:\\Claude\\sanef\\QL\\inputs\\dom_inf_rule_v2.txt (91 prefixes + 12 NOT exclusions)"),
("POS-PEA", "#673AB7", "DYN", "Asset Inventory",
"Peage - sites geographiques (ls-*), OSAP, SVP sanef, ADV, RPA, RPN",
"asset.name:ls-* or asset.name:lrpea* or asset.name:vdosa* or asset.name:viosa* or asset.name:vposa* or asset.name:vrosa* or asset.name:vpadv* or asset.name:vradv* or asset.name:vpsvp* or asset.name:vrsvp* or asset.name:vprpa* or asset.name:vrrpa* or asset.name:vprpn* or asset.name:vrrpn* or asset.name:vprps* or asset.name:vrrps* or asset.name:vpppe* or asset.name:vppeaaa* or asset.name:vppeaae* or asset.name:vppeaar* or asset.name:vpsimas* or asset.name:vraiia* or asset.name:vrboe* or asset.name:vrffb* or asset.name:vrgrs* or asset.name:vrpeaar*"),
("POS-TRA", "#E91E63", "DYN", "Asset Inventory",
"Trafic - AME/Sextan/Octan, Aquarius, Isis, RAU/ASUR, GDEPA, Exceptionnel, SIG. Inclut legacy vmam*",
"asset.name:vpame* or asset.name:vrame* or asset.name:viame* or asset.name:vvame* or asset.name:vdame* or asset.name:vmame* or asset.name:vmamp* or asset.name:vmamr* or asset.name:vmamd* or asset.name:vpdai* or asset.name:vrdai* or asset.name:vidai* or asset.name:vppat* or asset.name:vrpat* or asset.name:vipat* or asset.name:vprau* or asset.name:vrrau* or asset.name:vpdep* or asset.name:vrdep* or asset.name:vpsig* or asset.name:vrsig* or asset.name:visig* or asset.name:vpair* or asset.name:vrair*"),
("POS-BI", "#FF5722", "DYN", "Asset Inventory",
"Business Intelligence - SAS Decisionnel, SAS Viya, Bip&Go, Power BI, Reporting",
"asset.name:vdrep* or asset.name:vpapt* or asset.name:vpbipb* or asset.name:vpdec* or asset.name:vppbi* or asset.name:vpsas* or asset.name:vraptb* or asset.name:vrbip* or asset.name:vrdec* or asset.name:vrpbi*"),
("POS-GES", "#9E9D24", "DYN", "Asset Inventory",
"Gestion - Institutionnel, Intranet, AgileTime, Talend ETL",
"asset.name:lpagt* or asset.name:lragt* or asset.name:vdechat* or asset.name:vpagt* or asset.name:vpechat* or asset.name:vpint* or asset.name:vppin* or asset.name:vragt* or asset.name:vrechat* or asset.name:vrint* or asset.name:vpaiiat* or asset.name:vrdsiat* or asset.name:vpgesb* or asset.name:vrapta*"),
("NOM-LEGACY", "#795548", "DYN", "Asset Inventory",
"Serveur avec nommage pre-V3 a renommer - KPI dette de conformite - decroit auto au renommage",
'operatingSystem.category2:"Server" and not (asset.name:vp* or asset.name:vr* or asset.name:vi* or asset.name:vv* or asset.name:vd* or asset.name:vt* or asset.name:vo* or asset.name:vs* or asset.name:sp* or asset.name:sr* or asset.name:si* or asset.name:sd* or asset.name:sv* or asset.name:ss* or asset.name:st* or asset.name:so* or asset.name:lp* or asset.name:lr* or asset.name:ls-* or asset.name:li* or asset.name:lv* or asset.name:ld* or asset.name:lt*)'),
("TAG-EMV", "#D500F9", "DYN", "Asset Inventory",
"Asset en zone EMV/PCI-DSS - patching renforce, audits conformite",
"asset.name:vpemv* or asset.name:lpemv* or asset.name:lremv* or asset.name:vemvr* or asset.name:spemv* or asset.name:vemvs*"),
("TAG-OBS", "#B71C1C", "DYN", "Asset Inventory",
"OS obsolete/EOL SANEF (Win XP/2003/2008/2012/7, RHEL 5/6, CentOS 5/6/7, Ubuntu 14/16/18, Debian 8/9). ELS exclus manuellement via SQATM.",
'operatingSystem:"Windows XP" or operatingSystem:"Windows Server 2003" or operatingSystem:"Windows Server 2008" or operatingSystem:"Windows Server 2012" or operatingSystem:"Windows 7" or operatingSystem:"Red Hat Enterprise Linux Server 5" or operatingSystem:"Red Hat Enterprise Linux Server 6" or operatingSystem:"CentOS 5" or operatingSystem:"CentOS 6" or operatingSystem:"CentOS 7" or operatingSystem:"Ubuntu 14" or operatingSystem:"Ubuntu 16" or operatingSystem:"Ubuntu 18" or operatingSystem:"Debian 8" or operatingSystem:"Debian 9"'),
]
for row in dyn_tags:
ws1.append(row)
for r in range(2, len(dyn_tags) + 2):
color_cell = ws1.cell(row=r, column=2)
hex_val = color_cell.value
if hex_val and hex_val.startswith("#"):
color_cell.fill = PatternFill("solid", fgColor=hex_val[1:])
color_cell.font = Font(color="FFFFFF", bold=True)
color_cell.alignment = Alignment(horizontal="center")
for i, w in enumerate([18, 14, 7, 18, 60, 90], 1):
ws1.column_dimensions[get_column_letter(i)].width = w
for row in ws1.iter_rows(min_row=2, max_row=len(dyn_tags) + 1):
for cell in row:
cell.alignment = Alignment(wrap_text=True, vertical="top")
for r in range(2, len(dyn_tags) + 2):
ws1.row_dimensions[r].height = 60
# ============== Sheet 2: Tags Statiques (STAT) ==============
ws2 = wb.create_sheet("Tags Statiques (STAT)")
ws2.append(["Tag", "Couleur (hex)", "Description", "Action / Source"])
for cell in ws2[1]:
cell.font = Font(bold=True, color="FFFFFF")
cell.fill = PatternFill("solid", fgColor="263238")
cell.alignment = Alignment(horizontal="center")
stat_tags = [
("TAG-SED", "#C62828",
"Securite Exposition Directe - frontaux IP publique (firewalls, F5, HAProxy DMZ, AOV, WAP, proxy)",
"Bulk SQATM - liste actuelle dans bulk_tag_sed.txt (10 assets)"),
("TAG-SEI", "#EF6C00",
"Securite Exposition Indirecte - backends DMZ derriere frontaux (Exchange, DNS, OwnCloud, BOOST backends)",
"Bulk SQATM - liste actuelle dans bulk_tag_sei.txt (22 assets)"),
("TAG-ELS", "#1B5E20",
"Serveur sous Extended Life License (support securite etendu payant) - exception EOL",
"Manuel SQATM - a remplir au cas par cas selon contrats ELS"),
("TAG-DEC", "#6D4C41",
"Decommissionnement en cours - asset a supprimer dans 1 mois",
"Manuel SQATM - decision operationnelle ITOP"),
("TAG-INT", "#FDD835",
"Integration / Implementation en cours - vulnerabilites normales pendant phase deploiement",
"Manuel SQATM - retirer a la MEP"),
("TAG-SIC", "#1A237E",
"Zone SIC - Systeme Information Classifie",
"Manuel SQATM - validation architecte securite"),
("TAG-SIA", "#283593",
"Zone SIA - Systeme Information Administration",
"Manuel SQATM - validation architecte securite"),
]
for row in stat_tags:
ws2.append(row)
for r in range(2, len(stat_tags) + 2):
color_cell = ws2.cell(row=r, column=2)
hex_val = color_cell.value
if hex_val and hex_val.startswith("#"):
color_cell.fill = PatternFill("solid", fgColor=hex_val[1:])
color_cell.font = Font(color="FFFFFF", bold=True)
color_cell.alignment = Alignment(horizontal="center")
for i, w in enumerate([14, 14, 60, 50], 1):
ws2.column_dimensions[get_column_letter(i)].width = w
for row in ws2.iter_rows(min_row=2, max_row=len(stat_tags) + 1):
for cell in row:
cell.alignment = Alignment(wrap_text=True, vertical="top")
for r in range(2, len(stat_tags) + 2):
ws2.row_dimensions[r].height = 50
# ============== Sheet 3: Prefixes Manuels ==============
ws3 = wb.create_sheet("Prefixes manuels")
ws3.append(["Prefixe", "Description", "Source"])
for cell in ws3[1]:
cell.font = Font(bold=True, color="FFFFFF")
cell.fill = PatternFill("solid", fgColor="263238")
cell.alignment = Alignment(horizontal="center")
manual = [
("APP-xxx", "Application hebergee (APP-SAT, APP-JIRA, APP-GLPI, APP-GED)", "Manuel - non deductible du hostname, declaration projet"),
("BDD-xxx", "Type de base de donnees (BDD-ORA, BDD-PG, BDD-SQL, BDD-MONGO)", "Semi-manuel - sous-zone b dans hostname suggere BDD, mais type a confirmer"),
("VRF-xxx", "VRF reseau (VRF-TRAFIC, VRF-EMV, VRF-INTERPHONE)", "Manuel - depend architecture reseau, demander equipe reseau"),
("MID-xxx", "Middleware (MID-TOMCAT, MID-HAPROXY, MID-NGINX, MID-APACHE)", "Manuel - necessite scan applicatif ou declaration technique"),
("VULN-xxx", "Vulnerabilite specifique (VULN-LOG4J, VULN-OPENSSL)", "Manuel - creation ad-hoc lors d'incidents/CVE majeurs"),
]
for row in manual:
ws3.append(row)
for i, w in enumerate([12, 60, 60], 1):
ws3.column_dimensions[get_column_letter(i)].width = w
for row in ws3.iter_rows(min_row=2, max_row=len(manual) + 1):
for cell in row:
cell.alignment = Alignment(wrap_text=True, vertical="top")
for r in range(2, len(manual) + 2):
ws3.row_dimensions[r].height = 40
out = r"C:\Claude\sanef\QL\docs\SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx"
wb.save(out)
print("Saved:", out)
import os
print("Size:", os.path.getsize(out), "bytes")

View File

@ -0,0 +1,731 @@
"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score"
"139158019","198270644","vmampsxt1","","00:50:56:82:6C:1A, 00:50:56:82:78:82, 00:50:56:82:3A:E9","10.41.40.30,10.41.40.34,10.43.4.30,10.43.40.30","fe80::250:56ff:fe82:6c1a,fe80::250:56ff:fe82:7882,fe80::250:56ff:fe82:3ae9","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 05 0b 89 c3 eb de-0d e3 a8 e1 0e 4a 54 b4","No Asset Tag","'+02:00","2023-01-12T01:48:29.000+02:00","cybreconcile","Cloud Agent","10b2836a-1caa-4515-b53e-7d5cb5467814","2022-09-07T14:33:57.000+02:00","2026-04-22T11:11:28.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,Sextan,DEX,Production,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Obsolete","699.0"
"130582850","192832077","vmamrgtc2","","00:50:56:82:7D:66, 00:50:56:82:07:63, 00:50:56:82:6A:AF","10.45.3.161,10.45.3.163,10.45.4.161,10.45.2.161,10.45.2.163","fe80::250:56ff:fe82:7d66,fe80::250:56ff:fe82:763,fe80::250:56ff:fe82:6aaf","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 03 1b b4 15 d0 7a-05 7e 5f fb bf 72 e0 31","No Asset Tag","'+02:00","2025-10-09T12:05:15.000+02:00","cybadmsys","Cloud Agent","fe8956e8-cc60-44ed-93e2-95a307f07f07","2022-07-07T11:12:20.000+02:00","2026-04-22T11:11:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,log4j,Obsolete,MIVISU,Recette,Sans,Trafic,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","876.0"
"409023782","364788937","vibotaapm1.sanef.groupe","","00:50:56:90:b8:1f","10.41.23.143","fe80::250:56ff:fe90:b81f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 6e f9 5e ec 09 b9-3e 79 59 f7 ec b8 2c 41","No Asset Tag","'+02:00","2026-03-17T11:24:22.000+02:00","cybreconcile","Cloud Agent","d317fd6d-41de-45f0-b603-2b4ddaf50e25","2026-03-17T11:25:23.000+02:00","2026-04-22T11:09:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,log4j,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Flux Libre,Production","141.0"
"180108924","232626124","vrrauaapp1.sanef-rec.fr","","00:50:56:9c:08:6c","10.45.9.231","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f3 f0 6e 7f d0 d4-00 4c ef 10 4f 7e 47 ba","No Asset Tag","'+02:00","2026-04-21T11:55:01.000+02:00","cybadmsys","Cloud Agent","5ca517d7-929e-4f09-8fee-edbbbc6f41a7","2023-07-26T18:19:32.000+02:00","2026-04-22T11:09:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,ASUR","72.0"
"241525484","276502495","vpvsaaafl1.sanef.groupe","","00:50:56:90:45:45","10.42.16.85","fe80::250:56ff:fe90:4545","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 b2 c1 38 2f d8 a4-1c 11 56 ea 3c 71 cb 82","No Asset Tag","'+02:00","2026-02-03T11:47:12.000+02:00","tbaad","Cloud Agent","e0cba33a-5464-467a-8be6-0bbb288c670c","2024-06-04T11:16:43.000+02:00","2026-04-22T11:08:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Linux Server,Cloud Agent","52.0"
"195071010","241703493","vpbocrsap1.sanef.groupe","","00:50:56:90:71:93","10.41.22.13","fe80::250:56ff:fe90:7193","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 00 d0 64 ae e0 2c-b0 0f dd 9e 31 1d a6 a8","No Asset Tag","'+02:00","2026-04-01T22:04:13.000+02:00","cybreconcile","Cloud Agent","227888cb-7d76-4544-b9e0-11c380a98427","2023-10-24T08:02:17.000+02:00","2026-04-22T11:07:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,Flux Libre,flux_libre,FreeFlow","337.0"
"218502735","253210495","viosapquo1.sanef.groupe","","00:50:56:90:5a:44","10.100.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 f2 8e be 55 ad fe-e6 88 8d cc 59 f3 c5 51","No Asset Tag","'+02:00","2026-02-19T15:45:05.000+02:00","cybadmroot","Cloud Agent","e95202a1-eb90-4277-a712-a8862f9b648e","2024-02-28T15:03:52.000+02:00","2026-04-22T11:06:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,Péage","141.0"
"139158024","198270620","vmampsxt2","","00:50:56:82:77:D6, 00:50:56:82:34:57, 00:50:56:82:30:7E","10.41.40.31,10.43.40.31,10.43.4.31","fe80::250:56ff:fe82:77d6,fe80::250:56ff:fe82:3457,fe80::250:56ff:fe82:307e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 91 fb 5b cb 7f 86-3e 56 f5 cd 77 f3 57 ec","No Asset Tag","'+02:00","2023-05-31T07:04:09.000+02:00","cybreconcile","Cloud Agent","0d8914c4-4d68-4530-8886-bbdb7c9420e2","2022-09-07T14:34:34.000+02:00","2026-04-22T11:32:18.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,DEX,Trafic,Production,Obsolete","699.0"
"392620270","358316603","VRSIGAFRT1","","00:50:56:9c:95:f8","10.45.2.30","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 9f d5 6a 2a 5e f9-44 65 bf 9d 87 fb 80 e4","No Asset Tag","'+02:00","2026-02-05T16:20:10.000+02:00","cybsupapp","Cloud Agent","8d3fa3dd-efb7-49a7-be36-fb674f82e453","2026-01-16T11:07:44.000+02:00","2026-04-22T11:11:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,SIG,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","209.0"
"191424031","239727602","vibooaboo1.sanef.groupe","","00:50:56:90:46:2d","10.41.22.202","fe80::250:56ff:fe90:462d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 51 f3 e9 df 6e dc-ae 9f c0 29 18 dc 87 02","No Asset Tag","'+02:00","2026-03-17T15:35:43.000+02:00","cybsupemo","Cloud Agent","634cc72d-dc9c-440e-b3a6-903fce7680e1","2023-10-04T17:56:01.000+02:00","2026-04-22T11:03:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","142.0"
"193617840","240981756","vpbocs4as1.sanef.groupe","","00:50:56:90:ff:70","10.41.22.8","fe80::250:56ff:fe90:ff70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9f 64 ec 68 d3 ef-1e 56 f5 62 bf aa f4 22","No Asset Tag","'+02:00","2026-04-01T21:57:40.000+02:00","cyblecibm","Cloud Agent","28b031bd-a7eb-41c0-8723-e914f54013b2","2023-10-16T12:48:26.000+02:00","2026-04-22T11:03:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow,Flux Libre","331.0"
"397149291","360233116","vrtrabwaz1.sanef-rec.fr","","00:50:56:9c:e7:8b","10.45.2.122","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 17 40 34 86 d1 1d-3c 88 67 37 0c 23 a0 61","No Asset Tag","'+02:00","2026-02-03T15:02:51.000+02:00","cybadmsys","Cloud Agent","57f46af5-a757-4507-9732-85f9416913e8","2026-02-03T15:03:11.000+02:00","2026-04-22T11:02:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Waze,DSI,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-ELA DYN","141.0"
"353299227","341953317","srlogbels1.sanef-rec.fr","","20:67:7c:e6:8d:70","10.45.15.166","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31368","HPE U41 07/14/2022","CZJ84600RS","","'+02:00","2026-02-02T17:49:49.000+02:00","cybintsys","Cloud Agent","ed621be3-cd42-4c0f-951f-29c2db90c7d6","2025-08-21T12:18:21.000+02:00","2026-04-22T11:00:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Elasticsearch,OS-LIN-SRV DYN,BDD-ELA DYN","66.0"
"167744583","224051603","vppciaquo1.sanef.groupe","","00:50:56:82:b0:c3","10.100.16.7","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 0a db 33 18 00 31-85 ee aa f6 39 56 64 14","No Asset Tag","'+02:00","2026-01-29T16:14:16.000+02:00","cybreconcile","Cloud Agent","03dd0271-a066-49a4-b810-02d4a3549e2a","2023-04-24T15:01:14.000+02:00","2026-04-22T10:59:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,3PAR","142.0"
"340053174","336780155","vppwdapod2.sanef.groupe","","00:50:56:94:ad:ab","10.44.1.201","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 4a 37 e9 9b ea 21-a3 99 f3 77 a9 17 30 1e","No Asset Tag","'+02:00","2026-01-07T11:18:29.000+02:00","cybreconcile","Cloud Agent","b251eede-5a9f-4dca-91b2-ca4b548ab442","2025-07-08T10:16:06.000+02:00","2026-04-22T10:58:03.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD,Production","330.0"
"303906796","322171226","vrdepaapp1.sanef-rec.fr","","00:50:56:9c:66:a4","10.45.13.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 5f 6d 29 e6 4f 92-1f a9 bb b3 58 54 7b 1f","No Asset Tag","'+02:00","2026-01-15T16:42:52.000+02:00","cybsupapp","Cloud Agent","4c109497-abf2-404a-9f8b-924ba90a89fc","2025-02-27T19:22:22.000+02:00","2026-04-22T10:57:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,OS-LIN-SRV DYN","142.0"
"395535068","359520750","vrsigaags1.sanef-rec.fr","","00:50:56:9c:fb:29","10.45.2.34","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","96044","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 35 eb b0 06 e8 f7-3c 0b b7 24 dc 5e 8d 60","No Asset Tag","'+02:00","2026-02-25T13:38:54.000+02:00","cybsupapp","Cloud Agent","6e83ddb8-2fde-4e1e-979a-38b727b186e6","2026-01-28T11:51:07.000+02:00","2026-04-22T10:57:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,MID-APACHE-TOMCAT DYN,Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server","215.0"
"229361884","257999675","vpsupacen1.sanef.groupe","","00:50:56:8d:f7:2f","10.44.5.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 07 75 63 a4 b8 eb-7b da 58 0b 66 9a fe fc","No Asset Tag","'+02:00","2026-03-30T10:14:48.000+02:00","cybreconcile","Cloud Agent","7dd688ec-3925-434e-99cc-5fb2cb56ea12","2024-04-11T15:33:08.000+02:00","2026-04-22T10:56:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","147.0"
"214502631","251415990","vipeaabst2.sanef.groupe","","00:50:56:90:d6:99","10.41.29.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31887","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 4a 01 cf c9 73-00 f2 23 5c 48 14 bc 74","No Asset Tag","'+02:00","2026-03-19T11:07:03.000+02:00","cybintsys","Cloud Agent","16ba225b-3ebd-4d20-94b3-681bca23e83d","2024-02-08T14:29:40.000+02:00","2026-04-22T10:55:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,OS-LIN-SRV DYN,MID-NGINX DYN,ServersInCyberark,Production,FreeFlow,Cloud Agent,Linux Server,DSI,BOOST","138.0"
"303886597","322164389","vrdepbels1.sanef-rec.fr","","00:50:56:9c:9d:7a","10.45.13.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 95 98 f1 c2 2e db-e4 64 6d f5 d1 af d9 fe","No Asset Tag","'+02:00","2026-01-15T16:11:41.000+02:00","cybsupapp","Cloud Agent","34249e96-671f-43b7-935d-f5a5d28b93ca","2025-02-27T17:39:09.000+02:00","2026-04-22T10:55:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion dépanneurs,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN,Recette","141.0"
"354679518","342495237","vpechaetl1.sanef.groupe","","00:50:56:90:13:ae","10.42.16.141","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 61 ad e4 e1 c4 e6-50 86 97 42 1a 06 6a c4","No Asset Tag","'+02:00","2026-03-27T16:31:11.000+02:00","cybexpapp","Cloud Agent","593594e4-9804-4fe4-802a-adfb88685958","2025-08-26T17:08:59.000+02:00","2026-04-22T10:53:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","144.0"
"173355077","227828424","vvboomocr1.sanef-rec.fr","","00:50:56:9c:34:ff","10.45.6.72","fe80::250:56ff:fe9c:34ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 4b 9f 48 e9 62-7c b2 8e c5 d8 29 5e 86","No Asset Tag","'+02:00","2026-03-12T11:22:06.000+02:00","cybsupsys","Cloud Agent","760759b1-6518-417e-ab86-e7506e32e626","2023-06-07T10:48:55.000+02:00","2026-04-22T10:53:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,Flux Libre,FreeFlow","335.0"
"298442394","319181985","vpameapmv2.sanef.groupe","","00:50:56:8f:67:12, 00:50:56:8f:c6:bd","10.44.201.4,10.44.201.5,172.16.255.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f c5 37 86 2e 75 2d-f8 cf 44 ad a0 21 cc 8d","No Asset Tag","'+02:00","2026-03-18T14:16:03.000+02:00","cybreconcile","Cloud Agent","f8fe228c-2645-47c2-a24b-e13d254312ad","2025-02-07T10:24:08.000+02:00","2026-04-22T10:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC","140.0"
"377749981","352186177","vrdsiahax2.sanef-rec.fr","","00:50:56:9c:e2:54","192.168.19.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c9 8b 2e f0 a5 15-25 c9 53 68 f9 ba b8 7d","No Asset Tag","'+02:00","2026-02-04T19:26:12.000+02:00","root","Cloud Agent","5c007b24-47c5-4afe-ab4d-683b7016bb91","2025-11-19T15:05:28.000+02:00","2026-04-22T10:52:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,DMZ,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","329.0"
"137331600","197583171","vpairahtp1.sanef.groupe","","00:50:56:82:e0:c4","10.42.40.136","fe80::250:56ff:fe82:e0c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 72 4e 68 04 83 7e-58 b6 7b d5 ca 9f 17 59","No Asset Tag","'+02:00","2026-01-20T16:45:09.000+02:00","cybreconcile","Cloud Agent","56fa8823-0386-4790-8b91-3d896b270b3a","2022-08-30T15:47:32.000+02:00","2026-04-22T10:51:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_AIRES_DC,Production,VISIONAIRE,DSG,Cloud Agent,Linux Server,OS-LIN-SRV DYN","208.0"
"238724130","269608771","vpbotarep1.sanef.groupe","","00:50:56:90:8d:5d","10.41.23.28","fe80::250:56ff:fe90:8d5d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c1 91 ba 08 ed 99-f7 2c 35 90 ca 0c 84 06","No Asset Tag","'+02:00","2026-04-21T09:42:10.000+02:00","cybreconcile","Cloud Agent","c6093b94-cfd4-4f0e-a877-2643ba5a1570","2024-05-23T09:07:48.000+02:00","2026-04-22T11:49:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","141.0"
"354676610","342490002","vpdsiarad2.sanef.groupe","","00:50:56:94:21:0f","10.44.5.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 2e e0 26 26 f3-ff 9b df c2 a7 54 5d 8a","No Asset Tag","'+02:00","2026-03-24T11:02:46.000+02:00","cybsupsys","Cloud Agent","92dcb81c-7828-431a-bb3d-fa959e0012eb","2025-08-26T16:07:05.000+02:00","2026-04-22T10:50:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Production,OS-LIN-SRV DYN","152.0"
"211396220","250074202","vrpeaabst2.sanef-rec.fr","","00:50:56:9c:3e:65","10.45.10.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 8a 5d 9f 66 81 57-f5 aa 2c af 74 79 ad 91","No Asset Tag","'+02:00","2026-02-18T10:32:29.000+02:00","cybadmsys","Cloud Agent","ff752b7b-dfd0-4567-9c80-a7d1a8f826c5","2024-01-23T16:35:20.000+02:00","2026-04-22T10:50:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,DSI,MID-NGINX DYN,BOOST,Cloud Agent,Linux Server","141.0"
"304663556","322548088","vpdsiacol1.sanef.groupe","","00:50:56:94:78:19","10.44.6.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3633","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 aa 0b 3c 84 76 53-22 9a bc 46 16 89 ec c8","No Asset Tag","'+02:00","2026-02-10T12:02:50.000+02:00","cybreconcile","Cloud Agent","3b9bb29c-fce6-4c73-9004-d11afc152a84","2025-03-03T17:41:39.000+02:00","2026-04-22T11:06:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Collecte,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0"
"213124947","250790137","vpbckangw2","","00:50:56:90:38:e1","192.168.18.53","fe80::250:56ff:fe90:38e1","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e5 42 78 14 7e ac-70 23 d5 d7 f9 a5 1e ae","No Asset Tag","'+02:00","2026-02-03T16:26:24.000+02:00","tbaad-ext","Cloud Agent","fe53c135-a3e3-4b9e-8799-d5a69e262ece","2024-02-01T12:19:29.000+02:00","2026-04-22T10:50:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0"
"376422961","351518009","vpcybapsp2.sanef.groupe","","00:50:56:9c:ad:ff","10.44.1.75","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 88 13 5d fe e4 76-36 ee ef c2 c2 2c f3 fe","No Asset Tag","'+02:00","2026-03-25T09:37:27.000+02:00","cybreconcile","Cloud Agent","fc4dde3c-a938-418c-83c2-b9580dca77de","2025-11-13T17:22:02.000+02:00","2026-04-22T10:50:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production,CyberArk","152.0"
"399388387","361109979","vpemvgrid1.sanef.groupe","","00:50:56:98:14:19","192.168.100.134","fe80::250:56ff:fe98:1419","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12014","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 bb 96 25 25 31 2f-51 61 f2 c8 80 9b 2f f4","No Asset Tag","'+02:00","2026-02-23T13:42:54.000+02:00","oracle","Cloud Agent","b3ab440e-70fb-464c-a39e-732fe598b29c","2026-02-11T16:29:42.000+02:00","2026-04-22T10:49:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Supervision/Admin","675.0"
"228724304","257679746","vpbocarep1.sanef.groupe","","00:50:56:90:4d:3f","10.41.22.15","fe80::250:56ff:fe90:4d3f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 eb d4 a9 d7 76 f8-6e 5d 1f c0 70 0a ff 91","No Asset Tag","'+02:00","2026-04-01T15:24:47.000+02:00","root","Cloud Agent","963196f6-3330-423e-a96d-169fbf6bd5f9","2024-04-09T15:45:58.000+02:00","2026-04-22T10:49:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","141.0"
"411843487","365824440","vpgrnangx1.sanf.groupe","","00:50:56:90:c3:b8","10.41.20.86","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 a1 09 cb 55 e4 13-15 d3 2f 2f 4f 03 93 0f","No Asset Tag","'+02:00","2026-04-07T15:57:21.000+02:00","cybreconcile","Cloud Agent","5379e72b-39b4-49d6-9e9e-853d210ec86d","2026-03-27T12:18:22.000+02:00","2026-04-22T10:48:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,MID-NGINX DYN,BDD-POS DYN","65.0"
"263390489","297610057","vpexpbtex1","","00:50:56:90:c0:39","10.41.40.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 62 82 88 d0 ee 44-e9 67 ea 57 98 11 a4 d9","No Asset Tag","'+02:00","2026-01-27T12:14:47.000+02:00","cybadmsys","Cloud Agent","6af103f5-23a9-41b0-b8c6-8f835ca4a28d","2024-09-05T16:32:37.000+02:00","2026-04-22T10:48:01.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,Transports Exceptionnels,Production","140.0"
"378066936","352311408","vrlogakib1.sanef-rec.fr","","00:50:56:9c:38:fd","10.45.15.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c af 39 c1 9f 41 cf-cc 46 d1 e9 26 d7 32 33","No Asset Tag","'+02:00","2026-04-01T11:10:02.000+02:00","cybintsys","Cloud Agent","327e1c61-7538-444e-a0f4-3c22fa18c725","2025-11-20T14:34:39.000+02:00","2026-04-22T10:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Elasticsearch,Recette,Linux Server,OS-LIN-SRV DYN,Cloud Agent","141.0"
"378055243","352306883","vpdsiahap3.sanef.groupe","","00:50:56:90:c5:fa","192.168.19.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 97 fc c2 b8 0c 7e-f6 b5 af 0c 61 d8 ad 2b","No Asset Tag","'+02:00","2025-11-20T13:34:06.000+02:00","cybintsys","Cloud Agent","c5dde6fe-987d-4bdb-8ceb-b9b0c2ae9450","2025-11-20T13:35:25.000+02:00","2026-04-22T10:47:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0"
"196660267","242432304","vpboobsql2.sanef.groupe","","00:50:56:90:b3:02","10.41.22.134","fe80::250:56ff:fe90:b302","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ce 59 56 16 2c 22-65 32 42 14 2c 26 84 20","No Asset Tag","'+02:00","2026-04-07T11:46:42.000+02:00","cybreconcile","Cloud Agent","7dc6ec33-0e00-4be0-9fb2-f511617b86bc","2023-10-31T18:19:55.000+02:00","2026-04-22T10:47:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Production,flux_libre","334.0"
"249342100","288692146","vrameapmv1.sanef-rec.fr","","00:50:56:9c:b9:3e","10.45.2.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c bb 59 92 e1 aa 18-03 0e af 7e 87 b5 cc 1b","No Asset Tag","'+02:00","2026-04-21T10:27:54.000+02:00","cybsecope","Cloud Agent","05bbc933-a556-453b-9f7f-bd557bcd68f6","2024-07-08T17:16:22.000+02:00","2026-04-22T11:50:52.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,MIVISU","35.0"
"218323011","252975059","vibooangx1.sanef.groupe","","00:50:56:90:71:74","10.41.22.210","fe80::250:56ff:fe90:7174","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 07 30 0f f5 c4 62-77 36 26 4f bd 90 cd 12","No Asset Tag","'+02:00","2026-03-16T10:30:25.000+02:00","cyblecemo","Cloud Agent","bcb8fffd-18e8-49e4-82f8-b497091a040a","2024-02-26T15:44:06.000+02:00","2026-04-22T10:46:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,ServersInCyberark,Flux Libre,Production,flux_libre,OS-LIN-SRV DYN,FreeFlow,MID-NGINX DYN","141.0"
"196663725","242433778","vpbooangx1.sanef.groupe","","00:50:56:90:8b:75","10.41.22.147","fe80::250:56ff:fe90:8b75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 5a 08 bf 7c 15 ff-c6 77 73 1c 71 3f d7 52","No Asset Tag","'+02:00","2026-04-07T11:44:54.000+02:00","cybreconcile","Cloud Agent","dc64af1f-5e04-4377-9ece-46ead1446236","2023-10-31T18:38:48.000+02:00","2026-04-22T10:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,flux_libre,Cloud Agent,Linux Server","329.0"
"189172820","238405709","vvpeaarcv1.sanef-rec.fr","","00:50:56:9c:45:ba","10.45.6.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 61 6f 3e 31 c1 79-c2 ac 1f 06 da a9 f8 45","No Asset Tag","'+02:00","2026-03-12T10:33:09.000+02:00","cybreconcile","Cloud Agent","4df11211-78c4-4dac-bc9f-fd7df91d89d4","2023-09-21T13:11:50.000+02:00","2026-04-22T10:45:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Recette,flux_libre","333.0"
"139157052","198270704","vmamptd1.sanef.groupe","","00:50:56:82:5B:C6","10.41.40.165","fe80::250:56ff:fe82:5bc6","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 81 c7 66 1d 69-91 26 2c 88 c7 a1 34 9d","No Asset Tag","'+02:00","2025-09-29T15:02:30.000+02:00","cybreconcile","Cloud Agent","dbadc8c6-f389-483b-b396-cf73f4190b36","2022-09-07T14:36:49.000+02:00","2026-04-22T10:44:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Obsolete,Production,Trafic,Traffic,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN","692.0"
"238272359","269262153","vipeahbst1.sanef.groupe","","00:50:56:90:10:e3","192.168.31.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 de 88 b6 2b cd 2b-3c 44 43 0e b9 e9 28 23","No Asset Tag","'+02:00","2026-04-14T10:29:18.000+02:00","cybsecope","Cloud Agent","b46fa68f-ff5c-405c-bd2d-5cad329b7181","2024-05-21T14:50:12.000+02:00","2026-04-22T10:44:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,flux_libre,Flux Libre,Cloud Agent,Linux Server,Recette","132.0"
"314908353","326677556","vrdsiasaf1","","f6:61:32:36:b7:b5, 00:50:56:9c:e5:c6, fe:33:26:30:9c:77","10.88.0.1,192.168.19.24","fe80::f8b1:5eff:fe68:216d,fe80::fc33:26ff:fe30:9c77","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ac e5 79 a1 c0 a5-4a 99 9d 16 77 01 76 51","No Asset Tag","'+02:00","2026-04-20T17:49:21.000+02:00","cybadmroot","IP Scanner, Cloud Agent","ff0da179-fcc8-4758-8ed2-0b28c8518524","2025-04-09T16:45:51.000+02:00","2026-04-22T10:43:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Radius,Recette","248.0"
"157615760","210413258","vppintaels1.sanef.groupe","","00:50:56:82:56:38","10.46.39.15","fe80::250:56ff:fe82:5638","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 67 e6 ec 03 d8 ff-cd 63 a1 e6 58 67 72 c4","No Asset Tag","'+02:00","2026-02-25T10:47:56.000+02:00","cybadmbdd","Cloud Agent","7cf47c07-db57-42f5-85a7-946d89b050c1","2023-02-01T16:29:03.000+02:00","2026-04-22T10:43:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,VRF_INCONNUE,Gestion institutionnel,Cloud Agent,Linux Server","142.0"
"308850037","323875092","vrdsibetc2.sanef-rec.fr","","00:50:56:9c:90:88","10.45.1.177","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e6 68 6c 62 dc b0-23 8f 1c 27 bc e3 ba 97","No Asset Tag","'+02:00","2026-01-06T13:52:01.000+02:00","cybadmbdd","Cloud Agent","14801267-3beb-415f-9814-d19dfa280886","2025-03-17T18:36:36.000+02:00","2026-04-22T10:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Recette","141.0"
"139156976","198270451","vmamprdt1","","00:50:56:82:25:F8, 00:50:56:82:4B:AD, 00:50:56:82:09:77","10.43.4.70,10.41.40.70,10.41.40.72,10.41.40.73,10.43.40.70,10.43.40.72,10.43.40.73","fe80::250:56ff:fe82:25f8,fe80::250:56ff:fe82:4bad,fe80::250:56ff:fe82:977","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ea be bd f8 2c 6f-19 ab 4a da 29 5a d0 7d","No Asset Tag","'+02:00","2024-02-13T14:07:37.000+02:00","cybreconcile","Cloud Agent","76dece7b-0c6b-4cc5-9b36-abc9e5c62828","2022-09-07T14:30:36.000+02:00","2026-04-22T10:43:09.000+02:00","x86_64","5","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,MIVISU,Obsolete,OS-LIN-SRV DYN,Trafic,DEX","873.0"
"152255312","206859174","vpsasapil1.sanef.groupe","","00:50:56:82:dd:e9","10.41.32.20","fe80::250:56ff:fe82:dde9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7f 0d 6d e4 1d 96-c0 af 50 d0 23 ae 67 95","No Asset Tag","'+02:00","2026-03-25T16:10:58.000+02:00","cybreconcile","Cloud Agent","3ed9295c-e2c3-464f-875e-3a275e57972b","2022-12-16T15:39:51.000+02:00","2026-04-22T10:43:06.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,SAS,VRF_BURO_DC,OS-LIN-SRV DYN,Cloud Agent,Linux Server","92.0"
"201497726","244876565","vrtrabkme1.sanef-rec.fr","","00:50:56:9c:3f:de","10.45.10.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 25 ac b3 44 9b 92-e5 d1 d0 4c 93 54 c3 6a","No Asset Tag","'+02:00","2026-04-14T11:01:22.000+02:00","cybsecope","Cloud Agent","a7ed7b48-7fe5-4dda-b18c-f3fbe85dd2e0","2023-11-29T12:34:35.000+02:00","2026-04-22T10:43:01.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server,MID-NGINX DYN,Masterparc,OS-LIN-SRV DYN","117.0"
"173357493","227829060","vvbooaori1.sanef-rec.fr","","00:50:56:9c:37:83","10.45.6.79","fe80::250:56ff:fe9c:3783","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 19 cb 03 85 c0 a7-a8 dd bf e6 55 b5 91 e8","No Asset Tag","'+02:00","2026-03-12T11:20:36.000+02:00","podman_app","Cloud Agent","9b7e7cf0-343a-44f4-8a57-947a81ee0c3b","2023-06-07T10:53:31.000+02:00","2026-04-22T10:16:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","140.0"
"173355626","227827000","vvboobsql1.sanef-rec.fr","","00:50:56:9c:10:ac","10.45.6.68","fe80::250:56ff:fe9c:10ac","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 67 8f 66 4d 2f 26-d9 bf 06 b0 89 87 88 0a","No Asset Tag","'+02:00","2026-03-12T11:02:18.000+02:00","cybsupsys","Cloud Agent","27757c4b-5d68-4f2c-b905-3a12dbc66d1e","2023-06-07T10:31:40.000+02:00","2026-04-22T10:42:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Recette,flux_libre","144.0"
"318424837","328042212","vrameakfk1.sanef-rec.fr","","00:50:56:9c:c4:6a","10.45.2.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d4 f5 49 4e da 8d-98 48 7e af d0 57 37 53","No Asset Tag","'+02:00","2026-04-20T09:03:47.000+02:00","cybsupapp","Cloud Agent","0fc3c02f-b771-4d49-8ef4-7a25ef38c735","2025-04-22T14:33:15.000+02:00","2026-04-22T10:59:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Amelie,Recette,OS-LIN-SRV DYN","48.0"
"411130803","365528397","vplogbels2","","00:50:56:94:9d:ba","10.44.7.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 04 5d 4b f2 6c 70-c3 2d c9 2d 77 df 67 ec","No Asset Tag","'+02:00","2026-04-07T12:00:16.000+02:00","cybsecope","Cloud Agent","f216911a-a924-4624-8ab1-f790e0861580","2026-03-24T17:15:48.000+02:00","2026-04-22T10:42:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-ELA DYN","66.0"
"354679096","342495682","vpechaetl4.sanef.groupe","","00:50:56:90:36:6c","10.42.16.144","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0b ee b6 64 c0 73-30 6e 16 d7 0f f0 bb f6","No Asset Tag","'+02:00","2026-02-12T16:12:05.000+02:00","cybsecope","Cloud Agent","a7123e67-8e4f-4bcd-a82f-1a6771ff4d57","2025-08-26T17:15:03.000+02:00","2026-04-22T10:41:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0"
"379841430","353008348","vtdsiatmp1.sanef.groupe","","00:50:56:82:3a:d6","10.43.253.4","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 15 56 a7 e3 a7 24-c6 67 23 21 67 98 c5 76","No Asset Tag","'+02:00","2026-04-14T14:17:53.000+02:00","root","Cloud Agent","cf933cbc-f4d7-4fd2-8840-4d3d428abf86","2025-11-27T18:45:57.000+02:00","2026-04-22T11:00:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0"
"331385324","333860818","vpmonaftp1.sanef.groupe","","00:50:56:90:7f:60","10.41.20.80","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 19 aa 94 6a 9b c1-e9 8f 8c 58 2e d0 b9 40","No Asset Tag","'+02:00","2025-11-20T16:13:29.000+02:00","cybreconcile","Cloud Agent","11292117-193f-4e71-860e-893257d74414","2025-06-06T09:58:55.000+02:00","2026-04-22T10:41:09.000+02:00","x86_64","2","SCA,VM,GAV","Production,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0"
"287936544","311537310","vrosapels1.sanef-rec.fr","","00:50:56:9c:3e:a7","10.45.9.71","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 80 bd e9 ea 0f-6d fc 5b 26 ce 3f bc 34","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","26000044-0bd2-432b-b647-8f734d7a09d3","2024-12-20T13:09:33.000+02:00","2026-04-22T10:40:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0"
"156225794","209332073","vppintbweb1.sanef.groupe","","00:50:56:82:e5:f5","10.46.39.16","fe80::250:56ff:fe82:e5f5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15760","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 b5 93 e7 22 ca 8a-cb 55 2d 85 89 c6 13 76","No Asset Tag","'+02:00","2026-02-23T15:32:16.000+02:00","cybreconcile","Cloud Agent","8244acf6-c516-4fe9-a1da-77d4b1abb84a","2023-01-20T15:10:06.000+02:00","2026-04-22T10:40:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,VRF_BURO_DC,Gestion institutionnel,Cloud Agent,Linux Server","144.0"
"358170685","344041759","vpdsiagrd1.sanef.groupe","","00:50:56:90:50:a9","192.168.19.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 0d d0 92 e3 ad f2-6b 12 7f eb 1a 34 a6 00","No Asset Tag","'+02:00","2026-04-15T15:43:37.000+02:00","root","Cloud Agent","173f0431-2687-4201-a8d1-bdb4cea1dbf9","2025-09-09T15:47:41.000+02:00","2026-04-22T10:40:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,DMZ,Linux Server,Cloud Agent,TAG-SRVEXPOSEINTERNET,DNS,OS-LIN-SRV DYN,MID-NGINX DYN","115.0"
"159244834","211843609","vpsasamic1.sanef.groupe","","00:50:56:82:e5:84","10.41.32.5","fe80::250:56ff:fe82:e584","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257421","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 78 4d 4f 8a e3-1d 73 04 3c 11 19 0a df","No Asset Tag","'+02:00","2026-03-25T16:22:52.000+02:00","cybreconcile","Cloud Agent","30c1f6a2-779c-4e60-ac63-dadd36a9ca46","2023-02-14T16:13:31.000+02:00","2026-04-22T10:39:58.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,SAS,VRF_BURO_DC,log4j","504.0"
"130590138","192836895","vmamrsxt4","","00:50:56:82:26:F5, 00:50:56:82:4A:4D, 00:50:56:82:58:5D","10.33.16.63,10.32.16.63,10.30.16.63","fe80::250:56ff:fe82:26f5,fe80::250:56ff:fe82:4a4d,fe80::250:56ff:fe82:585d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3f bf 83 fb 25 5a-88 23 9d d6 d4 88 25 c3","No Asset Tag","'+02:00","2025-10-09T11:39:37.000+02:00","cybastsys","Cloud Agent","9b15cc9b-6b59-4550-92ee-de5298641343","2022-07-07T12:06:26.000+02:00","2026-04-22T10:38:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Sextan,Obsolete,VRF_INCONNUE","699.0"
"335714568","336779950","vrdatafrt1.sanef-rec.fr","","00:50:56:9c:83:76","192.168.40.115","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c2 78 9b 72 94 09-bf 19 40 9d 8a 3c 7d 6b","No Asset Tag","'+02:00","2026-04-20T10:38:48.000+02:00","root","Cloud Agent","097fd4df-1bf5-4aed-ab5a-87ec60e2de2d","2025-06-23T16:58:58.000+02:00","2026-04-22T11:07:37.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","152.0"
"378059947","352307186","vpdsiangx3.sanef.groupe","","00:50:56:90:1f:10","192.168.19.162","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 45 04 87 7a 05 98-b8 0c 0c ea 5d dd 84 30","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","80c4f763-af58-4981-9202-a10bb6035dc3","2025-11-20T13:39:33.000+02:00","2026-04-22T11:52:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0"
"334752929","336779981","vrdataapp1.sanef-rec.fr","","00:50:56:9c:8c:9c","10.45.14.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 48 45 d3 3c 6c 25-84 c4 6d fc 6f 22 b5 59","No Asset Tag","'+02:00","2026-04-20T10:08:27.000+02:00","cybsupapp","Cloud Agent","644f99af-3c7a-4b65-aa36-f504e6c931a8","2025-06-19T16:49:55.000+02:00","2026-04-22T10:38:21.000+02:00","x86_64","3","SCA,VM,GAV","DATI,Recette,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","71.0"
"321972468","329308235","vpintbweb2.sanef.groupe","","00:50:56:9c:ad:90","10.46.33.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 84 af 23 67 18-73 4c 71 63 63 67 d9 51","No Asset Tag","'+02:00","2026-02-24T12:22:48.000+02:00","cybreconcile","Cloud Agent","137bf765-a1cc-46d1-8e4e-17baba61d960","2025-05-05T09:03:07.000+02:00","2026-04-22T10:38:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Gestion institutionnel,Linux Server,Cloud Agent","144.0"
"236313681","264524364","vpemvagtw1.sanef.groupe","","00:50:56:98:1f:a9","192.168.101.110","fe80::250:56ff:fe98:1fa9","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 18 1a af b2 0d 22 1e-ce 36 4c fb bd 16 0a a1","No Asset Tag","'+02:00","2025-12-04T11:44:29.000+02:00","synchro","Cloud Agent","55a2a761-1ea4-412e-b400-d94e53c0632a","2024-05-13T15:52:33.000+02:00","2026-04-22T10:37:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,PCI Bunker EMV,EMV,Production","504.0"
"175919695","229595373","vpaiiapol10","","00:50:56:82:62:ed","10.30.12.130","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7820","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 57 9e a1 3d 32 8e-43 cf b5 a6 a0 8d 2c 2f","No Asset Tag","'+02:00","2024-06-06T16:22:14.000+02:00","cybreconcile","Cloud Agent","1644939b-679d-4342-a633-4cf639c86cdc","2023-06-26T12:26:01.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,Centreon,Obsolete,MID-APACHE-TOMCAT DYN,DSI,MID-NGINX DYN","82.0"
"220360665","253837004","viosapels1.sanef.groupe","","00:50:56:90:10:e8","10.41.29.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 13 e5 68 eb 82 5a-c7 17 9e cd df 73 2a 0a","No Asset Tag","'+02:00","2026-02-19T11:42:02.000+02:00","cybadmbdd","Cloud Agent","d7dc4010-3276-4b1d-a984-28b5e9bc98ad","2024-03-06T14:10:51.000+02:00","2026-04-22T10:37:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Péage,DEX,Cloud Agent,Linux Server","141.0"
"379779221","352984437","spbckamag3.sanef.groupe","","04:bd:97:22:c5:b9, 04:bd:97:22:c5:b8","10.43.1.5,10.42.16.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706CC","Unknown","'+02:00","2025-12-02T17:55:29.000+02:00","cybsecope","Cloud Agent","cb460ae1-89cd-4dbc-b5d4-58eacfb9b891","2025-11-27T13:44:26.000+02:00","2026-04-22T10:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","330.0"
"265688076","297448165","vpexpatex1.sanef.groupe","","00:50:56:90:91:60","10.41.40.25","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 75 8c 3f ac e7-38 1e 36 fc f3 00 00 ab","No Asset Tag","'+02:00","2026-01-27T12:14:44.000+02:00","root","Cloud Agent","841a123c-c7bc-4642-a6bb-ab32bd00aa4a","2024-09-16T11:44:59.000+02:00","2026-04-22T10:37:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Transports Exceptionnels","139.0"
"353304779","341953316","srlogbels2.sanef-rec.fr","","20:67:7c:e8:d1:14","10.45.15.167","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31496","HPE U41 07/14/2022","CZJ8470B2F","","'+02:00","2026-02-24T12:19:01.000+02:00","cybintsys","Cloud Agent","e298aece-c7bf-4023-a38e-b6217f6fad0e","2025-08-21T12:18:21.000+02:00","2026-04-22T10:37:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Elasticsearch,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","66.0"
"160247428","213434314","vpameaoct2","","00:50:56:82:2c:ab","10.41.40.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 02 22 9d 03 55 e0-68 f6 85 ed 20 e3 97 30","No Asset Tag","'+02:00","2026-01-21T10:44:49.000+02:00","cybreconcile","Cloud Agent","9baa3173-4108-4ce4-8d38-71640a319ce5","2023-02-22T16:45:55.000+02:00","2026-04-22T10:37:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,Cloud Agent,Linux Server,DEX,MID-APACHE-TOMCAT DYN","510.0"
"229387995","258011538","vpsupbmap1.sanef.groupe","","00:50:56:8d:2b:a5","10.44.5.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","9713","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 16 ae 81 f5 62 d4-a5 dd 10 be 53 9d 02 31","No Asset Tag","'+02:00","2026-03-30T11:31:03.000+02:00","cybreconcile","Cloud Agent","e6412e32-9ce5-4e98-b321-4bfe6f05f37f","2024-04-11T17:28:44.000+02:00","2026-04-22T10:36:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","57.0"
"239823210","272569954","vpdsiasat2.sanef.groupe","","00:50:56:8d:01:12","10.44.2.133","","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","19793","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d a0 01 33 3d 8d 86-aa 11 8d 81 8d 5e 10 8b","No Asset Tag","'+02:00","2026-04-14T15:15:05.000+02:00","cybreconcile","Cloud Agent","c89ac5e5-e7bc-4aad-a699-734f852ac621","2024-05-28T12:53:15.000+02:00","2026-04-22T10:36:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,MID-APACHE-TOMCAT DYN,Production,Satellite","331.0"
"130582564","192832076","vmamrgtc1","","00:50:56:82:30:83, 00:50:56:82:29:fb, 00:50:56:82:68:ff","10.45.3.160,10.45.3.162,10.45.2.160,10.45.2.162,10.45.4.160","fe80::250:56ff:fe82:3083,fe80::250:56ff:fe82:29fb,fe80::250:56ff:fe82:68ff","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fe 04 d3 c1 9c b5-c4 75 10 69 d5 71 e8 ca","No Asset Tag","'+02:00","2025-10-09T11:38:50.000+02:00","cybadmsys","Cloud Agent","e754412e-d12f-4949-b585-58087a9402e7","2022-07-07T11:11:35.000+02:00","2026-04-22T10:36:35.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,MIVISU,DEX,log4j,Recette,Sans,Trafic,Obsolete","876.0"
"230624333","258742190","vpsupapol2.sanef.groupe","","00:50:56:8d:b1:4d","10.44.5.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 45 e4 e7 11 fe ad-01 3a 2d 47 a0 bb dd a6","No Asset Tag","'+02:00","2026-03-30T10:53:14.000+02:00","cybreconcile","Cloud Agent","ae71c630-7e3f-413a-a45e-9cbb00a602c6","2024-04-17T18:08:34.000+02:00","2026-04-22T10:36:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,BDD-ELA DYN,MID-NGINX DYN,Cloud Agent,Linux Server","60.0"
"377757145","352186178","vrdsiahax1.sanef-rec.fr","","00:50:56:9c:7b:57","192.168.19.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cf ae ac b0 86 9a-13 e5 31 18 b1 42 f9 66","No Asset Tag","'+02:00","2026-01-29T15:36:52.000+02:00","root","Cloud Agent","ca202fc2-fb1c-45f0-8d59-b042c1dce9b9","2025-11-19T15:03:26.000+02:00","2026-04-22T10:35:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","329.0"
"411592329","365726895","vrsigbmut1.sanef-rec.fr","","52:54:00:bf:a0:1b, 96:f8:7c:9a:18:68, 52:54:00:bc:ab:3d","10.45.15.68,192.168.16.24,192.168.17.6","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:24:33.000+02:00","oracle","Cloud Agent","b93c44c7-52f4-49e4-9b52-07b9e1540c98","2026-03-26T12:42:47.000+02:00","2026-04-22T10:35:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,ENV-REC","339.0"
"131269839","193319056","vpaiibcen1","","00:50:56:82:ad:1d","10.30.12.122","fe80::250:56ff:fe82:ad1d","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 4a 7c 68 92 64-c6 df 7d 32 79 3b be 83","No Asset Tag","'+02:00","2026-04-20T11:01:43.000+02:00","cybreconcile","Cloud Agent","8d2f6e58-7506-413d-bf6d-fe1037e6390a","2022-07-12T15:26:49.000+02:00","2026-04-22T10:35:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,DSI,Centreon,VRF_INCONNUE,Production,Linux Server,Outils prod (Monitoring, NMS, gestion de parc)","699.0"
"234569455","262099083","vrechatre1.sanef-rec.fr","","00:50:56:9c:f0:7a","10.45.11.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 72 3c 45 55 1f 05-e3 f8 1c 54 2a bc f0 74","No Asset Tag","'+02:00","2026-03-25T12:20:47.000+02:00","cybadmsys","Cloud Agent","4bbf0e2b-df4d-49e9-a1ec-52be59ab5310","2024-05-06T12:58:52.000+02:00","2026-04-22T10:34:14.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,TALEND,Cloud Agent,Linux Server","215.0"
"131401795","193422093","lamaprac1.sanef.groupe","","00:17:A4:77:0C:B8, 00:17:A4:77:0C:B4, 00:17:A4:77:0C:B0, 00:17:A4:77:0C:BC","192.168.17.120,10.43.4.130,169.254.104.213,10.41.40.50,10.41.40.51,10.41.40.59,10.43.40.50","fe80::217:a4ff:fe77:cb8,fe80::217:a4ff:fe77:cb4,fe80::217:a4ff:fe77:cb0,fe80::217:a4ff:fe77:cbc","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ35002DJ","","'+02:00","2024-06-04T14:00:14.000+02:00","cybreconcile","Cloud Agent","a6bf3a46-ae5a-4539-ab4c-a30e626174c3","2022-07-13T10:09:09.000+02:00","2026-04-22T10:33:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,DEX,Sextan,Obsolete,log4j,VRF_TRAFIC_DC,Production,Trafic,Sans","692.0"
"381711057","353639420","spbckamag8.sanef.groupe","","6c:29:d2:30:51:04, 6c:29:d2:30:51:05","10.42.16.103,10.43.1.41","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3P","Unknown","'+02:00","2025-12-04T18:02:10.000+02:00","root","Cloud Agent","b33873db-0da1-43e7-9af7-ce8570252f12","2025-12-04T17:34:56.000+02:00","2026-04-22T10:33:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0"
"326134718","331288786","vposapapp1.sanef.groupe","","00:50:56:90:0c:7d","10.41.20.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","39952","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 71 17 72 e1 8f 01-2f b0 da 31 86 62 f6 bb","No Asset Tag","'+02:00","2026-03-04T07:39:03.000+02:00","cybreconcile","Cloud Agent","542cb2d0-bc99-41ff-ad1d-9179f9349ee4","2025-05-21T06:58:46.000+02:00","2026-04-22T10:32:12.000+02:00","x86_64","2","SCA,VM,GAV","Production,Péage,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0"
"222290141","254684659","vibotcach1.sanef.groupe","","00:50:56:90:83:91","10.41.23.138","fe80::250:56ff:fe90:8391","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","13745","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 46 63 33 70 94 5a-1b fd bf 36 e5 9b 6f d8","No Asset Tag","'+02:00","2026-03-18T13:02:16.000+02:00","cybreconcile","Cloud Agent","613c7371-b7b2-4f1a-85eb-f895cb5a102e","2024-03-14T15:04:48.000+02:00","2026-04-22T10:32:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Production,Cloud Agent,Linux Server","140.0"
"305549366","322795680","vpgesbref1","","00:50:56:9c:b0:29","10.46.33.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f1 f8 ac 77 86 d1-87 e7 e6 08 00 3b 7d 31","No Asset Tag","'+02:00","2026-02-24T12:53:58.000+02:00","cybsecope","Cloud Agent","b787ffe4-7fd9-4005-b101-b8ca88e239c8","2025-03-05T19:51:45.000+02:00","2026-04-22T10:31:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,BDD","144.0"
"236303036","264488390","lpemvaste1","","00:17:a4:77:1c:48, 00:17:a4:77:1c:44","192.168.102.101,192.168.101.101","fe80::217:a4ff:fe77:1c48,fe80::217:a4ff:fe77:1c44","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000709","","'+02:00","2025-06-19T10:30:57.000+02:00","sanefmaj","Cloud Agent","c7591f06-e641-4961-aa38-3f79afcde08c","2024-05-13T14:57:35.000+02:00","2026-04-22T10:31:39.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,PCI Bunker EMV,EMV,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","668.0"
"139157910","198270158","vmamphtp1.sanef.groupe","","00:50:56:82:6D:A2, 00:50:56:82:4A:D4, 00:50:56:82:76:04","10.41.40.35,10.41.40.37,10.41.40.38,10.43.40.35,10.43.4.35","fe80::250:56ff:fe82:6da2,fe80::250:56ff:fe82:4ad4,fe80::250:56ff:fe82:7604","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 78 5e 41 48 cd 66-58 8b 3e 5e c8 9e c5 ec","No Asset Tag","'+02:00","2024-02-13T13:59:34.000+02:00","cybreconcile","Cloud Agent","40de57c4-09f4-4a7d-9365-ecf0d6008fbd","2022-09-07T14:24:58.000+02:00","2026-04-22T10:31:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Amelie,DEX,log4j,Trafic,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production","349.0"
"180099540","232621475","vdosapsrv1.sanef-rec.fr","","00:50:56:9c:8e:b5","10.45.9.66","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e0 75 22 fd e2 d2-b7 6f 6f a8 05 e6 fe c7","No Asset Tag","'+02:00","2026-03-03T15:14:48.000+02:00","cybsupsys","Cloud Agent","c192df7b-6e91-4547-b0f1-e0e695a33d0a","2023-07-26T17:29:11.000+02:00","2026-04-22T10:30:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Cloud Agent,Linux Server","140.0"
"311198745","331288572","vrgawagtw1.sanef-rec.fr","","00:50:56:9c:f9:9b","192.168.19.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c c5 ca c7 c2 fe 3c-05 b5 fa 43 02 8b 07 ea","No Asset Tag","'+02:00","2026-02-11T13:15:26.000+02:00","root","Cloud Agent","f2df81d0-fd0d-4e6d-8293-2d347f1fffc5","2025-03-26T20:03:06.000+02:00","2026-04-22T10:29:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,Linux Server,Cloud Agent","58.0"
"139156912","198270160","vmampgtc2","","00:50:56:82:2C:BA, 00:50:56:82:1A:8B, 00:50:56:82:54:84","10.41.40.86,10.41.40.87,10.43.4.86,10.43.40.86,10.43.40.87","fe80::250:56ff:fe82:2cba,fe80::250:56ff:fe82:1a8b,fe80::250:56ff:fe82:5484","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 54 08 b5 2e bc-ae be e6 6f 45 96 49 92","No Asset Tag","'+02:00","2025-10-08T11:58:20.000+02:00","cybreconcile","Cloud Agent","d152cb18-e02a-415b-8806-c7afdf242069","2022-09-07T14:23:35.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MIVISU,Trafic,VRF_TRAFIC_DC,Production,Cloud Agent,Linux Server,log4j,Obsolete,DEX","876.0"
"269338854","299222837","vtdsiaquo1.sanef-rec.fr","","00:50:56:90:cb:e0","10.100.16.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 25 7e df 61 65 15-97 23 d2 66 c7 88 34 f4","No Asset Tag","'+02:00","2026-01-06T14:03:16.000+02:00","cybsecope","Cloud Agent","b1250051-e4ae-40d9-9a85-43cbe7743c73","2024-10-01T11:14:57.000+02:00","2026-04-22T10:29:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,OS-LIN-SRV DYN,BDD-ELA DYN,Linux Server,Cloud Agent","141.0"
"295291112","317082444","vpvsaasic2","","00:50:56:8f:13:64","10.44.200.105","fe80::250:56ff:fe8f:1364","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 00 68 0b 72 0b fa-4d 1a 61 c2 af fb 06 33","No Asset Tag","'+02:00","2026-03-18T14:17:29.000+02:00","reboot","Cloud Agent","34934209-83bd-499c-90d8-93c76d3e8618","2025-01-28T12:10:02.000+02:00","2026-04-22T10:29:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIC,TAG-SIA,Cloud Agent,Linux Server","52.0"
"143622225","201025557","vpemvaldap1.sanef.groupe","","00:50:56:82:0b:a2","192.168.100.127","fe80::250:56ff:fe82:ba2","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d2 4d cb d3 26 9f-c2 1c 8b 6d 00 9b 1c fb","No Asset Tag","'+02:00","2024-09-05T11:43:35.000+02:00","root","IP Scanner, Cloud Agent","2228916e-04d4-4923-adbc-66783544dec8","2022-10-11T17:32:31.000+02:00","2026-04-22T11:54:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,VRF_INCONNUE,PCI Bunker EMV,EMV,DEX","287.0"
"173084373","227657349","vdbocbsap1.sanef-rec.fr","","00:50:56:9c:5e:98","10.45.6.39","fe80::250:56ff:fe9c:5e98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","515467","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 60 80 7d 55 e4 1e-03 07 99 46 7f 09 0b 9d","No Asset Tag","'+02:00","2026-03-11T10:05:08.000+02:00","cybsecope","Cloud Agent","f565c704-8967-4b19-9576-bc489230516a","2023-06-05T16:08:32.000+02:00","2026-04-22T10:27:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Recette,flux_libre,Cloud Agent,Linux Server","141.0"
"191424454","239728562","vibooaori2.sanef.groupe","","00:50:56:90:ef:9f","10.41.22.209","fe80::250:56ff:fe90:ef9f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 36 fb e6 64 84 b1-4f fa 64 cd 12 1e c4 6e","No Asset Tag","'+02:00","2026-03-16T10:46:53.000+02:00","cybsupemo","Cloud Agent","dff34fb2-5ab0-4ac9-8202-27b31c5f9d7d","2023-10-04T18:05:31.000+02:00","2026-04-22T10:27:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre","140.0"
"175043726","229008771","vpaiiacol1.sanef.groupe","","00:50:56:82:80:08","10.30.11.130","fe80::250:56ff:fe82:8008","Linux / Server","The CentOS Project CentOS 8.2 (2004)","8.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3939","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 a8 76 99 38 10-5a 56 59 67 16 e7 ea ba","No Asset Tag","'+02:00","2024-10-24T08:39:04.000+02:00","cybadmsys","Cloud Agent","27f4df5b-d678-4a76-854f-e96720e739b1","2023-06-19T18:42:15.000+02:00","2026-04-22T10:27:45.000+02:00","x86_64","2","SCA,VM,GAV","Collecte,Obsolete,DSI,Cloud Agent,Linux Server","59.0"
"359136877","344907763","vprpaangx1.sanef.groupe","","00:50:56:90:a1:66","10.42.0.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a2 e9 6d fd 0c 29-e5 7e e7 75 40 a7 ce d9","No Asset Tag","'+02:00","2026-02-25T15:24:43.000+02:00","cybreconcile","Cloud Agent","17465e5f-6624-458b-8686-1f2032631037","2025-09-12T10:01:58.000+02:00","2026-04-22T11:34:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Péage,MID-NGINX DYN","140.0"
"160244154","213434437","vpameaoct1","","00:50:56:82:43:9a","10.41.40.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 23 80 47 a1 c1-ef 4d 30 55 c6 7c 7b 40","No Asset Tag","'+02:00","2026-01-21T10:59:29.000+02:00","cybreconcile","Cloud Agent","16907c14-62ff-4640-aee8-6b8cbf3f91db","2023-02-22T16:34:38.000+02:00","2026-04-22T11:38:05.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OCTAN,OS-LIN-SRV DYN,DEX","511.0"
"236303035","264488388","lpemvaste2","","00:17:a4:77:1c:50, 00:17:a4:77:1c:4c","192.168.102.102,192.168.101.102","fe80::217:a4ff:fe77:1c50,fe80::217:a4ff:fe77:1c4c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070A","","'+02:00","2025-08-20T02:42:51.000+02:00","root","Cloud Agent","48a4db20-c5cf-4cec-8d1c-5a586d74072c","2024-05-13T14:57:35.000+02:00","2026-04-22T11:50:45.000+02:00","x86_64","4","SCA,VM,PM,GAV","PCI Bunker EMV,EMV,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17","679.0"
"392410566","358213495","vdpataels1.sanef-rec.fr","","00:50:56:9c:a9:de","10.45.9.131","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 50 06 29 fa 6b 92-c6 b7 68 76 36 60 9e 1f","No Asset Tag","'+02:00","2026-04-07T10:20:27.000+02:00","cybadmsys","Cloud Agent","6260bc0c-2644-4456-b0b2-c7744bfea354","2026-01-15T15:04:43.000+02:00","2026-04-22T11:45:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DFIN,ISIS","61.0"
"240378938","274668324","vibocaprx1.sanef.groupe","","00:50:56:90:14:09","192.168.21.227","fe80::250:56ff:fe90:1409","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 09 69 37 21 af 7e-b7 22 39 52 4b ba 8d 2d","No Asset Tag","'+02:00","2026-03-16T10:41:18.000+02:00","cybreconcile","Cloud Agent","0c5bac1a-0aea-4f6f-9867-7b2c9a202087","2024-05-30T10:36:42.000+02:00","2026-04-22T11:40:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Flux Libre,Production","144.0"
"160222392","213244072","vrsupbmap1.sanef.groupe","","00:50:56:82:b1:ad","10.45.0.198","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 82 1d c5 cf 36 0f-7b 06 b7 a8 c8 f9 f4 74","No Asset Tag","'+02:00","2026-03-11T11:25:54.000+02:00","cybadmsys","Cloud Agent","4fe54dac-8a51-4245-8075-07d26fb341f3","2023-02-22T13:03:42.000+02:00","2026-04-22T10:26:10.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,flux_libre,Flux Libre,Production","288.0"
"208784156","248752400","vibotatsp1.sanef.groupe","","00:50:56:90:f4:eb","10.41.23.144","fe80::250:56ff:fe90:f4eb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 35 6b 1e ea d8 f9-74 c2 b6 f3 29 18 a7 c8","No Asset Tag","'+02:00","2026-03-18T10:30:12.000+02:00","root","Cloud Agent","d4710f92-cb1c-44d5-953b-527a94b38c0a","2024-01-10T13:43:46.000+02:00","2026-04-22T10:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0"
"139157943","198270298","vmampmet2","","00:50:56:82:2B:88, 00:50:56:82:21:85, 00:50:56:82:66:C4","10.41.40.78,10.41.40.79,10.43.40.78,10.43.40.79,10.43.4.78","fe80::250:56ff:fe82:2b88,fe80::250:56ff:fe82:2185,fe80::250:56ff:fe82:66c4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 70 9d 87 5f df 23-cb 06 4c 49 6e b6 8d 73","No Asset Tag","'+02:00","2024-02-14T14:14:42.000+02:00","cybreconcile","Cloud Agent","72fb8c0b-b87a-4c72-b45e-7de93f23ecf1","2022-09-07T14:28:06.000+02:00","2026-04-22T11:51:58.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Obsolete,VRF_TRAFIC_DC,OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,log4j,Trafic,MIVISU","878.0"
"287937932","311537311","vrosapels2.sanef-rec.fr","","00:50:56:9c:33:b0","10.45.9.72","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f2 57 d9 e5 2c 78-d1 5e b5 e1 ad e9 62 81","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","reboot","Cloud Agent","d6e43cba-b9c2-4040-8c1e-b517722e33ce","2024-12-20T13:09:32.000+02:00","2026-04-22T10:25:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","142.0"
"113584905","181185075","vpdecasas8.sanef.groupe","","00:50:56:82:21:8d","10.30.11.156","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 aa 81 37 79 5d 13-9b 16 72 cf 17 10 38 43","No Asset Tag","'+02:00","2026-03-25T11:53:14.000+02:00","cybreconcile","Cloud Agent","c9cc1609-7e02-495f-bd01-409cde65e06e","2022-02-15T15:08:08.000+02:00","2026-04-22T10:25:13.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,VRF_INCONNUE,SAS,OS-LIN-SRV DYN,ServersInCyberark,Cloud Agent,Linux Server,Obsolete,DSI","71.0"
"175948102","229616407","vppatbsip1.sanef.groupe","","00:50:56:82:9d:b6","10.42.40.10","fe80::875:558:2c8f:990d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63886","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 04 53 a7 0b 19 47-f5 65 cd a9 59 b7 1c d6","No Asset Tag","'+02:00","2026-04-16T16:09:23.000+02:00","cybreconcile","Cloud Agent","238ba139-c4ff-4e05-88e4-315c0d456ba9","2023-06-26T16:20:40.000+02:00","2026-04-22T11:56:06.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN,ISIS,Cloud Agent,Linux Server,TAG-SRVEXPOSEINDIRECT,DFIN","113.0"
"175415700","229250370","vvbocharg2.sanef-rec.fr","","00:50:56:9c:f6:5c","10.45.6.8","fe80::250:56ff:fe9c:f65c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 02 73 5d 71 89-fe 0d 0a 73 4e f7 43 d3","No Asset Tag","'+02:00","2026-03-09T11:12:28.000+02:00","cybsupsys","Cloud Agent","0bc8a46d-7335-4c96-b45d-aa680d71c021","2023-06-22T11:01:56.000+02:00","2026-04-22T11:54:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre","142.0"
"295300195","317119406","vpvsaasic1","","00:50:56:8f:35:45","10.44.200.104","fe80::250:56ff:fe8f:3545","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 55 23 06 2b d2 c0-fa ed 85 7f 9a 6f 7c 07","No Asset Tag","'+02:00","2026-02-02T13:02:56.000+02:00","root","Cloud Agent","75424e16-2fee-4d17-a073-6dc653ef1520","2025-01-28T14:30:58.000+02:00","2026-04-22T10:24:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SIC,TAG-SIA","52.0"
"363969483","346387491","vptrabmut1.sanef.groupe","","52:54:00:7d:a0:29, 52:54:00:43:7d:b5, 52:54:00:63:38:b5","192.168.17.6,10.41.40.230,10.41.40.232,10.41.40.234,10.41.40.235,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2c191b39-4c8b-4d5e-8fbe-40599367b65b","2025-09-29T16:50:18.000+02:00","2026-04-22T10:38:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,BDD,MID-APACHE-TOMCAT DYN","339.0"
"191424299","239728327","vibooaori1.sanef.groupe","","00:50:56:90:bf:0a","10.41.22.208","fe80::250:56ff:fe90:bf0a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c a2 e3 a1 9a 47-e2 48 00 9c a6 34 16 5f","No Asset Tag","'+02:00","2026-03-16T10:43:53.000+02:00","cybsupemo","Cloud Agent","c017ef11-d65e-4155-8681-9c96b9abfea1","2023-10-04T18:03:36.000+02:00","2026-04-22T10:23:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","142.0"
"335441959","334612886","vtdsiatmp4.sanef.groupe","","00:50:56:9c:4f:67","10.43.253.7","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 91 dc 94 43 2e bb-81 8e bf 75 ee 1e 93 2e","No Asset Tag","'+02:00","2026-04-14T14:37:24.000+02:00","root","Cloud Agent","8866e5e5-d66b-4ac4-9800-a8e3525be2c1","2025-06-23T10:44:00.000+02:00","2026-04-22T10:23:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","test_rhel9,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0"
"372122822","349584353","vppciamft1.sanef.groupe","","00:50:56:86:f9:ac","192.168.101.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 9b be e3 fd be 93-2f 5f 46 bd 01 4a fd 3d","No Asset Tag","'+02:00","2025-06-10T14:29:29.000+02:00","root","Cloud Agent","a8669d13-053b-4aa8-9e3f-b23f852d9a05","2025-10-27T13:56:29.000+02:00","2026-04-22T10:23:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","334.0"
"193226459","240735722","vibocs4ci1.sanef.groupe","","00:50:56:90:e0:2c","10.41.22.69","fe80::250:56ff:fe90:e02c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c7 20 18 e4 be 9f-46 22 ff d7 3f b9 28 3c","No Asset Tag","'+02:00","2026-03-16T16:13:00.000+02:00","root","Cloud Agent","5a870b8a-94dc-4da1-83f6-46abced9cf6d","2023-10-13T13:27:19.000+02:00","2026-04-22T10:23:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre,Flux Libre","143.0"
"131275076","193321025","vpaiiapol6","","00:50:56:82:80:89","10.40.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 4d 52 2a c3 ed-d6 0e 34 dd 06 91 ee f3","No Asset Tag","'+02:00","2024-06-05T14:32:22.000+02:00","cybadmsys","Cloud Agent","c557d007-c6ac-4eb6-8413-cddc52b3e53f","2022-07-12T15:48:39.000+02:00","2026-04-22T10:23:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,Centreon,DSI,BDD-POS DYN,BDD-SQL DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Obsolete","462.0"
"365792814","347053025","vpdatafrt1.sanef.groupe","","00:50:56:90:37:c5","192.168.40.99","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 32 5c c2 b4 f2 1d-01 04 cc 83 de 99 f6 de","No Asset Tag","'+02:00","2026-01-27T15:49:10.000+02:00","cybreconcile","Cloud Agent","9deacc13-d798-41ec-b0ca-7638a295b0b5","2025-10-06T10:46:20.000+02:00","2026-04-22T11:47:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent","141.0"
"167745827","224050667","vpmetaquo1.sanef.groupe","","00:50:56:82:bd:67","10.100.16.5","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 be 69 76 a2 c5 c6-cd a1 17 01 56 e8 4b 59","No Asset Tag","'+02:00","2026-01-29T15:52:00.000+02:00","cybreconcile","Cloud Agent","e45a9a3d-9c60-4b85-a734-9a4c7f17a71d","2023-04-24T14:45:11.000+02:00","2026-04-22T11:47:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server,3PAR","142.0"
"236872619","266140980","vpechatre4.sanef.groupe","","00:50:56:90:e7:4f","10.42.16.136","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7d 1c 93 aa ac dd-d9 02 10 09 ba 24 9e 4d","No Asset Tag","'+02:00","2025-11-18T16:03:15.000+02:00","cybreconcile","Cloud Agent","4668f5d0-df8d-4488-89d9-af1275a5aa73","2024-05-15T12:24:05.000+02:00","2026-04-22T11:54:57.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,TALEND,Production,Cloud Agent,Linux Server","208.0"
"202413303","245310749","vrameasxt3.sanef-rec.fr","","00:50:56:9c:14:8b, 00:50:56:9c:39:30","10.45.4.62,10.45.2.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 86 19 b0 fe 39 4c-c1 f0 ac 35 71 b1 a2 30","No Asset Tag","'+02:00","2026-04-20T15:20:56.000+02:00","cybadmsys","Cloud Agent","fb7b130d-8e2f-429c-939f-a07d0fa2cfd4","2023-12-04T17:29:51.000+02:00","2026-04-22T11:56:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","95.0"
"294135637","316159330","vradvangx1.sanef-rec.fr","","00:50:56:9c:1d:06","192.168.20.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d3 be 42 6a 65 f4-d8 e7 02 31 3c 8d b4 35","No Asset Tag","'+02:00","2026-02-18T15:32:01.000+02:00","root","Cloud Agent","8feb517e-05d5-42e2-8b25-112def6329c1","2025-01-22T13:33:18.000+02:00","2026-04-22T10:22:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U,Recette","54.0"
"358140645","344038672","vrdsibarc1.sanef-rec.fr","","00:50:56:9c:e6:6a","10.45.15.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a4 e1 44 00 0e 2f-83 ae a4 21 0c 33 0e 58","No Asset Tag","'+02:00","2026-04-20T15:37:16.000+02:00","cybsupapp","Cloud Agent","acc111a7-8e4c-48cb-aa3b-74104257f29c","2025-09-09T15:12:14.000+02:00","2026-04-22T11:53:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,BDD,Recette,Linux Server,Cloud Agent,BDD-POS DYN","152.0"
"195401077","241773075","vpbotrssm2.sanef.groupe","","00:50:56:90:56:56","10.41.23.9","fe80::250:56ff:fe90:5656","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 72 d8 03 18 55 c7-ad 9e 33 08 c8 c7 fe 77","No Asset Tag","'+02:00","2026-04-21T11:17:35.000+02:00","cybreconcile","Cloud Agent","c165f7bf-9fb6-4f01-8d85-f785caab184e","2023-10-24T23:34:18.000+02:00","2026-04-22T11:49:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,Flux Libre,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Production","139.0"
"131401680","193422309","lampasu1.sanef.groupe","","00:17:A4:77:08:E8, 00:17:A4:77:08:EC","10.41.40.190,10.41.40.192,10.41.40.194,10.43.4.193,169.254.155.254","fe80::217:a4ff:fe77:8e8,fe80::217:a4ff:fe77:8ec","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 01/22/2018","VCX000020P","","'+02:00","2025-08-12T11:10:07.000+02:00","cybreconcile","Cloud Agent","d4bf24ea-0482-46c9-a9b4-644bdcf9bb95","2022-07-13T10:13:42.000+02:00","2026-04-22T10:21:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,Production,Exploitation,Sans,ServersInCyberark,OS-LIN-SRV DYN,Obsolete,DSI,log4j,Cloud Agent,Linux Server","528.0"
"175414997","229251321","vvbocmedi2.sanef-rec.fr","","00:50:56:9c:87:9b","10.45.6.9","fe80::250:56ff:fe9c:879b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c fa 7b 56 cf 71 32-3c eb bb 3b 8f a3 66 b2","No Asset Tag","'+02:00","2026-03-09T11:47:14.000+02:00","cybsupsys","Cloud Agent","d1ed673e-21bf-4d0f-b1e0-95fab51d8e62","2023-06-22T11:09:16.000+02:00","2026-04-22T10:21:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre","337.0"
"331378739","333860817","vrmonaftp1.sanef-rec.fr","","00:50:56:9c:30:c7","10.45.14.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 47 e3 1b ba 61 28-5b b8 9a 64 74 90 36 cc","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","763903e4-d4e7-4ca6-b374-d0441c6a28ef","2025-06-06T09:46:24.000+02:00","2026-04-22T10:21:12.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,EMV","332.0"
"395905873","359675952","vpnapamed1.sanef.groupe","","00:50:56:90:4f:bd","10.100.16.9","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 e1 af 9c 87 94 f4-b8 f4 f3 2b 33 73 dc e6","No Asset Tag","'+02:00","2026-01-29T18:34:20.000+02:00","cybreconcile","Cloud Agent","bf23870f-082d-4f25-a572-a62b1992f590","2026-01-29T18:17:16.000+02:00","2026-04-22T11:35:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Quorum,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","336.0"
"209599636","249215479","vpbotarmq2.sanef.groupe","","00:50:56:90:38:06","10.41.23.23","fe80::250:56ff:fe90:3806","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 9a ec 2b 1f 4b e8-84 2a b4 51 03 06 01 be","No Asset Tag","'+02:00","2026-04-21T11:47:46.000+02:00","cybadmsys","Cloud Agent","d084200a-8e4c-44b1-9123-34e14f6717cd","2024-01-15T13:34:46.000+02:00","2026-04-22T10:20:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow,flux_libre,Production","141.0"
"241549584","276516748","vpvsaaahz2.sanef.groupe","","00:50:56:9c:0d:eb","192.168.18.80","fe80::250:56ff:fe9c:deb","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c ef a5 9c cc 09 a8-e8 ee 76 b6 32 81 ca ea","No Asset Tag","'+02:00","2026-02-04T13:39:00.000+02:00","tbaad-ext","Cloud Agent","ed68b9ed-6e4b-4348-aa33-fc4c57d3f8cd","2024-06-04T12:46:47.000+02:00","2026-04-22T11:44:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"165442546","221733692","vppataels1","","00:50:56:82:26:e6","10.42.40.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 fa 07 a0 61 4c dd-cb 35 30 c6 b4 63 2f fc","No Asset Tag","'+02:00","2026-04-02T14:23:50.000+02:00","cybadmsys","Cloud Agent","17645695-a79d-4089-a9d9-4b1021e0c9b7","2023-04-05T11:10:12.000+02:00","2026-04-22T10:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,DFIN,Cloud Agent,Linux Server,ISIS","66.0"
"139155574","198270091","vampsychtp1.sanef.groupe","","00:50:56:82:08:63","10.41.40.102","fe80::250:56ff:fe82:863","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 de e9 ce 1c 20 7e-77 be 84 8e 7a 72 3a fb","No Asset Tag","'+02:00","2023-12-21T15:54:07.000+02:00","cybreconcile","Cloud Agent","3b2d3777-cf64-459e-87b6-e977684cbe5b","2022-09-07T14:20:37.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_TRAFIC_DC,Production,Patrimoine","524.0"
"377809009","352213444","vpdsiangx1.sanef.groupe","","00:50:56:90:a8:30","192.168.19.160","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 16 6a c4 ab e8 0d-aa 1c be 7d a0 14 54 7a","No Asset Tag","'+02:00","2026-04-13T14:25:03.000+02:00","cybreconcile","Cloud Agent","40de4338-c22b-46aa-90ac-1e8b80ec5800","2025-11-19T18:56:10.000+02:00","2026-04-22T10:19:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","329.0"
"335905349","336780143","vrrpnangx1.sanef-rec.fr","","00:50:56:9c:4f:9c","10.45.14.229","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a8 de 8a 4a f7 76-92 5c 50 9e 49 ab 6d d4","No Asset Tag","'+02:00","2026-02-23T10:35:27.000+02:00","cybsecope","Cloud Agent","2ad21bec-0e15-48d3-ba8d-ce21d0af3547","2025-06-24T11:02:57.000+02:00","2026-04-22T10:18:58.000+02:00","x86_64","2","SCA,VM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent","140.0"
"130588628","192836893","vmamrsxt3","","00:50:56:82:60:09, 00:50:56:82:12:4D, 00:50:56:82:23:4D","10.33.16.62,10.32.16.62,10.30.16.62","fe80::250:56ff:fe82:6009,fe80::250:56ff:fe82:124d,fe80::250:56ff:fe82:234d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7d e6 2b 46 18 6d-cc 34 58 02 61 87 44 84","No Asset Tag","'+02:00","2025-10-09T11:39:38.000+02:00","cybexpapp","Cloud Agent","0d432158-cbf2-44af-a96b-158976ac6f3d","2022-07-07T12:05:53.000+02:00","2026-04-22T10:18:43.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Obsolete,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sans,Trafic,Recette,log4j,MID-APACHE-TOMCAT DYN,Sextan","699.0"
"295835229","317388750","vpngwasia1","","00:50:56:94:77:7d","10.44.2.196","fe80::250:56ff:fe94:777d","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 fd 85 a2 bc 8d 35-8a 61 7b 87 bb e6 14 b2","No Asset Tag","'+02:00","2026-02-02T16:44:55.000+02:00","tbaad","Cloud Agent","9f3dadeb-d99e-40cb-9749-876934fc2c26","2025-01-29T11:30:35.000+02:00","2026-04-22T10:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0"
"211399224","250073992","vrpeabbst2.sanef-rec.fr","","00:50:56:9c:b1:be","10.45.10.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 85 d0 cd af 0d a8-00 69 b7 36 f7 38 2b 47","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybadmsys","Cloud Agent","ecfe5959-6a9e-49ab-a7b9-d042ddf918bf","2024-01-23T16:34:55.000+02:00","2026-04-22T11:54:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,Péage,BOOST,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN","141.0"
"169723549","225427800","vpdsiagit1.sanef.groupe","","00:50:56:82:a9:a3","10.30.11.216","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 3a 4b 2f 86 5f 03-22 a8 d0 1a 85 58 5f 55","No Asset Tag","'+02:00","2026-01-29T10:27:50.000+02:00","cybexpapp","Cloud Agent","69ea2e8a-9170-42ac-bdfb-3ecc80d170bc","2023-05-10T11:56:17.000+02:00","2026-04-22T11:50:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,CVS","140.0"
"183949377","235204371","vmamdpmv1","","00:50:56:82:18:5B","10.45.2.128","fe80::250:56ff:fe82:185b","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7c a1 fd 72 70 8d-57 f4 c1 96 c8 2a d1 cc","No Asset Tag","'+02:00","2025-10-08T13:43:04.000+02:00","cybexpapp","Cloud Agent","50ab478b-ce5c-4f6e-a556-5021d0b0d58d","2023-08-22T12:03:22.000+02:00","2026-04-22T11:53:01.000+02:00","x86_64","5","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,MIVISU,Obsolete","867.0"
"180099331","232620255","vrrauaast1.sanef-rec.fr","","00:50:56:9c:d9:be, 00:50:56:9c:05:31","10.45.9.227,10.45.5.33","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 06 b5 77 3b a8 49-0b 7a 92 6c 8b de 96 aa","No Asset Tag","'+02:00","2026-04-21T14:27:18.000+02:00","cybadmsys","Cloud Agent","6ea8fff9-b501-435a-bbbc-b252b4b77110","2023-07-26T17:16:56.000+02:00","2026-04-22T10:18:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Cloud Agent,Linux Server","201.0"
"160222343","213244601","vrsupbcen1.sanef.groupe","","00:50:56:82:6e:11","10.45.0.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 07 e0 e6 17 72 3e-f2 47 c7 28 72 d1 af 72","No Asset Tag","'+02:00","2026-03-11T13:10:16.000+02:00","cybadmsys","Cloud Agent","3cb2591d-3ba7-4f13-9492-fe0c05ad5fcf","2023-02-22T13:06:10.000+02:00","2026-04-22T11:51:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,DSI,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Centreon","288.0"
"138994697","198163433","RSMIRAU1","","10:60:4B:9C:57:E4, 10:60:4B:9C:57:DC","10.41.40.202,10.43.4.202","fe80::1260:4bff:fe9c:57e4,fe80::1260:4bff:fe9c:57dc","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7858","HP P68 05/05/2011","CZJ24400DR","","'+02:00","2025-06-10T15:52:29.000+02:00","cybsupapp","Cloud Agent","6ab0aef7-5896-4bab-9b42-24f63f46107c","2022-09-06T12:34:31.000+02:00","2026-04-22T10:18:11.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,OS-LIN-SRV DYN,DSI,Obsolete,VRF_INCONNUE,ServersInCyberark,Cloud Agent,Linux Server,Production,Exploitation","522.0"
"234568952","262085964","vrechatre3.sanef-rec.fr","","00:50:56:9c:b9:4f","10.45.11.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 7f d6 67 4a 43 36-82 22 54 0f 10 94 eb 6c","No Asset Tag","'+02:00","2026-03-25T13:39:53.000+02:00","cybadmsys","Cloud Agent","31668934-7f52-4255-ba90-da54b19172a6","2024-05-06T12:42:21.000+02:00","2026-04-22T10:18:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Recette,TALEND,OS-LIN-SRV DYN,Cloud Agent,Linux Server","221.0"
"139158116","198270707","vmampsxt4","","00:50:56:82:17:A2, 00:50:56:82:38:61, 00:50:56:82:61:C3","10.43.40.33,10.41.40.33,10.43.4.33","fe80::250:56ff:fe82:17a2,fe80::250:56ff:fe82:3861,fe80::250:56ff:fe82:61c3","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 5f 5a 21 87 08-cc 4f 12 18 2b 59 23 ba","No Asset Tag","'+02:00","2024-11-06T21:15:53.000+02:00","cybreconcile","Cloud Agent","41ed86ae-1ab0-4c15-b2a0-1a63aaadb290","2022-09-07T14:36:03.000+02:00","2026-04-22T10:17:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,VRF_TRAFIC_DC,DEX,Obsolete,log4j,Production,Trafic","699.0"
"303906738","322166974","vpdsismtp1.sanef.groupe","","00:50:56:9c:52:31","192.168.19.35,192.168.19.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 3e e5 84 98 21 b6-d6 b8 ae 6a bd 09 14 06","No Asset Tag","'+02:00","2026-04-09T12:31:59.000+02:00","cybsecope","Cloud Agent","f68793dc-d81e-4c88-b8e0-4044c40554d4","2025-02-27T18:09:30.000+02:00","2026-04-22T11:47:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,EXCHANGE,Production","132.0"
"165610538","221971339","vpameatra1.sanef.groupe","","00:50:56:82:73:2e","192.168.40.20","fe80::250:56ff:fe82:732e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 92 ce 9d 33 0d 0e-76 91 d2 15 d8 8d 62 e6","No Asset Tag","'+02:00","2026-04-15T10:05:10.000+02:00","cybreconcile","Cloud Agent","e527400e-fa04-45e6-914d-8b1af9fba2fb","2023-04-06T12:22:04.000+02:00","2026-04-22T10:17:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,DEX,OS-LIN-SRV DYN,Production,TAG-SRVEXPOSEINTERNET,VRF_INCONNUE,Cloud Agent,Linux Server","132.0"
"395825841","359643460","VRAIRAHTP2","","00:50:56:9c:e7:1c","10.45.1.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 c1 34 37 27 d0-15 0c 45 3c 97 d0 d6 d6","No Asset Tag","'+02:00","2026-02-05T17:21:20.000+02:00","cybintsys","Cloud Agent","4ca0a099-f07f-42f4-967e-d964de9cc715","2026-01-29T12:20:23.000+02:00","2026-04-22T10:17:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,OS-LIN-SRV DYN,Linux Server,MID-NGINX DYN","139.0"
"372123651","349584354","vppciagtw1.sanef.groupe","","00:50:56:86:e6:08","192.168.105.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 06 ca 03 b6 92 21 00-01 ff e6 c6 ae e6 1b b5","No Asset Tag","'+02:00","2025-07-21T16:40:09.000+02:00","root","Cloud Agent","f56ee2eb-ffb7-4fef-934b-e486ad36bf19","2025-10-27T13:54:20.000+02:00","2026-04-22T11:56:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","333.0"
"382721458","354098156","spbckmmag2.sanef.groupe","","04:bd:97:3e:68:b4","192.168.109.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKY","Unknown","'+02:00","2025-12-09T13:29:34.000+02:00","root","Cloud Agent","fe8e0cdb-dc07-4295-8fdc-ab368b2ff599","2025-12-09T12:50:44.000+02:00","2026-04-22T11:39:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","328.0"
"175949260","229617190","vvbotarep1.sanef-rec.fr","","00:50:56:9c:fd:ec","10.45.6.140","fe80::250:56ff:fe9c:fdec","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 45 5d 19 e3 bf 42-83 28 d6 3a 84 43 0a 86","No Asset Tag","'+02:00","2026-03-12T15:18:59.000+02:00","cybreconcile","Cloud Agent","e382a969-d1de-4f96-84ca-249a19b63936","2023-06-26T16:30:00.000+02:00","2026-04-22T10:16:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow,flux_libre,Flux Libre","329.0"
"326648225","331288789","vpvsampci2","","00:50:56:86:09:5e","192.168.109.15","fe80::250:56ff:fe86:95e","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 6b 63 3d e5 6e 51-34 20 ee fa 34 b4 63 b3","No Asset Tag","'+02:00","2026-02-02T12:26:36.000+02:00","tbaad","Cloud Agent","b5809d2d-36ec-44f7-b02d-72d7b3211eb9","2025-05-22T17:21:07.000+02:00","2026-04-22T11:55:13.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent","52.0"
"241575082","276534362","vrdepaast1.sanef-rec.fr","","00:50:56:9c:d1:ef","10.45.13.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3664","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c f0 51 af e8 1a ae-3d df 78 87 80 4f b0 e8","No Asset Tag","'+02:00","2026-01-15T16:39:32.000+02:00","cybastsys","Cloud Agent","d3bbea99-fd05-45b1-b063-1ed639f99e63","2024-06-04T15:16:09.000+02:00","2026-04-22T11:50:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","144.0"
"213849842","251124346","spboomcla1.sanef.groupe","","5c:ba:2c:60:ae:c0","10.41.22.143","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95787","HPE U30 07/20/2023","CZ22410FKD","","'+02:00","2026-04-07T09:43:49.000+02:00","cybreconcile","Cloud Agent","0bc1bab5-67be-4531-a686-14b7644b08ec","2024-02-05T19:17:09.000+02:00","2026-04-22T11:56:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,Cloud Agent,Linux Server","337.0"
"167744458","224051351","vpgesaquo1.sanef.groupe","","00:50:56:82:ee:fa","10.100.16.6","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 bb c5 f5 be d4 74-24 70 0e fa 80 22 ca 2e","No Asset Tag","'+02:00","2026-01-29T12:04:55.000+02:00","cybreconcile","Cloud Agent","7af802e0-6711-4b9f-8be4-201679e24cac","2023-04-24T14:58:05.000+02:00","2026-04-22T11:51:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DSI,Quorum,3PAR","142.0"
"241563624","276522522","vpvsaages2.sanef.groupe","","00:50:56:9c:02:61","10.42.16.83","fe80::250:56ff:fe9c:261","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c f9 3d e3 54 b3 61-09 4d 38 db 1e 3e 2d 7d","No Asset Tag","'+02:00","2026-02-04T15:59:26.000+02:00","tbaad-ext","Cloud Agent","0daeaf3f-26f3-41e5-9a42-41fbd8198ed2","2024-06-04T13:53:01.000+02:00","2026-04-22T11:55:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"138994660","198163269","RMILRAU1","","10:60:4B:9C:27:DC, 10:60:4B:9C:27:E0","10.43.4.201,10.41.40.201","fe80::1260:4bff:fe9c:27dc,fe80::1260:4bff:fe9c:27e0","Linux / Server","Red Hat Enterprise Linux Server 6.3","6.3","Computers / Server","HPE ProLiant DL360 G7 Server","8","2400","Intel(R) Xeon(R) CPU E5620 @ 2.40GHz","7857","HP P68 05/05/2011","CZJ24400HL","","'+02:00","2023-04-26T18:33:37.000+02:00","cybreconcile","Cloud Agent","7800337f-f123-481e-b26b-807801c6d492","2022-09-06T12:31:09.000+02:00","2026-04-22T10:15:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,ASUR,Obsolete,OS-LIN-SRV DYN,Cloud Agent,Linux Server,log4j,Production,Exploitation,VRF_INCONNUE","524.0"
"130588882","192836205","vmamrsxt1","","00:50:56:82:73:93, 00:50:56:82:2E:73, 00:50:56:82:69:1E","10.33.16.60,10.30.16.60,10.32.16.60","fe80::250:56ff:fe82:7393,fe80::250:56ff:fe82:2e73,fe80::250:56ff:fe82:691e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a6 8e eb 83 91 b8-d0 69 ec a5 7a d6 f9 b7","No Asset Tag","'+02:00","2025-10-09T11:39:32.000+02:00","cybexpapp","Cloud Agent","12d97d2c-e53a-486e-8273-da5ef8c65d95","2022-07-07T12:04:45.000+02:00","2026-04-22T10:15:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sextan,DEX,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,log4j,Recette,Sans,Trafic","699.0"
"171734767","226770082","lragtbpla1.sanef.groupe","","3e:33:fb:a0:00:a5, 3e:33:fb:a0:00:a4","10.45.1.227","fe80::3c33:fbff:fea0:a5,fe80::3c33:fbff:fea0:a4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGBW5200K","/n/Bios Asset Tag :","'+02:00","2026-02-23T17:19:46.000+02:00","oracle","Cloud Agent","8911252f-42b8-4a22-aa5b-fd12d7f3c2e8","2023-05-25T11:20:04.000+02:00","2026-04-22T10:15:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,AgileTime,DRH","339.0"
"327577343","333860585","vrdsibetc3.sanef-rec.fr","","00:50:56:bf:85:20","10.100.16.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 3f e1 47 4c e6 87 c6-8f a5 dc 27 b2 4d 00 02","No Asset Tag","'+02:00","2026-01-06T13:53:56.000+02:00","cybadmbdd","Cloud Agent","aad2d7ad-d15c-4b5e-92a4-94921c6b4541","2025-05-27T15:24:08.000+02:00","2026-04-22T10:15:08.000+02:00","x86_64","2","SCA,VM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0"
"159249333","211845831","vpsasactr1.sanef.groupe","","00:50:56:82:e1:6d","10.41.32.6","fe80::250:56ff:fe82:e16d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128400","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 68 66 a1 6c aa-c6 3a e1 d6 dc 9c 09 7e","No Asset Tag","'+02:00","2026-03-25T16:02:01.000+02:00","cybreconcile","Cloud Agent","af6606fc-6a57-4b19-8632-834a308f2af4","2023-02-14T16:35:03.000+02:00","2026-04-22T10:15:07.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,VRF_BURO_DC,BDD-POS DYN","93.0"
"213855690","251126730","lampdec1.sanef.groupe","","00:17:A4:77:14:E6","10.30.13.140","fe80::217:a4ff:fe77:14e6","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6EL","","'+02:00","2024-09-17T10:37:46.000+02:00","cybadmbdd","Cloud Agent","156d7940-47a5-496d-a3fd-08a5a9f1150e","2024-02-05T20:01:30.000+02:00","2026-04-22T10:15:01.000+02:00","x86_64","3","SCA,VM,GAV","log4j,Cloud Agent,Linux Server,BusinessObjects,BDD-POS DYN,OS-LIN-SRV DYN,Obsolete,DFIN","529.0"
"335897723","336780141","vrrpaangx1.sanef-rec.fr","","00:50:56:9c:16:d2","10.45.14.227","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1d 78 01 8c 4a d0-cd 00 26 9a 79 43 18 d9","No Asset Tag","'+02:00","2026-02-23T10:33:33.000+02:00","cybsupcar","Cloud Agent","44586578-1757-4548-b297-a52e315c4347","2025-06-24T10:23:46.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Péage,MID-NGINX DYN,Linux Server,Cloud Agent","140.0"
"195074577","241703494","vvbocrsap1.sanef-rec.fr","","00:50:56:9c:55:c1","10.45.6.12","fe80::250:56ff:fe9c:55c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c7 15 4c 32 fc 78-29 df 68 ce e2 c0 b1 ca","No Asset Tag","'+02:00","2026-03-10T10:11:12.000+02:00","cybsupsys","Cloud Agent","704b4548-7fc8-49e9-ae47-baa62e733487","2023-10-24T08:03:31.000+02:00","2026-04-22T10:14:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,Flux Libre","334.0"
"175461662","229280306","vvbotreco2.sanef-rec.fr","","56:ed:ae:09:e6:94, ea:fc:6a:70:d1:2c, 6e:70:e9:cb:2e:8a, c2:94:47:eb:4b:a0, 00:50:56:9c:93:d3, 02:b2:4d:b0:18:d0","10.45.6.155,10.89.0.1","fe80::54ed:aeff:fe09:e694,fe80::e8fc:6aff:fe70:d12c,fe80::6c70:e9ff:fecb:2e8a,fe80::c094:47ff:feeb:4ba0,fe80::250:56ff:fe9c:93d3,fe80::b2:4dff:feb0:18d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 f4 f9 b9 d3 44-08 9f 36 b4 e3 36 1c 85","No Asset Tag","'+02:00","2026-03-10T15:11:05.000+02:00","cybreconcile","Cloud Agent","47dac430-a3d2-4dc3-84c3-2d5c3ea604fd","2023-06-22T16:50:06.000+02:00","2026-04-22T10:14:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Recette,flux_libre","140.0"
"130586805","192835988","vmamrdif1.sanef.groupe","","00:50:56:82:0C:04","10.45.2.25","fe80::250:56ff:fe82:c04","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 b7 da fe 38 e7 af-c5 f8 4a 09 65 33 bf 74","No Asset Tag","'+02:00","2025-10-09T11:37:48.000+02:00","root","Cloud Agent","4b4cc9e0-1393-4bd2-a872-473ff5d2607f","2022-07-07T11:59:30.000+02:00","2026-04-22T11:47:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,VRF_INCONNUE,BDD-POS DYN,OS-LIN-SRV DYN,DEX,Sextan,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,log4j,Trafic,Recette,Sans","696.0"
"334495487","336780139","vrdsiarad1.sanef-rec.fr","","00:50:56:9c:41:8f","10.45.14.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 8f e8 03 a0 cd 70-bf 12 f0 4b 25 5b 2c a1","No Asset Tag","'+02:00","2026-04-20T16:55:11.000+02:00","cybadmroot","Cloud Agent","091c8c68-abea-443f-8477-5cece3743e9f","2025-06-18T17:35:29.000+02:00","2026-04-22T10:13:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,Radius","66.0"
"411158635","365551022","vplogakib1","","00:50:56:94:f3:0c","10.44.7.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 21 fe ed f3 95 c5-06 92 34 c4 70 65 6c 79","No Asset Tag","'+02:00","2026-04-15T10:55:05.000+02:00","cybintsys","Cloud Agent","8cf0a59b-7c48-4da0-bde5-d939c657fd99","2026-03-24T19:05:08.000+02:00","2026-04-22T10:13:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","103.0"
"175950696","229618441","vvbocharg1.sanef-rec.fr","","00:50:56:9c:8d:a8","10.45.6.4","fe80::250:56ff:fe9c:8da8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 84 e2 ba e7 23 1b-f3 1f e2 1c 6e 37 fe e6","No Asset Tag","'+02:00","2026-03-11T16:01:47.000+02:00","cybsupsys","Cloud Agent","79393a41-1ae4-4e20-a725-73faabdf17bf","2023-06-26T16:42:59.000+02:00","2026-04-22T10:13:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre,MID-APACHE-TOMCAT DYN,Recette,OS-LIN-SRV DYN","142.0"
"378055027","352307187","vpdsiangx4.sanef.groupe","","00:50:56:90:b6:c0","192.168.19.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 58 e0 f3 49 5a cd-a1 4b 62 d7 2f 21 93 33","No Asset Tag","'+02:00","2025-11-20T13:40:09.000+02:00","root","Cloud Agent","7be8f63a-d7f7-49bc-956a-d6f883f75240","2025-11-20T13:41:29.000+02:00","2026-04-22T10:13:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","330.0"
"130588848","192836203","vmamrrdt1","","00:50:56:82:0C:6D, 00:50:56:82:09:BB","10.45.2.185,10.45.2.189,10.45.2.190,10.45.2.191,10.45.2.193,10.45.3.185,10.45.3.189,10.45.3.190,10.45.3.191,10.45.3.193","fe80::250:56ff:fe82:c6d,fe80::250:56ff:fe82:9bb","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 aa b1 b8 96 ee-ca 32 05 82 2c 6a be 61","No Asset Tag","'+02:00","2025-10-09T11:38:41.000+02:00","cybexpapp","Cloud Agent","8fb0d821-c304-4c9d-9bc4-1bea5285db80","2022-07-07T12:03:10.000+02:00","2026-04-22T11:49:27.000+02:00","x86_64","5","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,Obsolete,Trafic,Sans,Recette,VRF_INCONNUE,MIVISU,Cloud Agent,Linux Server","873.0"
"173079542","227655711","vdbocmedi1.sanef-rec.fr","","00:50:56:9c:2e:2f","10.45.6.37","fe80::250:56ff:fe9c:2e2f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d2 43 f7 d2 cf b3-01 ce 33 e0 9a 55 5d a6","No Asset Tag","'+02:00","2026-03-11T10:03:59.000+02:00","ibmsysuser","Cloud Agent","56d77215-91cc-4a3c-a9d7-1115975bdce9","2023-06-05T15:51:34.000+02:00","2026-04-22T10:12:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","333.0"
"294384825","316468985","vptrabwaz1.sanef.groupe","","00:50:56:90:eb:a7","10.41.40.124","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 81 00 bc 47 3a d7-67 52 ba 14 24 0f 77 35","No Asset Tag","'+02:00","2026-01-21T15:15:10.000+02:00","cybintsys","Cloud Agent","4716d04a-9ddd-447e-b8d4-7fe20ca5c32f","2025-01-23T13:48:18.000+02:00","2026-04-22T11:49:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-ELA DYN,OS-LIN-SRV DYN","142.0"
"189179496","238409385","vvpeaarcv2.sanef-rec.fr","","00:50:56:9c:2e:91","10.45.6.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b9 78 20 06 79 a2-ad 17 ca 6a 65 ff ff 78","No Asset Tag","'+02:00","2026-03-09T13:04:38.000+02:00","cybreconcile","Cloud Agent","8358e818-71b8-4b64-8f6d-38275e33642f","2023-09-21T13:59:29.000+02:00","2026-04-22T11:38:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,log4j,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN,Recette,flux_libre,Flux Libre","336.0"
"238296972","269274161","lpemvbpemv4.sanef.groupe","","00:17:a4:77:1c:94, 00:17:a4:77:1c:24, 00:17:a4:77:1c:20","169.254.17.11,172.16.0.118,192.168.103.118,192.168.101.118,192.168.101.148","fe80::217:a4ff:fe77:1c94,fe80::217:a4ff:fe77:1c24,fe80::217:a4ff:fe77:1c20","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","CZ255300JN","","'+02:00","2025-10-08T16:33:15.000+02:00","grid","Cloud Agent","bffc7a43-eac3-4dbb-8f25-1cd79473640b","2024-05-21T16:48:50.000+02:00","2026-04-22T10:12:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard v17,Production","684.0"
"407771009","364205182","splogbels4","","d4:f5:ef:39:84:5d","10.44.7.44","fe80::d6f5:efff:fe39:845d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ2051091W","","'+02:00","2026-03-27T16:25:40.000+02:00","cybintsys","Cloud Agent","560222bd-b1c6-49c2-99a3-59a8d298040d","2026-03-11T18:30:30.000+02:00","2026-04-22T11:55:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Production,BDD-ELA DYN","152.0"
"360834094","345069350","vrrauafrt1.sanef-rec.fr","","00:50:56:9c:5c:ed, 00:50:56:9c:18:ff","10.45.9.235,10.45.5.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c c1 ae b8 80 17 13-bd 2a a6 c7 93 d4 cc 41","No Asset Tag","'+02:00","2026-04-21T15:17:32.000+02:00","cybadmsys","Cloud Agent","bfe3f61e-251b-4f25-b3ea-8df35e5bfaa0","2025-09-18T07:47:18.000+02:00","2026-04-22T11:45:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","47.0"
"314663097","326546973","vpdsiakib1.sanef.groupe","","00:50:56:94:87:c4","10.44.5.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 41 44 1c 7d d8 ce-ca 45 1e 1f 74 cc 25 3f","No Asset Tag","'+02:00","2026-02-10T10:24:43.000+02:00","cybreconcile","Cloud Agent","fc28a327-5742-4f5b-a645-7c184930d7a0","2025-04-08T17:03:59.000+02:00","2026-04-22T11:51:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server","140.0"
"354639273","342479604","vpdsiasaf1.sanef.groupe","","00:50:56:90:31:5a, b2:2c:a3:11:f1:e1, b6:c5:71:61:e3:86","192.168.19.8,10.88.0.1","fe80::b02c:a3ff:fe11:f1e1,fe80::b4c5:71ff:fe61:e386","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3654","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 18 f1 f2 d9 9f 21-1d 7b b0 2f ea 0a 2b 23","No Asset Tag","'+02:00","2026-03-24T11:14:21.000+02:00","cybsupsys","Cloud Agent","05c67cdb-9eb6-4732-b336-1b3a5a338677","2025-08-26T15:03:25.000+02:00","2026-04-22T11:14:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0"
"169599230","225349571","vrpeaabst1","","ba:f3:68:f1:12:88, 00:50:56:9c:19:a2","10.88.0.1,192.168.31.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8c ba 46 dd f6 5c-87 b2 62 4e 52 99 23 2d","No Asset Tag","'+02:00","2026-02-18T10:30:01.000+02:00","cybastapp","Cloud Agent","e860f3f8-0fb1-47d1-a9bf-03ee4de3146c","2023-05-09T15:02:28.000+02:00","2026-04-22T10:11:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,DMZ,BOOST,Cloud Agent,Linux Server,DSI,Péage,OS-LIN-SRV DYN","327.0"
"159252140","211849458","vpsasawrk1.sanef.groupe","","00:50:56:82:97:37","10.41.32.10","fe80::250:56ff:fe82:9737","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 5a 6d 3c 43 b4 c2-31 62 2c 0b 7c 39 7a 2d","No Asset Tag","'+02:00","2026-03-25T16:03:56.000+02:00","cybreconcile","Cloud Agent","54c2b156-2f0e-4b01-8fbb-36327c43c9b1","2023-02-14T17:09:43.000+02:00","2026-04-22T10:11:04.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-POS DYN,SAS,Cloud Agent,Linux Server","93.0"
"281406923","305953568","vtpataels1.sanef-rec.fr","","00:50:56:9c:b6:b3","10.45.9.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c7 9a 4d 53 0c 32-65 e0 44 6f f3 07 80 1d","No Asset Tag","'+02:00","2026-04-14T16:00:43.000+02:00","cybsecope","Cloud Agent","fe05b703-706a-4324-ae6c-0952a9bc8caa","2024-11-22T11:14:25.000+02:00","2026-04-22T10:10:30.000+02:00","x86_64","2","VM,PM,GAV","Recette,Patrimoine,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","65.0"
"175416002","229251780","vvbocs4as2.sanef-rec.fr","","00:50:56:9c:0b:6b","10.45.6.10","fe80::250:56ff:fe9c:b6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 12 88 ad 5a c9 fd-2b 42 24 7c e1 69 48 a2","No Asset Tag","'+02:00","2026-03-09T11:36:12.000+02:00","cybsupsys","Cloud Agent","962f14d5-aa5d-453f-9736-a87f28712b1f","2023-06-22T11:15:17.000+02:00","2026-04-22T10:10:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Recette,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN","142.0"
"130588308","192835991","vmamrhtp2","","00:50:56:82:6A:A5, 00:50:56:82:47:9D, 00:50:56:82:4A:25","10.33.16.51,10.30.16.51,10.30.16.54,10.30.16.55,10.30.16.56,10.32.16.51,10.32.16.54,10.32.16.55,10.32.16.56","fe80::250:56ff:fe82:6aa5,fe80::250:56ff:fe82:479d,fe80::250:56ff:fe82:4a25","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 4b 5e e6 a2 bd cc-12 db 6d 7c 85 60 a4 9d","No Asset Tag","'+02:00","2025-10-09T11:55:07.000+02:00","cybexpapp","Cloud Agent","577d5ed6-0449-42c4-b1d6-54d920fc49a4","2022-07-07T12:00:59.000+02:00","2026-04-22T11:31:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,DEX,VRF_INCONNUE,Obsolete,Amelie","349.0"
"131403992","193422091","lamaprac2.sanef.groupe","","00:17:A4:77:10:30, 00:17:A4:77:10:2C, 00:17:A4:77:10:24, 00:17:A4:77:10:28","10.43.40.52,192.168.17.121,10.41.40.52,10.41.40.53,10.43.4.132,169.254.214.18","fe80::217:a4ff:fe77:1030,fe80::217:a4ff:fe77:102c,fe80::217:a4ff:fe77:1024,fe80::217:a4ff:fe77:1028","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DH","","'+02:00","2025-10-06T11:06:39.000+02:00","cybadmbdd","Cloud Agent","ce87a0f9-a504-4146-9a16-6a37638d429f","2022-07-13T10:10:23.000+02:00","2026-04-22T10:09:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,OS-LIN-SRV DYN,log4j,VRF_TRAFIC_DC,Sans,Trafic,Production","351.0"
"216883440","252316001","vpaflgsys1.sanef.groupe","","00:50:56:9c:b2:c4","10.46.34.8","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 a9 85 65 58 62-44 16 76 34 12 cc c7 e7","No Asset Tag","'+02:00","2026-04-01T10:04:25.000+02:00","cybsupapp","Cloud Agent","53dcd2a6-a9b8-4b6a-bd86-653e7a553ef0","2024-02-19T12:34:56.000+02:00","2026-04-22T11:33:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Cloud Agent,Linux Server,Flux Libre","143.0"
"242127639","276920601","vpvsaaiad2","","00:50:56:9a:20:fb","10.44.0.105","fe80::250:56ff:fe9a:20fb","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a ff 99 15 58 8c 88-35 5e 93 3a 9d 82 57 2d","No Asset Tag","'-04:00","2026-02-04T18:09:39.000+02:00","tbaad-ext","Cloud Agent","7f232d97-39f9-4718-a716-f12f7b69e0aa","2024-06-06T15:32:26.000+02:00","2026-04-22T10:56:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"131405505","193423067","rmila150.sanef.groupe","","A0:D3:C1:FB:60:28","10.30.11.42","fe80::a2d3:c1ff:fefb:6028","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL360p G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","64386","HP P71 05/21/2018","CZJ429008S","","'+02:00","2025-10-22T09:42:22.000+02:00","cybexpapp","Cloud Agent","16d71e28-4c81-4b1f-be5d-590341dfacf0","2022-07-13T10:22:07.000+02:00","2026-04-22T10:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,Production,Sans,VRF_INCONNUE,Obsolete,OS-LIN-SRV DYN,log4j,DEX,Central péage,ServersInCyberark,Cloud Agent,Linux Server","346.0"
"366892020","347534122","vrpatbsip1.sanef.groupe","","00:50:56:9c:59:c3","10.43.255.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6d 29 5c a0 81 a1-77 aa 6c 2e dd 19 c7 8f","No Asset Tag","'+02:00","2026-04-07T14:24:42.000+02:00","cybsupapp","Cloud Agent","3c25e3ab-a99d-4d69-8049-c2f141f32163","2025-10-09T12:26:18.000+02:00","2026-04-22T10:52:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","60.0"
"282888814","313088162","vrdsiagit1.sanef-rec.fr","","00:50:56:9c:44:d5","10.45.7.229","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 01 ac 23 c6 f6 6a-52 07 e7 92 59 43 f0 9d","No Asset Tag","'+02:00","2025-12-10T17:07:56.000+02:00","root","Cloud Agent","29eef19b-47bf-4321-b9d0-5f5954622254","2024-11-28T11:04:17.000+02:00","2026-04-22T11:42:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,GitLab,Linux Server,Cloud Agent","141.0"
"208624727","248644832","vibotrssm2.sanef.groupe","","00:50:56:90:69:c2","10.41.23.153","fe80::250:56ff:fe90:69c2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 21 65 d0 bb f0 bc-fa 79 45 bc 6f 83 c7 fa","No Asset Tag","'+02:00","2026-03-18T16:38:50.000+02:00","cybreconcile","Cloud Agent","b6c6fa77-f6ed-44e3-a92d-9467175a1d35","2024-01-09T18:19:50.000+02:00","2026-04-22T10:08:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Production,OS-LIN-SRV DYN,MID-NGINX DYN,FreeFlow,Cloud Agent,Linux Server,flux_libre","139.0"
"272326721","300954740","vvbotaapm2.sanef-rec.fr","","2a:6b:d6:c3:8a:75, 00:50:56:9c:73:de, 7a:3c:ba:2d:1a:de, 2e:4a:5a:df:b9:7d, 4a:80:9b:0e:a8:dd, ba:51:e4:e5:73:f8, 32:b0:53:b2:af:ef","10.45.6.157,10.89.0.1","fe80::286b:d6ff:fec3:8a75,fe80::250:56ff:fe9c:73de,fe80::783c:baff:fe2d:1ade,fe80::2c4a:5aff:fedf:b97d,fe80::4880:9bff:fe0e:a8dd,fe80::b851:e4ff:fee5:73f8,fe80::30b0:53ff:feb2:afef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 22 b4 ed d0 bb 55-bd c6 34 0a 12 17 3a 11","No Asset Tag","'+02:00","2026-03-10T10:48:23.000+02:00","kapschsysuser","Cloud Agent","2e9b3aa9-4441-49d9-a57b-d87526c3176f","2024-10-15T12:09:05.000+02:00","2026-04-22T11:46:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0"
"210040166","249438986","siboomcla1.sanef.groupe","","5c:ba:2c:61:34:d0","10.41.22.204","fe80::87:a7ad:d2b7:8033","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95780","HPE U30 07/20/2023","CZ22410FK8","","'+02:00","2026-03-16T12:58:26.000+02:00","cybsupemo","Cloud Agent","c8cf4951-9272-4efe-9a0a-53b3b1d1ed4d","2024-01-17T12:56:03.000+02:00","2026-04-22T10:08:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN","337.0"
"392818522","358345782","vrdsialab1.sanef-rec.fr","","00:50:56:9c:c1:6d, f6:b2:59:e4:24:8c","10.45.16.35,172.28.0.1","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 03 94 48 e5 29 52-01 30 01 ad a1 7d a9 ae","No Asset Tag","'+02:00","2026-03-12T12:45:36.000+02:00","egret","Cloud Agent","47369580-1000-4a85-9a51-601646181033","2026-01-16T16:53:03.000+02:00","2026-04-22T11:01:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Recette","144.0"
"295110908","316903631","vpngwasic1","","00:50:56:8f:2a:08","10.44.200.100","fe80::250:56ff:fe8f:2a08","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 8c 8c 10 61 a3 3e-2c 38 cd e7 ed a9 d2 17","No Asset Tag","'+02:00","2026-02-02T17:06:04.000+02:00","root","Cloud Agent","be9b172d-c0d6-47a0-bea9-380445f251fc","2025-01-27T16:06:15.000+02:00","2026-04-22T11:24:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,TAG-SIA,TAG-SIC","53.0"
"196660167","242432943","vpbooaori2.sanef.groupe","","00:50:56:90:d4:76","10.41.22.140","fe80::250:56ff:fe90:d476","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7e 22 57 82 fd 6c-88 dc d8 6c 06 55 0b f5","No Asset Tag","'+02:00","2026-04-07T15:15:07.000+02:00","cybreconcile","Cloud Agent","a4da858e-2083-4d84-a008-757940e37101","2023-10-31T18:27:14.000+02:00","2026-04-22T10:06:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Flux Libre,flux_libre,Cloud Agent,Linux Server,FreeFlow","335.0"
"131270365","193318815","vpaiiarda1.sanef.groupe","","00:50:56:82:51:9f","10.30.10.75","fe80::250:56ff:fe82:519f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 fe 90 65 4f 1d 60-a9 51 72 cc dc 3b ac 2e","No Asset Tag","'+02:00","2024-09-10T09:40:14.000+02:00","cybreconcile","Cloud Agent","e4ad2df0-22c5-4f84-b526-6ac743d97f59","2022-07-12T15:25:26.000+02:00","2026-04-22T10:06:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,Cloud Agent,Linux Server,Production,Obsolete,VRF_INCONNUE,Rebond","53.0"
"218315519","252974484","viboobquo1.sanef.groupe","","00:50:56:90:97:24","10.100.16.11","fe80::250:56ff:fe90:9724","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d4 4f 35 f5 f9 fe-7a 3e 58 29 08 a1 76 e6","No Asset Tag","'+02:00","2026-03-16T11:16:12.000+02:00","cybreconcile","Cloud Agent","2359e7a8-4ea6-44bd-b7ce-16fc12a4d629","2024-02-26T15:32:46.000+02:00","2026-04-22T11:46:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","141.0"
"339877892","336780154","vppwdahap2.sanef.groupe","","00:50:56:94:f7:20","10.44.1.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 51 10 8c b1 aa 1e-7d 56 dd 98 cc d3 28 5d","No Asset Tag","'+02:00","2026-01-07T11:28:26.000+02:00","cybreconcile","Cloud Agent","c7543c65-896a-409a-8810-a647189f369d","2025-07-07T17:43:19.000+02:00","2026-04-22T11:56:22.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,BDD","331.0"
"399074773","360968875","vtdsibpgs2.sanef-rec.fr","","00:50:56:9c:6f:a2","10.45.1.173","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d4 af 7e cb cc 73-0b c7 2c ff ba f7 84 f8","No Asset Tag","'+02:00","2026-03-11T11:25:24.000+02:00","root","Cloud Agent","8ca1a11f-9165-460c-b7db-2593c97ade73","2026-02-10T12:46:31.000+02:00","2026-04-22T11:01:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,Linux Server,OS-LIN-SRV DYN,Cloud Agent,BDD-POS DYN,Recette","144.0"
"175564471","229349435","vvbotatvv2.sanef-rec.fr","","be:7a:55:25:e7:92, 6e:43:48:cb:e2:1a, 00:50:56:9c:cd:e1","10.89.0.1,10.45.6.167","fe80::bc7a:55ff:fe25:e792,fe80::6c43:48ff:fecb:e21a,fe80::250:56ff:fe9c:cde1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 88 d4 32 31 8a 91-29 87 2a 7e 46 60 c6 16","No Asset Tag","'+02:00","2026-03-10T12:17:09.000+02:00","cybreconcile","Cloud Agent","d46e8ae6-c69f-4fd7-b681-2e8c53bafb0a","2023-06-23T12:02:56.000+02:00","2026-04-22T11:45:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,FreeFlow,Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,flux_libre","141.0"
"279153754","304713612","vrdecasas3.sanef.groupe","","00:50:56:82:9e:6b","10.45.1.6","fe80::250:56ff:fe82:9e6b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d4 c2 ec 31 d8 d7-55 0e 43 0b 2b cf 47 06","No Asset Tag","'+02:00","2026-03-23T11:57:06.000+02:00","cybsupsys","Cloud Agent","493fd2a6-8277-49c0-83bf-acb2d49090da","2024-11-14T15:54:04.000+02:00","2026-04-22T10:04:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,OS-LIN-SRV DYN","139.0"
"395543997","359520554","vrsigaptl1.sanef-rec.fr","","00:50:56:9c:fd:ee","10.45.2.33","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 3d 88 ae a6 e0 f3-92 9e cb 94 f4 dc fd 09","No Asset Tag","'+02:00","2026-02-25T13:43:10.000+02:00","cybsupapp","Cloud Agent","aae97ad2-7cfe-461a-a34d-3d5053bc39e6","2026-01-28T11:49:58.000+02:00","2026-04-22T11:49:10.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Recette,SIG,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-APACHE-TOMCAT DYN","217.0"
"143793491","201145998","vrintbweb2.sanef.groupe","","00:50:56:82:83:8f","10.45.1.196","fe80::250:56ff:fe82:838f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 f4 51 81 c1 24 1b-be b4 cd d4 fb b0 4a fa","No Asset Tag","'+02:00","2026-02-23T13:33:18.000+02:00","cybadmsys","Cloud Agent","cd070384-a015-4313-8a18-5e498034d13c","2022-10-12T18:26:56.000+02:00","2026-04-22T11:41:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,Cloud Agent,Linux Server","334.0"
"377809988","352213955","vpdsiangx2.sanef.groupe","","00:50:56:90:09:4a","192.168.19.161","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 1e 47 82 d6 0c 90-43 35 b8 c5 d5 49 9e e0","No Asset Tag","'+02:00","2026-04-13T14:28:28.000+02:00","cybreconcile","Cloud Agent","f1f66d97-cb1c-45c1-bce7-3174862cb0ab","2025-11-19T18:59:11.000+02:00","2026-04-22T10:02:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","329.0"
"208777986","248746837","vibotapps2.sanef.groupe","","00:50:56:90:1d:96","10.41.23.137","fe80::250:56ff:fe90:1d96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48013","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 94 04 c8 9e 5c 19-48 57 ca 74 4f e4 a8 ac","No Asset Tag","'+02:00","2026-03-17T11:29:49.000+02:00","cybreconcile","Cloud Agent","cc4bb2b8-2c99-41b0-813e-3f01a5645dd0","2024-01-10T12:58:35.000+02:00","2026-04-22T11:48:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0"
"357896652","343916086","vprpsangx1.sanef.groupe","","00:50:56:90:06:8c","10.41.20.25","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 fe 7a 14 54 29 cb-a3 e6 3a ee b0 34 f9 9c","No Asset Tag","'+02:00","2026-02-25T15:35:39.000+02:00","cybreconcile","Cloud Agent","2031410a-7022-4386-a664-ea11cab03d86","2025-09-08T16:15:13.000+02:00","2026-04-22T10:01:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Péage,Production","140.0"
"324698955","330493463","vpgawamft1.sanef.groupe","","00:50:56:90:b3:a6","10.42.16.15,10.42.16.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1b e7 6e 16 15 0f-90 06 de 1b c5 d5 0c 74","No Asset Tag","'+02:00","2026-03-19T15:43:25.000+02:00","cybexpapp","Cloud Agent","7a6f02f3-0895-4742-848b-1602f842ebb0","2025-05-14T14:11:29.000+02:00","2026-04-22T10:58:47.000+02:00","x86_64","2","SCA,VM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","146.0"
"196660522","242432946","vpboomocr1.sanef.groupe","","00:50:56:90:3d:93","10.41.22.138","fe80::250:56ff:fe90:3d93","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3664","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 25 2e 6b e5 7a 60-79 50 1b 9d 3e f5 42 16","No Asset Tag","'+02:00","2026-04-07T16:01:15.000+02:00","cybadmroot","Cloud Agent","e6a968e9-e277-454a-a0d0-626b7279ee29","2023-10-31T18:27:14.000+02:00","2026-04-22T11:54:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,ServersInCyberark,flux_libre,OS-LIN-SRV DYN,Production,Flux Libre,Cloud Agent,Linux Server","336.0"
"340063685","336780158","lpamebrac2.sanef.groupe","","3e:33:fb:a0:00:f1, 3e:33:fb:a0:00:ed","10.43.4.139,10.41.41.111,10.41.41.115","fe80::3c33:fbff:fea0:f1,fe80::3c33:fbff:fea0:ed","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGBW52014","/n/Bios Asset Tag :","'+02:00","2025-11-20T11:16:01.000+02:00","cybreconcile","Cloud Agent","cde7c92e-3baa-4fcd-8dd5-d076d06fed26","2025-07-08T10:21:20.000+02:00","2026-04-22T11:45:54.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,OS-LIN-SRV DYN,Amelie,Production,Cloud Agent","335.0"
"230624144","258742189","vpsupapol3.sanef.groupe","","00:50:56:8d:0f:61","10.44.5.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","1778","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 01 97 6d b8 39 77-d1 38 9d 2f e4 52 82 94","No Asset Tag","'+02:00","2026-03-30T11:03:58.000+02:00","cybreconcile","Cloud Agent","0e5dcde3-eb25-459e-b3d3-9b65a36b1545","2024-04-17T18:08:36.000+02:00","2026-04-22T11:27:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","66.0"
"158198255","210926887","vpdsiaumds1","","00:50:56:82:84:3a","192.168.18.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 64 33 40 32 68 07-fe d2 af c0 d9 78 99 20","No Asset Tag","'+02:00","2026-01-29T11:54:35.000+02:00","cybreconcile","Cloud Agent","1c49e4cf-d9a6-4534-9b4a-82b7aaf7ac1b","2023-02-06T13:40:20.000+02:00","2026-04-22T11:29:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,DSI,VCENTER,OS-LIN-SRV DYN","140.0"
"331039777","333860583","vrameahtp1.sanef-rec.fr","","00:50:56:9c:58:38, 00:50:56:9c:91:5c","10.45.4.50,10.45.2.50,10.45.2.52,10.45.2.55,10.45.2.54,10.45.2.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d0 3b 2f e9 cd 48-3c 44 a6 6f 73 62 4d 10","No Asset Tag","'+02:00","2026-04-02T16:26:08.000+02:00","cybintsys","Cloud Agent","5a65a923-f1a4-4bf8-a3b6-2f0a5b3748a5","2025-06-05T08:32:31.000+02:00","2026-04-22T11:55:24.000+02:00","x86_64","4","SCA,VM,GAV","Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,DEX,Linux Server,Cloud Agent","284.0"
"112576691","180430333","vpssiapki1.sanef.groupe","","52:54:00:4c:07:2e, 00:50:56:82:de:2e","192.168.122.1,10.30.10.157","fe80::7829:ca19:ffd9:5c41","Linux / Server","The CentOS Project CentOS Stream 8","","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7954","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 73 4f c5 4d dd f3-5a 0e 55 80 de 8d 4d 76","No Asset Tag","'+02:00","2025-02-18T11:12:27.000+02:00","root","Cloud Agent","41bf3f3e-26ff-4f0e-a179-38fd3d0af892","2022-02-07T12:17:45.000+02:00","2026-04-22T11:31:01.000+02:00","x86_64","2","SCA,VM,GAV","DSI,Linux Server,Outils prod (Monitoring, NMS, gestion de parc),Production,Gestion_PKI,Obsolete,Cloud Agent","41.0"
"114204409","181635177","lamaprac4.sanef.groupe","","00:17:A4:77:10:3A, 00:17:A4:77:10:42, 00:17:A4:77:10:36, 00:17:A4:77:10:3E","10.43.4.136,169.254.242.4,10.43.40.56,10.41.40.56,10.41.40.57,192.168.17.123","fe80::217:a4ff:fe77:103a,fe80::217:a4ff:fe77:1042,fe80::217:a4ff:fe77:1036,fe80::217:a4ff:fe77:103e","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DG","","'+02:00","2025-10-08T15:12:32.000+02:00","cybastapp","Cloud Agent","cc6d440d-dc99-48e3-afcc-84d6e1697c1c","2022-02-21T14:47:16.000+02:00","2026-04-22T11:48:15.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Obsolete,Haute,Trafic,Sans,Production,Cloud Agent,DEX,OS-LIN-SRV DYN,Sextan,Linux Server,VRF_TRAFIC_DC","879.0"
"137331581","197582940","vpairatom1.sanef.groupe","","00:50:56:82:54:15","10.42.40.135","fe80::250:56ff:fe82:5415","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d c6 e7 7d d5 52 2d-df 8a 92 09 b5 75 f3 13","No Asset Tag","'+02:00","2026-01-20T17:08:53.000+02:00","cybreconcile","Cloud Agent","8079b5ee-91f7-4d2d-ad3f-3ffbacb536ee","2022-08-30T15:45:52.000+02:00","2026-04-22T11:44:05.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_AIRES_DC,Production,VISIONAIRE,DSG,OS-LIN-SRV DYN","210.0"
"238501906","269490999","vibotapps1.sanef.groupe","","00:50:56:90:0b:f3","10.41.23.136","fe80::250:56ff:fe90:bf3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f4 3f cf 82 a3 92-bb 86 76 de a1 6b bd e7","No Asset Tag","'+02:00","2026-03-17T11:13:35.000+02:00","cybadmroot","Cloud Agent","8a264ccc-f947-4bd7-a824-0b94f380bd44","2024-05-22T12:19:05.000+02:00","2026-04-22T11:46:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0"
"131275232","193320762","vpaiiapol4","","00:50:56:82:66:07","10.30.12.128","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 f8 a6 89 02 81 7e-81 e6 9e f3 aa e1 26 31","No Asset Tag","'+02:00","2024-06-04T14:25:32.000+02:00","cybadmsys","Cloud Agent","54648c63-aabb-4fb8-a46f-812b36bc707a","2022-07-12T15:46:44.000+02:00","2026-04-22T11:39:40.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production,Centreon,Cloud Agent,Linux Server,Obsolete,VRF_INCONNUE","82.0"
"241539604","276514044","vpvsaaafz1.sanef.groupe","","00:50:56:90:46:9a","192.168.18.78","fe80::250:56ff:fe90:469a","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 c6 5b 4b 7b fa 21-eb 83 ac 6a ce fc 8a 09","No Asset Tag","'+02:00","2026-02-04T12:19:48.000+02:00","tbaad","Cloud Agent","96356976-305b-4ed0-939b-7dd7c5bb0fc5","2024-06-04T12:22:32.000+02:00","2026-04-22T11:47:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"366152124","347225549","vpsicapol1.sanef.groupe","","00:50:56:8f:b1:82","10.44.200.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 0f fd b6 35 ab 48 ae-a8 6d c7 9e 39 2a 84 34","No Asset Tag","'+02:00","2026-03-18T14:15:58.000+02:00","cybreconcile","Cloud Agent","d79638ce-e667-4ec9-bfff-2a76a06d6dc1","2025-10-07T17:43:35.000+02:00","2026-04-22T10:52:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Centreon,TAG-SIA,Linux Server,Cloud Agent","285.0"
"228697918","257670138","vvbocasec1","","00:50:56:9c:27:8f","10.45.6.14","fe80::250:56ff:fe9c:278f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 49 1f 8e c9 09 9c-0e c4 3e 15 c0 98 a2 4d","No Asset Tag","'+02:00","2026-03-11T15:52:36.000+02:00","cybsecope","Cloud Agent","930af021-95b8-4dde-8621-f7b4b89e54b8","2024-04-09T14:13:08.000+02:00","2026-04-22T11:41:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN","141.0"
"130586766","192835849","lamarrac2.sanef.groupe","","00:17:A4:77:0C:7C, 00:17:A4:77:0C:74, 00:17:A4:77:0C:70, 00:17:A4:77:0C:78","10.45.3.101,10.45.5.3,169.254.120.200,10.45.2.102,10.45.2.103,10.45.5.19","fe80::217:a4ff:fe77:c7c,fe80::217:a4ff:fe77:c74,fe80::217:a4ff:fe77:c70,fe80::217:a4ff:fe77:c78","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SJ","","'+02:00","2026-02-25T16:10:32.000+02:00","root","Cloud Agent","7e2d8833-dcbb-465a-971d-e9bab8ca47a1","2022-07-07T11:56:14.000+02:00","2026-04-22T09:56:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Obsolete,Sans,Trafic,Recette,Sextan,Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,VRF_INCONNUE","693.0"
"131407949","193425885","vpaiiapol9","","00:50:56:82:05:74","10.30.12.129","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 d4 e1 7c 78 61 16-bf 7c e7 39 5a 03 30 a6","No Asset Tag","'+02:00","2024-06-06T11:44:26.000+02:00","cybreconcile","Cloud Agent","7ab828f1-6a6d-463d-bb63-22f925fff320","2022-07-13T10:49:27.000+02:00","2026-04-22T11:45:06.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,DSI,MID-APACHE-TOMCAT DYN,BDD-ELA DYN,BDD-POS DYN,BDD-SQL DYN,MID-NGINX DYN,Centreon,VRF_INCONNUE,Outils prod (Monitoring, NMS, gestion de parc),Sans,Production","462.0"
"241562936","276524405","vpvsaagez1","","00:50:56:9c:32:9d","192.168.18.75","fe80::250:56ff:fe9c:329d","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 3c 0e 6b c2 82 a7-9b 3f 38 e5 9e 1f 61 89","No Asset Tag","'+02:00","2026-02-04T16:17:24.000+02:00","tbaad","Cloud Agent","f7737ced-5ff5-472b-b284-24939729a6b2","2024-06-04T13:59:35.000+02:00","2026-04-22T11:28:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"241531310","276507273","vpvsaaafl2.sanef.groupe","","00:50:56:90:27:24","10.42.16.86","fe80::250:56ff:fe90:2724","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7a c2 fd 69 79 c2-be f1 88 47 2e 46 1d 7d","No Asset Tag","'+02:00","2026-02-04T11:52:09.000+02:00","tbaad-ext","Cloud Agent","1c018fe9-244b-414e-90a5-b24fce8caa78","2024-06-04T11:39:07.000+02:00","2026-04-22T10:59:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"411849639","365824822","vpgrsangx1.sanef.groupe","","00:50:56:90:0f:2e","10.41.20.85","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 09 74 7b 39 d0 d4-96 e9 14 4a 79 ca 3b 7e","No Asset Tag","'+02:00","2026-04-07T15:49:03.000+02:00","cybreconcile","Cloud Agent","26288a73-39be-4247-a117-243ff9321bc3","2026-03-27T12:21:28.000+02:00","2026-04-22T11:50:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,MID-NGINX DYN,BDD-POS DYN","65.0"
"209161378","248966234","vibotreco1.sanef.groupe","","00:50:56:90:9b:e5","10.41.23.139","fe80::250:56ff:fe90:9be5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 ec cd c6 d3 40 12-1e cf b4 3d 27 b3 9d d6","No Asset Tag","'+02:00","2026-03-18T15:10:27.000+02:00","cybreconcile","Cloud Agent","bf13b879-30b9-4164-bd94-22c98344237e","2024-01-12T11:59:05.000+02:00","2026-04-22T09:56:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre","140.0"
"314655310","326546335","vpdsibels2.sanef.groupe","","00:50:56:94:96:34","10.44.5.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31888","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 60 40 b3 ee 11 5c-9c b0 f2 d9 86 56 4b fb","No Asset Tag","'+02:00","2026-02-10T11:05:28.000+02:00","cybadmbdd","Cloud Agent","f427b4d3-0ec6-4dc6-8995-9c381ee2a225","2025-04-08T16:55:59.000+02:00","2026-04-22T11:14:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production,BDD","140.0"
"313690077","326069856","vpdsibpmm1.sanef.groupe","","00:50:56:94:00:f8","10.44.5.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 7f b4 d5 3b 1c 62-e2 1c 90 22 30 75 98 36","No Asset Tag","'+02:00","2026-02-10T11:05:12.000+02:00","cybreconcile","Cloud Agent","5b8204f5-bd25-4913-ae45-f144b7e8f7fe","2025-04-04T10:33:58.000+02:00","2026-04-22T11:52:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,BDD","139.0"
"130588736","192836894","vmamrsxt2","","00:50:56:82:38:AC, 00:50:56:82:10:63, 00:50:56:82:35:7E","10.30.16.61,10.32.16.61,10.33.16.61","fe80::250:56ff:fe82:38ac,fe80::250:56ff:fe82:1063,fe80::250:56ff:fe82:357e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8d bf ac 8d f7 1f-af c6 c5 0a 46 ec 9b a7","No Asset Tag","'+02:00","2025-10-09T11:39:35.000+02:00","cybexpapp","Cloud Agent","fedd9208-8c4b-45e2-bec4-4424ba542a92","2022-07-07T12:05:18.000+02:00","2026-04-22T11:50:14.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Sans,Trafic,Recette,Cloud Agent,Linux Server,log4j,VRF_INCONNUE,OS-LIN-SRV DYN,DEX,Obsolete,Sextan","699.0"
"332364676","333860645","vpameakfk2.sanef.groupe","","00:50:56:90:62:fb","10.41.41.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 64 2f ce 71 ca b3-79 bb ce 4b f5 6f 33 2e","No Asset Tag","'+02:00","2025-10-29T11:31:29.000+02:00","cybadmbdd","Cloud Agent","5451e375-b869-4489-86d7-b19519650c27","2025-06-10T16:31:40.000+02:00","2026-04-22T10:55:46.000+02:00","x86_64","4","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","278.0"
"356281593","343240103","vpdsiadep1.sanef.groupe","","00:50:56:94:aa:b4","10.44.6.5","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","9684","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 8f 6e c6 cc c9 bb-c2 9f 14 db 5f fa 0c 8e","No Asset Tag","'+02:00","2026-02-10T12:07:18.000+02:00","cybadmroot","Cloud Agent","459ae527-bb2c-4372-8da8-8020e6694172","2025-09-02T10:54:05.000+02:00","2026-04-22T11:27:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,NextCloud,Production,Linux Server,Cloud Agent","332.0"
"184274823","235418455","vpsimaapi1","","00:50:56:82:09:8a","10.41.20.30","fe80::583f:dea5:8ddc:2bec","Linux / Server","The CentOS Project CentOS 7.4 (1708)","7.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7984","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 88 e4 f4 8d 79 b0-18 b6 c7 6b ad 9a b1 4f","No Asset Tag","'+02:00","2025-02-24T16:01:53.000+02:00","cybreconcile","Cloud Agent","9e4e4ac7-3f61-4a3e-bf90-933107c8f924","2023-08-24T12:18:59.000+02:00","2026-04-22T11:47:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,BDD-POS DYN,FreeFlow,log4j,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,Obsolete","343.0"
"139157311","198270449","vmamprdt2","","00:50:56:82:4d:83, 00:50:56:82:73:0e, 00:50:56:82:1e:cc","10.41.40.71,10.41.40.74,10.41.40.75,10.43.40.71,10.43.40.74,10.43.40.75,10.43.4.71","fe80::250:56ff:fe82:4d83,fe80::250:56ff:fe82:730e,fe80::250:56ff:fe82:1ecc","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3a 36 7c ea da 33-d1 92 df 39 0a 2d 2f 32","No Asset Tag","'+02:00","2024-02-14T14:45:03.000+02:00","cybreconcile","Cloud Agent","2390c953-cec7-401c-9d98-461499419684","2022-09-07T14:31:30.000+02:00","2026-04-22T09:53:24.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,VRF_TRAFIC_DC,Trafic,log4j,DEX,Cloud Agent,Linux Server,Production,MIVISU,OS-LIN-SRV DYN","873.0"
"382992167","354208654","vrpeabrac2.sanef-rec.fr","","52:54:00:54:39:20, 9a:53:a6:01:38:c3, 52:54:00:bf:eb:9c","192.168.17.5,192.168.16.24,10.45.15.37","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T15:41:12.000+02:00","oracle","Cloud Agent","9821a6e3-ac73-475b-b388-35462434174b","2025-12-10T12:11:02.000+02:00","2026-04-22T09:52:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","339.0"
"416487289","367845342","vrzbxaapp1.sanef-rec.fr","","00:50:56:9c:25:44","10.45.15.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 64 2f 45 34 33 f8-91 16 9d bd 35 38 8b cb","No Asset Tag","'+02:00","2026-04-16T17:07:58.000+02:00","cybintsys","Cloud Agent","25db37e5-6c59-40dc-8a3d-c58d87cf3053","2026-04-16T17:08:17.000+02:00","2026-04-22T11:38:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","66.0"
"382990199","354209251","vrpeabrac1.sanef-rec.fr","","52:54:00:0c:48:7e, 52:54:00:d5:33:4b, 1a:08:40:51:70:fb","10.45.15.36,192.168.17.5,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","64413","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:43:49.000+02:00","oracle","Cloud Agent","8ea1a893-c52b-45dd-aca0-8e8e3a787bfc","2025-12-10T12:11:44.000+02:00","2026-04-22T11:43:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0"
"137339569","197584629","vptraagas1","","00:50:56:82:05:5d","10.41.40.150","fe80::250:56ff:fe82:55d","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 66 78 f5 41 da e3-68 15 1c ce 99 bf 0c c9","No Asset Tag","'+02:00","2025-01-16T11:16:46.000+02:00","cybadmsys","Cloud Agent","76d7296f-4d35-4c0b-b317-0602fb796e2a","2022-08-30T16:11:51.000+02:00","2026-04-22T09:51:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Exploitation,Production,DEX,OS-LIN-SRV DYN,Obsolete,VRF_TRAFIC_DC,Gaspar","517.0"
"359801548","344907765","vrcybapsp1.sanef-rec.fr","","00:50:56:9c:27:27","10.45.11.103","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3654","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9c d3 87 0e c5 1c-1f 79 4e 63 20 02 3d 82","No Asset Tag","'+02:00","2026-04-16T11:21:29.000+02:00","cybreconcile","Cloud Agent","67758aed-02ba-4179-ab10-9b51b3787577","2025-09-15T15:54:53.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,CyberArk,OS-LIN-SRV DYN","66.0"
"143625427","201026716","vpemvaldap2.sanef.groupe","","00:50:56:82:51:0c","192.168.100.128","fe80::250:56ff:fe82:510c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 9c 59 10 65 fe cb-d8 4b 37 07 c2 47 70 33","No Asset Tag","'+02:00","2025-06-03T11:06:33.000+02:00","root","Cloud Agent","d3575692-9abd-4cfe-8bf1-b4ee8afa001a","2022-10-11T17:44:53.000+02:00","2026-04-22T09:51:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,DEX,BDD-POS DYN,PCI Bunker EMV - VLAN Supervision/Admin,VRF_INCONNUE,Cloud Agent,Linux Server,Obsolete","107.0"
"241859199","276775641","vpdsiawik1.sanef.groupe","","00:50:56:9c:a3:a4","192.168.31.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 9c f5 a8 72 94 b0-56 cb 50 f9 c6 65 94 22","No Asset Tag","'+02:00","2026-04-13T11:20:26.000+02:00","cybreconcile","Cloud Agent","f44f74c6-1b54-40d2-abb1-8238f56a3f8c","2024-06-05T16:19:37.000+02:00","2026-04-22T11:44:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,DocuWiki,Production","67.0"
"303928250","322166975","vpdsismtp2.sanef.groupe","","00:50:56:9c:a0:a8","192.168.19.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 00 68 5b 39 44 33-bc 21 52 75 63 7b 5c 22","No Asset Tag","'+02:00","2026-04-08T11:53:27.000+02:00","cybsecope","Cloud Agent","3e6b3e9e-bc4f-47d7-a791-9aca43d21382","2025-02-27T18:09:58.000+02:00","2026-04-22T11:48:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,OS-LIN-SRV DYN,Linux Server,Cloud Agent,EXCHANGE,Production","132.0"
"200012633","244159298","vppeaabst2.sanef.groupe","","00:50:56:90:0c:39","10.41.20.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 fd f2 0c 9c 7d-53 62 bf db 8b fa a2 df","No Asset Tag","'+02:00","2026-04-16T14:46:56.000+02:00","cybreconcile","Cloud Agent","10a98a33-ca7c-49b4-b122-44d54db84dfb","2023-11-20T18:32:46.000+02:00","2026-04-22T09:50:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,TAG-SRVEXPOSEINDIRECT,FreeFlow,Production","485.0"
"222529119","254800462","vppatakib1.sanef.groupe","","00:50:56:90:59:ba","10.42.40.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 6f fd 1c cd de 1f-ce 83 16 7d ad c6 7e 9f","No Asset Tag","'+02:00","2026-04-09T16:12:53.000+02:00","cybadmbdd","Cloud Agent","83451f3c-6805-458b-979e-1fb6ffcd2068","2024-03-15T12:10:59.000+02:00","2026-04-22T11:18:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","PATRIMOINE,DFIN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","57.0"
"183457732","234863518","vtdsibpgs1.sanef-rec.fr","","00:50:56:9c:77:7e","10.45.1.167","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b6 7b 71 22 01 84-ec fe 04 26 bf 3b 4f 17","No Asset Tag","'+02:00","2026-01-06T15:54:48.000+02:00","cybsecope","Cloud Agent","ec852b1a-f855-46a4-88ae-903b37921bed","2023-08-18T17:11:51.000+02:00","2026-04-22T11:53:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,PATRIMOINE","141.0"
"236895900","266301960","vpvpnarad2","","02:42:9c:2f:9f:bb, b6:47:fe:27:d8:89, 00:50:56:90:40:f5","172.17.0.1,192.168.19.7","fe80::42:9cff:fe2f:9fbb,fe80::b447:feff:fe27:d889,fe80::250:56ff:fe90:40f5","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2a 03 6f bc c2 e7-10 f6 d6 6c 6e 29 9c e9","No Asset Tag","'+02:00","2026-02-24T12:31:12.000+02:00","cybsupsys","Cloud Agent","db63d141-d056-4287-9e53-31930fdb766e","2024-05-15T14:46:02.000+02:00","2026-04-22T11:36:13.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,GEMALTO,VPN,Radius,DSI","207.0"
"381698913","353634169","spbckamag7.sanef.groupe","","6c:29:d2:30:51:dc, 6c:29:d2:30:51:dd","10.42.16.101,10.43.1.9","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3G","Unknown","'+02:00","2025-12-04T17:01:36.000+02:00","root","Cloud Agent","de6ae98a-1867-41a0-98a2-043a932172c8","2025-12-04T16:39:03.000+02:00","2026-04-22T11:40:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0"
"130586812","192835992","vmamrhtp1","","00:50:56:82:00:63, 00:50:56:82:1F:DC, 00:50:56:82:46:63","10.32.16.50,10.30.16.50,10.30.16.57,10.30.16.59,10.33.16.50","fe80::250:56ff:fe82:63,fe80::250:56ff:fe82:1fdc,fe80::250:56ff:fe82:4663","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d3 dc 26 d6 b0 47-13 65 44 3c 3c 1d b0 59","No Asset Tag","'+02:00","2025-10-09T11:37:38.000+02:00","cybexpapp","Cloud Agent","946a2d3a-0f88-464a-986b-a92a377b8afd","2022-07-07T12:00:23.000+02:00","2026-04-22T11:45:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,DEX,log4j,Amelie,Obsolete,Sans,Trafic,Recette,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN","349.0"
"191660245","239874257","sibocbsap2.sanef.groupe","","88:e9:a4:75:25:08","10.41.22.76","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240L CPU @ 2.60GHz","4127749","HPE U34 07/20/2023","CZ22420F50","","'+02:00","2026-03-16T16:22:43.000+02:00","cybastapp","Cloud Agent","af2ca818-f1c9-4b0c-a5c2-33213852a9bb","2023-10-05T21:48:59.000+02:00","2026-04-22T09:49:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Production,Flux Libre","337.0"
"332353560","333860644","vpameakfk1.sanef.groupe","","00:50:56:90:04:1c","10.41.41.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 b3 9d 5a d9 91 de-49 0d d0 9b 5b 6b 02 07","No Asset Tag","'+02:00","2025-10-29T11:06:09.000+02:00","cybadmbdd","Cloud Agent","51544ed6-bde3-4faa-b97f-31bb7e0d44f9","2025-06-10T16:29:00.000+02:00","2026-04-22T10:08:16.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Sextan,Production","278.0"
"130590027","192837854","vdameassl1.sanef.groupe","","00:50:56:82:f1:1a","10.43.255.45","fe80::f672:80e6:59b3:f788","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b b7 30 78 5e 8a-ad a8 29 5f 73 57 24 cb","No Asset Tag","'+02:00","2026-04-20T15:24:04.000+02:00","cybexpapp","Cloud Agent","a5692cec-00b3-4117-a659-3b436eaa851d","2022-07-07T12:12:12.000+02:00","2026-04-22T09:38:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,DEX,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Sextan","268.0"
"175464814","229282552","vvbotatst3.sanef-rec.fr","","00:50:56:9c:ba:92","10.45.6.161","fe80::250:56ff:fe9c:ba92","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 97 75 e5 1f ac c9-75 c6 00 62 09 fb 2d e9","No Asset Tag","'+02:00","2026-03-10T12:00:04.000+02:00","cybreconcile","Cloud Agent","475dd744-3781-4643-97b0-8ce87c3e0672","2023-06-22T17:17:41.000+02:00","2026-04-22T11:55:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,Recette,Flux Libre,flux_libre,Cloud Agent,Linux Server","334.0"
"238272367","269262155","vipeabbst2.sanef.groupe","","00:50:56:90:ce:4e","10.41.29.56","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fc 3a 2e ef 88 c6-05 2a 0d ba 91 ec 80 aa","No Asset Tag","'+02:00","2026-03-19T11:10:15.000+02:00","cybintsys","Cloud Agent","391e4720-a981-4d5b-bb7e-ebb0db648bb9","2024-05-21T14:51:21.000+02:00","2026-04-22T11:02:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0"
"201783484","245012499","vrameastg2","","00:50:56:9c:17:d8, 00:50:56:9c:bb:2e","10.45.2.11,10.45.4.11","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc 36 79 54 6c ba-ca 12 cd 69 db a2 8b 97","No Asset Tag","'+02:00","2026-04-21T11:03:11.000+02:00","cybadmsys","Cloud Agent","be788eb3-66f5-44eb-a642-ec84a40a79e1","2023-11-30T16:16:30.000+02:00","2026-04-22T11:44:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","47.0"
"279155823","304713613","vrdecasas2.sanef.groupe","","00:50:56:82:7f:e4","10.45.1.5","fe80::250:56ff:fe82:7fe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2b 63 fb 72 01 f6-47 5d 14 e5 e3 22 ca 28","No Asset Tag","'+02:00","2026-03-23T11:55:09.000+02:00","cybadmsys","Cloud Agent","4b70bd06-8ae2-45da-baee-f2f13c404985","2024-11-14T15:53:41.000+02:00","2026-04-22T11:30:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","54.0"
"202869826","245559410","viosapapp1.sanef.groupe","","00:50:56:90:3e:29","10.41.29.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 c9 cc 4b d1 aa 40-5e d3 90 16 07 fd 9b 1b","No Asset Tag","'+02:00","2026-02-16T11:43:08.000+02:00","cybadmbdd","Cloud Agent","c53e3b0e-dbdb-44c5-837b-aeab50fdfe98","2023-12-06T19:43:12.000+02:00","2026-04-22T09:48:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,Péage","140.0"
"354650363","342479605","vpdsiasaf2.sanef.groupe","","d6:b8:e4:b9:10:87, ce:74:ea:04:3a:03, 00:50:56:90:e0:5d","10.88.0.1,192.168.19.9","fe80::d4b8:e4ff:feb9:1087,fe80::cc74:eaff:fe04:3a03","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 37 7d df 6f 8b 51-fc 8b fb 03 1c 3c 2a 09","No Asset Tag","'+02:00","2026-03-24T11:06:59.000+02:00","cybsupsys","Cloud Agent","8412c1c3-7f0d-4706-8013-12195e7a40d9","2025-08-26T15:04:36.000+02:00","2026-04-22T11:51:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","144.0"
"175412357","229249002","vvbocs4ci2.sanef-rec.fr","","00:50:56:9c:28:55","10.45.6.7","fe80::250:56ff:fe9c:2855","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7d d4 67 db 36 a4-b2 20 38 1b 76 a4 90 b8","No Asset Tag","'+02:00","2026-03-09T11:21:57.000+02:00","cybsupsys","Cloud Agent","e5198541-430d-44e4-bc45-e454d68ee3b3","2023-06-22T10:40:04.000+02:00","2026-04-22T11:00:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow,Cloud Agent,Linux Server","143.0"
"176097843","229734619","vvbooaboo2.sanef-rec.fr","","00:50:56:9c:38:43","10.45.6.77","fe80::250:56ff:fe9c:3843","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7696","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 31 06 3a 3d 3d 43-73 bb 58 b6 5b 60 c1 05","No Asset Tag","'+02:00","2026-03-10T17:14:03.000+02:00","cybsupsys","Cloud Agent","75335249-80f8-47bc-98d0-ea1d1ccf6fe1","2023-06-27T15:28:32.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server,Recette,flux_libre,FreeFlow","140.0"
"175460796","229280307","vvbotcach2.sanef-rec.fr","","ce:99:89:14:9f:e6, 00:50:56:9c:91:57, 52:ea:5f:a9:20:e6, 9e:33:db:81:69:e3, 0a:e7:2e:8c:32:81, 9a:44:a6:b3:90:86, 6e:f1:e1:71:87:fe, ce:f6:b2:09:40:ae, fe:81:27:e9:b3:11","10.45.6.154,10.89.0.1","fe80::cc99:89ff:fe14:9fe6,fe80::250:56ff:fe9c:9157,fe80::50ea:5fff:fea9:20e6,fe80::9c33:dbff:fe81:69e3,fe80::8e7:2eff:fe8c:3281,fe80::9844:a6ff:feb3:9086,fe80::6cf1:e1ff:fe71:87fe,fe80::ccf6:b2ff:fe09:40ae,fe80::fc81:27ff:fee9:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c8 1c 08 b4 fb 22-19 5e 0c bf ea d6 cd 38","No Asset Tag","'+02:00","2026-03-10T13:14:04.000+02:00","cybreconcile","Cloud Agent","659cee55-a9c2-4202-937d-3d0bf3b1a279","2023-06-22T16:51:38.000+02:00","2026-04-22T11:37:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow","140.0"
"312827606","325605227","vpgawgtw1.sanef.groupe","","00:50:56:90:64:a2","192.168.19.67,192.168.19.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0f fb 4d 00 1c 82-1c 5b c8 be 84 eb 2c 4f","No Asset Tag","'+02:00","2026-03-17T17:09:54.000+02:00","root","Cloud Agent","4dc116ec-ca5a-49b6-be94-dcba58afe9db","2025-04-01T16:29:23.000+02:00","2026-04-22T11:04:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","144.0"
"212764598","250647971","viaflperf1.sanef.groupe","","00:50:56:90:31:5e","192.168.22.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 db f0 ae 7a 40 aa-16 6d c0 a1 34 ab a0 52","No Asset Tag","'+02:00","2026-03-19T17:17:57.000+02:00","cybreconcile","Cloud Agent","b4c016af-9f63-4366-ae08-328deead2f01","2024-01-30T18:29:54.000+02:00","2026-04-22T11:53:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server,Production","142.0"
"221414626","254284745","vposapels2.sanef.groupe","","00:50:56:90:f9:15","10.41.20.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63887","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ab 73 a3 7d d0 1e-3f e5 88 b0 bf 5d fd fa","No Asset Tag","'+02:00","2026-02-26T12:41:06.000+02:00","cybadmsys","Cloud Agent","920d01ab-2f0d-419c-90ac-a814f489997e","2024-03-11T18:23:25.000+02:00","2026-04-22T11:28:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0"
"416893750","367956474","vrzbxaprx2.sanef-rec.fr","","00:50:56:9c:de:1b","10.45.15.208","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3654","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 45 da d6 aa e0 cf-89 72 1b 4a ad 0c e0 f7","No Asset Tag","'+02:00","2026-04-16T12:36:02.000+02:00","cybintsys","Cloud Agent","62023821-1f5c-487c-869b-1db00aff7e86","2026-04-17T16:50:53.000+02:00","2026-04-22T09:46:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0"
"383456003","354466610","vpbotakpi1.sanef.groupe","","00:50:56:90:30:ef","10.41.23.30","fe80::250:56ff:fe90:30ef","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 9d 32 f3 bf 13 7f-b6 1e 57 c8 72 bd b3 18","No Asset Tag","'+02:00","2026-04-21T10:16:47.000+02:00","root","Cloud Agent","8884854a-42e2-4da4-bbf2-118f4d9d6f53","2025-12-12T13:08:00.000+02:00","2026-04-22T11:32:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0"
"287954932","311552199","vrosapquo1.sanef-rec.fr","","00:50:56:90:21:62","10.100.16.102","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7696","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 d0 0a 2e 94 88 a6-92 48 b4 ac 8d ce 1a e0","No Asset Tag","'+02:00","2026-02-16T16:21:43.000+02:00","cybintsys","Cloud Agent","4daaa297-2dae-4663-83ef-ff78eb122691","2024-12-20T16:03:16.000+02:00","2026-04-22T11:37:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Péage","142.0"
"175464703","229281780","vvbotarmq2.sanef-rec.fr","","8e:75:d4:ea:8a:13, ce:41:d0:99:97:2d, 00:50:56:9c:38:22, 8e:42:e1:89:23:73, ce:b5:c5:81:2b:f3, e6:02:b2:64:d1:3f","10.45.6.156,10.89.0.1","fe80::8c75:d4ff:feea:8a13,fe80::cc41:d0ff:fe99:972d,fe80::250:56ff:fe9c:3822,fe80::8c42:e1ff:fe89:2373,fe80::ccb5:c5ff:fe81:2bf3,fe80::e402:b2ff:fe64:d13f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 8e 55 99 ed 07-4b d7 16 8e 87 8d 2a f0","No Asset Tag","'+02:00","2026-03-10T11:11:19.000+02:00","cybreconcile","Cloud Agent","b254d0ab-cce8-41d1-a5b2-08d923fb4726","2023-06-22T17:09:38.000+02:00","2026-04-22T11:38:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Recette,Flux Libre","140.0"
"311159768","330493472","vrosapkib1.sanef-rec.fr","","00:50:56:9c:69:75","10.45.9.73","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5a c3 59 a2 79 00-c7 92 48 57 11 fd 3a 9a","No Asset Tag","'+02:00","2026-02-16T11:13:38.000+02:00","cybsecope","Cloud Agent","eb2ff29b-686b-42f6-89ee-6ef7d53596e8","2025-03-26T17:24:27.000+02:00","2026-04-22T11:49:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,OS-LIN-SRV DYN,Recette","58.0"
"211148562","249951676","vpbotaapm1.sanef.groupe","","00:50:56:90:70:f7, a2:19:f5:d7:54:80, 6e:3a:41:f6:71:f9","10.41.23.25,10.89.0.1","fe80::250:56ff:fe90:70f7,fe80::a019:f5ff:fed7:5480,fe80::6c3a:41ff:fef6:71f9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 1c 3a c4 ba eb 22-a7 69 07 ce d9 f8 c1 df","No Asset Tag","'+02:00","2026-04-16T11:59:37.000+02:00","cybreconcile","Cloud Agent","f4cafacf-be16-46f1-95e5-3fc235f24cb3","2024-01-22T16:37:41.000+02:00","2026-04-22T11:17:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Production,log4j","337.0"
"208784479","248752401","vibotasim1.sanef.groupe","","00:50:56:90:1f:84","10.41.23.156","fe80::250:56ff:fe90:1f84","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 96 01 67 53 72 c4-2b dc dc 02 45 eb f4 c1","No Asset Tag","'+02:00","2026-03-18T10:13:13.000+02:00","cybreconcile","Cloud Agent","fb0e72e8-aded-416c-b660-261bdf842dae","2024-01-10T13:43:44.000+02:00","2026-04-22T11:30:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,FreeFlow,flux_libre,Flux Libre","141.0"
"295273598","317083541","vpdepaapp1.sanef.groupe","","00:50:56:90:ec:98","10.41.40.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 3d ef bb 75 ab-4e 20 b2 12 90 56 84 7a","No Asset Tag","'+02:00","2026-01-21T16:30:26.000+02:00","cybreconcile","Cloud Agent","b198f1a2-82fc-49d5-beff-3418a84e57b2","2025-01-28T12:18:30.000+02:00","2026-04-22T10:58:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,Production","140.0"
"234568691","262079565","vrechatre2.sanef-rec.fr","","00:50:56:9c:ff:de","10.45.11.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 32 85 b3 6a 36 a8-f5 e9 8e 02 f7 2b cb 10","No Asset Tag","'+02:00","2026-03-25T13:17:02.000+02:00","cybadmsys","Cloud Agent","6bde38f9-f7ad-4c00-85a8-36beeaab7df9","2024-05-06T12:36:30.000+02:00","2026-04-22T09:42:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,TALEND","217.0"
"332295040","333860643","vpameakfq1.sanef.groupe","","00:50:56:90:62:92","10.100.16.21","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","5681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e1 e9 91 f4 4a 8f-b8 31 a2 d8 e7 01 2a 63","No Asset Tag","'+02:00","2025-10-29T11:46:08.000+02:00","cybreconcile","Cloud Agent","0ba58b85-0cc2-4263-abfb-18692205ac40","2025-06-10T14:22:25.000+02:00","2026-04-22T11:37:50.000+02:00","x86_64","4","SCA,VM,GAV","Linux Server,Cloud Agent,Sextan,Production,OS-LIN-SRV DYN","278.0"
"173084420","227656196","vdbocsman1.sanef-rec.fr","","00:50:56:9c:eb:ee","10.45.6.38","fe80::250:56ff:fe9c:ebee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ce 2d 5c dd 36 8f-71 60 71 45 22 04 76 90","No Asset Tag","'+02:00","2026-03-10T10:22:32.000+02:00","cybadmbdd","Cloud Agent","813a675e-eaf7-44bd-a290-c4894857ae76","2023-06-05T15:56:38.000+02:00","2026-04-22T11:24:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,FreeFlow","334.0"
"175948571","229617188","vvbotbtsd1.sanef-rec.fr","","02:41:67:e4:3b:ed, 2e:fa:be:db:1c:f8, 52:d8:68:2d:9a:48, 8e:c8:a4:02:5d:40, ee:9b:02:11:12:7d, 00:50:56:9c:1f:30, b2:2f:5a:a5:4f:d8, f6:87:00:c4:0a:9f, b6:17:1d:64:31:df, 36:56:d2:92:f6:cf, ba:0d:fe:6c:39:64","10.45.6.139,10.89.0.1","fe80::41:67ff:fee4:3bed,fe80::2cfa:beff:fedb:1cf8,fe80::50d8:68ff:fe2d:9a48,fe80::8cc8:a4ff:fe02:5d40,fe80::ec9b:2ff:fe11:127d,fe80::250:56ff:fe9c:1f30,fe80::b02f:5aff:fea5:4fd8,fe80::f487:ff:fec4:a9f,fe80::b417:1dff:fe64:31df,fe80::3456:d2ff:fe92:f6cf,fe80::b80d:feff:fe6c:3964","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c b8 91 d0 d5 c4 33-17 bd 50 00 6f 9a 7d ad","No Asset Tag","'+02:00","2026-03-12T16:23:25.000+02:00","cybreconcile","Cloud Agent","5cf7bbf8-42a1-4971-a80f-3c5db5c78d12","2023-06-26T16:30:04.000+02:00","2026-04-22T11:27:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette","142.0"
"323205153","329824071","vpgawamft2.sanef.groupe","","00:50:56:90:3d:96","10.42.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e5 4a 4a aa 88 3a-5d bb 57 53 ab 3e 7d b7","No Asset Tag","'+02:00","2026-02-12T15:49:59.000+02:00","cybreconcile","Cloud Agent","afc19412-f025-444a-9f53-4263b507df01","2025-05-09T15:24:02.000+02:00","2026-04-22T10:20:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0"
"366884514","347537076","vrpataels1.sanef.groupe","","00:50:56:82:96:c5","10.43.255.22","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 fa 90 b2 b5 0c 4f-dd 7e e0 1a 8c 11 f2 21","No Asset Tag","'+02:00","2026-03-31T11:25:48.000+02:00","cybastsys","Cloud Agent","f13ef54f-555f-491a-a2f2-4ba0372319f4","2025-10-09T12:49:47.000+02:00","2026-04-22T11:07:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","255.0"
"213848992","251124342","srtrabgas1.sanef.groupe","","50:65:f3:6e:90:04","10.45.1.66","fe80::5265:f3ff:fe6e:9004","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL160 G9 Server","8","3000","Intel(R) Xeon(R) CPU E5-2623 v3 @ 3.00GHz","47830","HP U20 08/29/2024","CZ264901HZ","","'+02:00","2026-01-13T16:00:27.000+02:00","cybsecope","Cloud Agent","197d25c3-7ab3-4332-b0d9-0574a5bb5581","2024-02-05T19:20:11.000+02:00","2026-04-22T11:08:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gaspar,DEX","507.0"
"311171805","330493461","vrgawamft1.sanef-rec.fr","","00:50:56:9c:95:57","10.45.14.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d1 e1 af 6c 3f da-69 f6 24 76 4c 7f 27 47","No Asset Tag","'+02:00","2026-02-11T11:47:00.000+02:00","root","Cloud Agent","52e66d02-c804-4d11-b693-4f48cda50a88","2025-03-26T18:36:28.000+02:00","2026-04-22T11:27:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Plateforme d'échange,Recette,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","59.0"
"383452162","354460837","vibotakpi1.sanef.groupe","","00:50:56:90:9e:23","10.41.23.146","fe80::250:56ff:fe90:9e23","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 f3 7b a7 73 58 8d-8e 29 5e aa 27 9c 75 db","No Asset Tag","'+02:00","2026-03-19T12:33:01.000+02:00","cybreconcile","Cloud Agent","93bf39d1-da0d-4937-ad7a-b1dd2d75a698","2025-12-12T11:34:52.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","138.0"
"130588548","192836202","vmamrstg1","","00:50:56:82:4B:5E, 00:50:56:82:69:20, 00:50:56:82:0C:DF","10.33.16.10,10.32.16.10,10.32.16.17,10.32.16.18,10.30.16.10,10.30.16.17,10.30.16.18","fe80::250:56ff:fe82:4b5e,fe80::250:56ff:fe82:6920,fe80::250:56ff:fe82:cdf","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a5 3e 1a cc c0 8a-9b 8a f5 2d 87 49 4e 3d","No Asset Tag","'+02:00","2025-10-09T11:38:43.000+02:00","cybexpapp","Cloud Agent","7bb33190-4842-4833-89d2-ef36edd44bd7","2022-07-07T12:03:44.000+02:00","2026-04-22T11:15:13.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,SSTG,OS-LIN-SRV DYN,DEX,Obsolete,Sans,Trafic,Recette,Cloud Agent,Linux Server,VRF_INCONNUE","699.0"
"379846586","353006855","spbckamag2.sanef.groupe","","04:bd:97:23:06:20, 04:bd:97:23:06:21","10.42.16.75,10.43.1.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191547","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HGP","Unknown","'+02:00","2025-11-27T20:26:54.000+02:00","cybsecope","Cloud Agent","86f212c8-4bd0-48b2-93ef-be55f3c829bd","2025-11-27T18:17:58.000+02:00","2026-04-22T11:19:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0"
"143622556","201025275","vpemvantp1.sanef.groupe","","00:50:56:82:2a:4c","192.168.100.132","fe80::250:56ff:fe82:2a4c","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 89 b6 e3 0b e8 e6-23 9d 7d 15 4e 3d da 8a","No Asset Tag","'+02:00","2024-09-04T15:19:33.000+02:00","lamhajeb-ext","Cloud Agent","ca5b415c-1d52-4ab0-b23f-9feaa2cb77af","2022-10-11T17:31:05.000+02:00","2026-04-22T11:29:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Obsolete,VRF_INCONNUE,PCI Bunker EMV - VLAN Supervision/Admin,Cloud Agent,Linux Server,BDD-POS DYN","107.0"
"210022570","249438985","siboomcla2.sanef.groupe","","5c:ba:2c:1c:94:60","10.41.22.205","fe80::5811:2d9b:7a24:7d54","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95788","HPE U30 07/20/2023","CZ22410FK7","","'+02:00","2026-03-16T13:13:13.000+02:00","cybsupemo","Cloud Agent","c21d0a6d-555b-4861-9119-c3a0f4dcc6d2","2024-01-17T12:55:00.000+02:00","2026-04-22T11:33:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,flux_libre","337.0"
"398248431","360587807","vpdsibetc1.sanef.groupe","","00:50:56:9c:f8:44","10.44.5.131","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e9 f7 4b 0b 4e a2-06 28 85 8d e6 77 db d2","No Asset Tag","'+02:00","2026-02-11T18:42:39.000+02:00","cybadmbdd","Cloud Agent","7f04098c-1b4e-488c-9826-bbe36367c07b","2026-02-06T12:48:58.000+02:00","2026-04-22T11:50:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production","141.0"
"238271912","269259607","vipeaabst1.sanef.groupe","","00:50:56:90:e8:7d","10.41.29.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 5e 6c 94 44 53 a2-1c 58 69 50 e8 f3 ad 3c","No Asset Tag","'+02:00","2026-03-19T10:22:55.000+02:00","cybintsys","Cloud Agent","d87bd183-869a-42bf-82c0-228dd283014d","2024-05-21T14:30:01.000+02:00","2026-04-22T11:37:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow,DSI,Flux Libre","141.0"
"376415144","351514141","vipeaarcv1.sanef.groupe","","00:50:56:90:be:56","10.41.29.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 2d 62 a0 05 c7 c3-63 b2 3e 5c 98 bd 4d d0","No Asset Tag","'+02:00","2026-03-19T15:05:55.000+02:00","cybreconcile","Cloud Agent","6824db21-9e8a-41ee-98b6-da91fca300c5","2025-11-13T16:39:51.000+02:00","2026-04-22T11:05:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,flux_libre,log4j,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Flux Libre,Production,FreeFlow","334.0"
"139156941","198270159","vmamphtp2.sanef.groupe","","00:50:56:82:75:3B, 00:50:56:82:4E:8C, 00:50:56:82:06:1D","10.41.40.36,10.41.40.39,10.41.40.40,10.41.40.41,10.43.4.36,10.43.40.36,10.43.40.39","fe80::250:56ff:fe82:753b,fe80::250:56ff:fe82:4e8c,fe80::250:56ff:fe82:61d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 87 d0 59 1b 5f 6f-07 1c c6 e7 14 00 7e 0e","No Asset Tag","'+02:00","2025-10-08T15:50:31.000+02:00","cybreconcile","Cloud Agent","950d952c-913d-4f60-89ad-24963c92f040","2022-09-07T14:26:01.000+02:00","2026-04-22T11:19:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,VRF_TRAFIC_DC,Obsolete,Production,Trafic,Amelie","349.0"
"238297816","269274162","lpemvbpemv2.sanef.groupe","","00:17:a4:77:1c:68, 00:17:a4:77:1c:98, 00:17:a4:77:1c:64","169.254.8.81,172.16.0.105,192.168.103.105,192.168.101.105,192.168.101.145","fe80::217:a4ff:fe77:1c68,fe80::217:a4ff:fe77:1c98,fe80::217:a4ff:fe77:1c64","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","PWARU%%LM333IZ","","'+02:00","2026-01-25T23:27:02.000+02:00","root","Cloud Agent","d4a07993-1fa2-45b1-9fa5-a160ba803fc7","2024-05-21T16:48:50.000+02:00","2026-04-22T11:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,Production,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Cloud Agent,Linux Server","682.0"
"294119824","316124809","vpvsaarec2.sanef.groupe","","00:50:56:9c:65:9b","10.42.16.84","fe80::250:56ff:fe9c:659b","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c fe dd 01 df 68 3f-9f 0d 28 bc 7a 70 7d 1f","No Asset Tag","'+02:00","2026-02-05T13:13:32.000+02:00","tbaad","Cloud Agent","51b00c2e-edd7-4d16-a176-83bdeab2a2d8","2025-01-22T11:43:10.000+02:00","2026-04-22T09:35:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0"
"210406652","249580391","lremvaste1","","00:17:a4:77:1c:28, 00:17:a4:77:1c:2c","192.168.108.114,192.168.107.114","fe80::217:a4ff:fe77:1c28,fe80::217:a4ff:fe77:1c2c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","31879","HP I36 07/18/2022","VCX0000705","","'+02:00","2025-12-02T11:47:45.000+02:00","lamhajeb-ext","Cloud Agent","1b52413a-1e4d-46c5-8179-a64404b83b63","2024-01-18T14:17:38.000+02:00","2026-04-22T09:35:44.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,EMV,PCI Bunker EMV - VLAN Stecard V17 Recette","491.0"
"212748468","250644352","vpbooarep2.sanef.groupe","","00:50:56:90:8f:73","10.41.22.146","fe80::250:56ff:fe90:8f73","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 0a 92 da 66 4b 41-1b 07 52 eb 31 0b 9a 09","No Asset Tag","'+02:00","2026-04-07T12:00:35.000+02:00","cybadmroot","Cloud Agent","4d9fbb90-492c-42fc-83e2-cdb4de0813f9","2024-01-30T17:21:46.000+02:00","2026-04-22T11:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server,FreeFlow,ServersInCyberark,Production","140.0"
"359802333","344907561","vrpeahbst1.sanef-rec.fr","","00:50:56:9c:8a:e8","192.168.31.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e4 3c bb 93 a4 3d-cb 11 9e 0b ee 2c 91 f3","No Asset Tag","'+02:00","2026-04-08T11:05:10.000+02:00","root","Cloud Agent","bc9760af-f453-400d-a64a-5ca2536ef0a6","2025-09-15T15:57:45.000+02:00","2026-04-22T10:45:58.000+02:00","x86_64","4","SCA,VM,GAV","flux_libre,TAG-SED,TAG-SRVEXPOSEINTERNET,Recette,FreeFlow,Flux Libre,OS-LIN-SRV DYN,Linux Server,Cloud Agent","132.0"
"378049638","352306110","vpdsiahap4.sanef.groupe","","00:50:56:90:b1:b1","192.168.19.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 a4 1e 78 01 ee 72-08 15 55 ca 9a 49 05 89","No Asset Tag","'+02:00","2025-12-10T15:09:42.000+02:00","cybintsys","Cloud Agent","de87e680-eb6e-4b1e-a78c-e09ce7005235","2025-11-20T13:31:08.000+02:00","2026-04-22T11:29:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0"
"175950695","229618442","vvbocs4ci1.sanef-rec.fr","","00:50:56:9c:37:2d","10.45.6.3","fe80::250:56ff:fe9c:372d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c be 0a b0 f1 5e 5e-ea 6a fe 73 5b 41 85 e4","No Asset Tag","'+02:00","2026-03-11T16:15:40.000+02:00","cybsupsys","Cloud Agent","63aa44d5-fbe8-4b22-b643-4e984c0b6104","2023-06-26T16:42:59.000+02:00","2026-04-22T11:07:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Recette","336.0"
"407940473","364292118","splogbels2","","40:5b:7f:e1:ac:78","10.44.7.43","fe80::425b:7fff:fee1:ac78","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G31","","'+02:00","2026-03-27T16:17:38.000+02:00","cybintsys","Cloud Agent","b523ded9-6eff-429f-8655-ce7b008f4657","2026-03-12T12:08:05.000+02:00","2026-04-22T11:42:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN","152.0"
"195792930","241929201","vpbotreco2.sanef.groupe","","00:50:56:90:d2:5d","10.41.23.19","fe80::250:56ff:fe90:d25d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b8 38 f4 43 ea 75-23 8f 5e ef 9f 47 e0 84","No Asset Tag","'+02:00","2026-04-16T14:13:14.000+02:00","cybreconcile","Cloud Agent","3b9a017c-694d-4156-b17c-42a71c740a9f","2023-10-26T11:37:58.000+02:00","2026-04-22T10:58:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","141.0"
"205606145","246966123","vvbocaprx1.sanef-rec.fr","","00:50:56:9c:fb:60","192.168.22.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 96 b7 47 17 66 e2-40 be cf 40 2a 15 b4 5b","No Asset Tag","'+02:00","2026-03-10T10:14:35.000+02:00","cybsupsys","Cloud Agent","281b8add-6df6-428a-aeac-fb4bdc00d3d4","2023-12-21T20:05:47.000+02:00","2026-04-22T11:38:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server,FreeFlow,flux_libre,Flux Libre","335.0"
"339814656","336780130","vrpatbl2r3.sanef-rec.fr","","00:50:56:9c:e9:e1","10.45.10.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5e 5f 2e fb 54 47-32 c3 18 8a e7 f1 cb 68","No Asset Tag","'+02:00","2026-04-08T12:31:52.000+02:00","cybsecope","Cloud Agent","bd717c73-dcb2-42f1-b414-d1bbf77a60b7","2025-07-07T12:40:40.000+02:00","2026-04-22T11:31:46.000+02:00","x86_64","3","SCA,VM,GAV","Linux Server,Cloud Agent,Recette,BDD-POS DYN,L2R,OS-LIN-SRV DYN","216.0"
"241533000","276509051","vpvsaaahp2.sanef.groupe","","00:50:56:9c:67:25","10.42.16.87","fe80::250:56ff:fe9c:6725","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c c8 69 60 5c c6 26-c6 55 85 cc 68 d9 06 4a","No Asset Tag","'+02:00","2026-02-04T13:20:50.000+02:00","tbaad-ext","Cloud Agent","e2fe25e9-9955-4368-ad32-ff54b16be948","2024-06-04T11:57:09.000+02:00","2026-04-22T11:04:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"360043312","344907767","vrtrabmut1.sanef-rec.fr","","52:54:00:ea:79:1f, 42:19:7e:d4:9b:a4, 52:54:00:39:27:bc","192.168.17.4,192.168.16.24,10.45.15.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","48139","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-08T14:57:32.000+02:00","oracle","Cloud Agent","30c83049-dcfa-4fc5-875c-e07b656fa40e","2025-09-16T15:15:32.000+02:00","2026-04-22T09:32:27.000+02:00","x86_64","2","SCA,VM,GAV","ORACLE,Recette,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0"
"130588099","192835847","vamrsychtp1.sanef.groupe","","00:50:56:82:6F:63","10.45.2.23","fe80::250:56ff:fe82:6f63","Linux / Server","Red Hat Enterprise Linux Server 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 0c f2 5b e6 50 1d-c4 77 7e 11 1e f7 84 ea","No Asset Tag","'+02:00","2025-02-04T10:47:28.000+02:00","cybexpapp","Cloud Agent","cacd808b-cfc7-4ace-9f0f-2d2a6d0896cf","2022-07-07T11:58:05.000+02:00","2026-04-22T10:53:35.000+02:00","x86_64","3","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Patrimoine,Sans,Recette,SIG,VRF_INCONNUE,Obsolete","525.0"
"193606163","240976273","vibocs4as1.sanef.groupe","","00:50:56:90:4b:56","10.41.22.72","fe80::250:56ff:fe90:4b56","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 b3 9d 45 c1 b3 06-4e 3b 9a a5 4c d2 f9 a7","No Asset Tag","'+02:00","2026-03-16T16:11:20.000+02:00","cybsupibm","Cloud Agent","d4d5e555-5327-402f-9c71-f08ab8b17d2f","2023-10-16T12:03:22.000+02:00","2026-04-22T10:41:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ServersInCyberark,Flux Libre,flux_libre,Production,Cloud Agent,Linux Server,FreeFlow","141.0"
"195796370","241931295","vpbotapps2.sanef.groupe","","00:50:56:90:83:1a","10.41.23.15","fe80::250:56ff:fe90:831a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 7a e8 f5 ed a9 da-9f ba 9c e2 b2 ea b3 f4","No Asset Tag","'+02:00","2026-04-16T11:04:07.000+02:00","cybreconcile","Cloud Agent","5966ce31-ac30-4dab-bd4a-9c6f908666f7","2023-10-26T11:59:09.000+02:00","2026-04-22T11:16:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Flux Libre,flux_libre,Production","141.0"
"340063684","336780157","lpamebrac1.sanef.groupe","","ee:50:33:80:00:90, ee:50:33:80:00:8c","10.43.4.138,10.41.41.110,10.41.41.114,10.41.41.118","fe80::ec50:33ff:fe80:90,fe80::ec50:33ff:fe80:8c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63822","HPE I44 06/13/2025","VCGCIOJ00L","/n/Bios Asset Tag :","'+02:00","2025-11-19T15:02:39.000+02:00","cybreconcile","Cloud Agent","4579ea91-d9dc-4a08-96e1-64538e06b070","2025-07-08T10:21:16.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Amelie","335.0"
"195792948","241929532","vpbotreco3.sanef.groupe","","00:50:56:90:fe:07","10.41.23.20","fe80::250:56ff:fe90:fe07","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37934","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 3f 96 41 bb c3 ba-0f 2b 55 5e 03 95 57 72","No Asset Tag","'+02:00","2026-04-16T14:43:36.000+02:00","cybreconcile","Cloud Agent","38a94212-add9-4f23-a636-ec8a78fefca2","2023-10-26T11:39:01.000+02:00","2026-04-22T11:21:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,FreeFlow","141.0"
"195798232","241931296","vpbotapps1.sanef.groupe","","00:50:56:90:20:d6","10.41.23.14","fe80::250:56ff:fe90:20d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48013","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 c3 80 01 f1 a1 19-c7 71 bd 66 db 88 44 03","No Asset Tag","'+02:00","2026-04-16T10:57:27.000+02:00","cybreconcile","Cloud Agent","cd6b5702-76f4-42b4-bd7d-c780ca442252","2023-10-26T11:59:07.000+02:00","2026-04-22T11:30:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,FreeFlow,flux_libre","140.0"
"246263460","286957595","vraptbjup1","","00:50:56:9c:68:1f","10.45.10.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 73 71 b0 27 0c f4-da e4 3a 1a 03 d0 f9 22","No Asset Tag","'+02:00","2026-03-23T12:26:07.000+02:00","cybadmsys","Cloud Agent","d49a03b3-702f-4f64-9629-4074ab9b2665","2024-06-25T09:57:21.000+02:00","2026-04-22T11:35:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BDD,Recette,DSI","65.0"
"191422143","239727391","vibooosea1.sanef.groupe","","00:50:56:90:d0:d2","10.41.22.200","fe80::250:56ff:fe90:d0d2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 60 1e 2d 60 a3 9f-25 e1 a1 e1 07 6a f6 13","No Asset Tag","'+02:00","2026-03-17T16:23:43.000+02:00","cybreconcile","Cloud Agent","4fc0b10a-d5c0-4440-8e54-b5a86c892f55","2023-10-04T17:50:33.000+02:00","2026-04-22T11:31:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,Production","141.0"
"354672880","342490001","vpdsiarad1.sanef.groupe","","00:50:56:94:27:ba","10.44.5.195","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 14 6a 29 aa 1d 18 c4-2e 88 c9 f2 81 5a 1c c0","No Asset Tag","'+02:00","2026-03-24T10:54:33.000+02:00","cybsupsys","Cloud Agent","b96d30e4-ca8d-4182-919d-ff2042485f53","2025-08-26T16:06:56.000+02:00","2026-04-22T11:20:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Radius,Production,Linux Server,Cloud Agent","152.0"
"377717881","352168080","vdpatbsip1.sanef-rec.fr","","00:50:56:9c:0c:0c","10.45.9.130","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 2a 35 aa d2 3c b2-c8 27 37 20 22 c4 2d 34","No Asset Tag","'+02:00","2026-04-07T10:38:58.000+02:00","sipat","Cloud Agent","213e9236-7d67-4ff2-9606-768952003ad5","2025-11-19T12:07:59.000+02:00","2026-04-22T11:55:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","65.0"
"208776231","248746835","vibotarmq1.sanef.groupe","","00:50:56:90:b2:64","10.41.23.141","fe80::250:56ff:fe90:b264","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 39 6b 48 96 4c-d8 bc aa 1f cb 1a f6 db","No Asset Tag","'+02:00","2026-03-17T11:49:24.000+02:00","cybreconcile","Cloud Agent","0c4f3d39-21bb-4068-b9ab-68be3541b623","2024-01-10T12:58:43.000+02:00","2026-04-22T10:48:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0"
"196663142","242432307","vpboobsql1.sanef.groupe","","00:50:56:90:0a:8a","10.41.22.133,10.41.22.145","fe80::250:56ff:fe90:a8a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 53 ab fa da 5a 83-0a 5a 28 98 b3 be b8 b4","No Asset Tag","'+02:00","2026-04-07T12:26:31.000+02:00","cybreconcile","Cloud Agent","7ba6ea7c-6f04-46d4-aa2e-b54aa3838cd1","2023-10-31T18:19:55.000+02:00","2026-04-22T11:34:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Production","334.0"
"356292342","343241127","vrdsiadep1.sanef-rec.fr","","00:50:56:9c:26:44","10.45.7.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 36 54 65 18 a0 e6-ad 53 24 7d 33 6f d7 ba","No Asset Tag","'+02:00","2026-04-14T11:11:13.000+02:00","cybroasys","Cloud Agent","356f6da7-2195-4d61-bc91-762e197d3a0e","2025-09-02T11:03:45.000+02:00","2026-04-22T11:37:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","331.0"
"335928595","336780144","vrrpsangx1.sanef-rec.fr","","00:50:56:9c:5b:78","10.45.14.228","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9b a2 72 85 7c 69-27 91 bd 43 a6 92 ba 7e","No Asset Tag","'+02:00","2026-02-23T10:50:21.000+02:00","cybintsys","Cloud Agent","f23ce48a-cce3-452a-961c-1b6c0f8158e7","2025-06-24T10:58:05.000+02:00","2026-04-22T10:59:36.000+02:00","x86_64","2","SCA,VM,GAV","Péage,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server","140.0"
"130590699","192838403","vrameaoct1.sanef.groupe","","00:50:56:82:06:1f","10.45.2.80","fe80::250:56ff:fe82:61f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 91 24 d3 33 d0 86-74 d4 63 bd 71 07 c5 8c","No Asset Tag","'+02:00","2026-01-14T11:19:29.000+02:00","delcour","Cloud Agent","69ca43f0-8e14-4a5d-9390-b03fcbb5cf70","2022-07-07T12:14:57.000+02:00","2026-04-22T11:37:37.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,OS-LIN-SRV DYN,OCTAN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,Recette","510.0"
"216910714","252328115","vppeaabst3.sanef.groupe","","00:50:56:90:e3:b2","10.41.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 28 89 8d ba 81 f2-cf bf d5 9e ee c5 98 8c","No Asset Tag","'+02:00","2026-04-01T14:32:09.000+02:00","root","Cloud Agent","97b2d5d3-9e23-444a-b621-4dde2406819f","2024-02-19T14:51:50.000+02:00","2026-04-22T11:23:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,MID-NGINX DYN","327.0"
"200710325","244490967","vppeahbst1.sanef.groupe","","00:50:56:90:5f:20","192.168.31.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 24 00 49 92 a6 38-67 0d 23 53 6e bd 74 64","No Asset Tag","'+02:00","2026-04-02T06:52:57.000+02:00","root","Cloud Agent","a87f553d-d953-4403-97c1-3f7efa4e73bb","2023-11-24T12:50:45.000+02:00","2026-04-22T09:23:54.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,flux_libre","132.0"
"292523826","315076953","vpsimaexp2.sanef.groupe","","00:50:56:90:87:1e, 52:54:00:94:2c:6b","10.30.10.130,192.168.122.1","fe80::15e:a51:8c8b:ddfd","Linux / Server","The CentOS Project CentOS 8.1 (1911)","8.1","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3940","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e9 13 5e 4f b0 a9-0e e5 c3 62 4a f8 00 fc","No Asset Tag","'+02:00","2025-11-27T14:02:58.000+02:00","cybexpapp","Cloud Agent","d1988b13-f451-461f-9eb0-596894d852d3","2025-01-15T17:40:50.000+02:00","2026-04-22T11:17:10.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","238.0"
"195405316","241775894","vpbotangx1.sanef.groupe","","00:50:56:90:3d:0e","10.41.23.5","fe80::250:56ff:fe90:3d0e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 2e e4 cb 20 8b 22-8e 5b 7a e8 1c ff 15 a2","No Asset Tag","'+02:00","2026-04-16T10:09:04.000+02:00","cybreconcile","Cloud Agent","9a3c5563-a956-45ac-a79a-887c2907085d","2023-10-25T00:17:46.000+02:00","2026-04-22T11:34:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,flux_libre,FreeFlow","140.0"
"308848238","323875091","vrdsibetc1.sanef-rec.fr","","00:50:56:9c:97:30","10.45.1.176","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc dc 81 c4 8f 8f-fe bb cb a3 b5 35 b3 1c","No Asset Tag","'+02:00","2026-01-06T13:16:38.000+02:00","cybadmbdd","Cloud Agent","f18ad314-5889-40df-84bc-da4e14f2e1dd","2025-03-17T18:36:34.000+02:00","2026-04-22T10:23:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Recette","141.0"
"130588872","192836204","vmamrstg2","","00:50:56:82:2B:DE, 00:50:56:82:7A:6C, 00:50:56:82:53:09","10.32.16.11,10.30.16.11,10.33.16.11","fe80::250:56ff:fe82:2bde,fe80::250:56ff:fe82:7a6c,fe80::250:56ff:fe82:5309","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f7 1e 5b 10 bc d9-1c a0 a7 e3 c8 b3 d1 ca","No Asset Tag","'+02:00","2025-10-09T11:39:29.000+02:00","cybexpapp","Cloud Agent","91d95ee7-0c3c-4d21-b9d3-ac7535dfc197","2022-07-07T12:04:10.000+02:00","2026-04-22T11:02:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,Sans,Trafic,Obsolete,Cloud Agent,Linux Server,SSTG,log4j,DEX,VRF_INCONNUE,OS-LIN-SRV DYN","699.0"
"334435348","336780124","vrdsiasaf2.sanef-rec.fr","","00:50:56:9c:30:bd, e6:86:b8:72:47:09, 22:74:c7:88:61:f8","192.168.19.25,10.88.0.1","fe80::e486:b8ff:fe72:4709,fe80::2074:c7ff:fe88:61f8","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cf 9d 42 d5 c9 83-0d a2 ce 1c ad 0f a7 bf","No Asset Tag","'+02:00","2026-04-20T17:36:47.000+02:00","cybadmroot","Cloud Agent","1f12e31f-8021-4ebc-9f9c-64539c39a30d","2025-06-18T14:36:16.000+02:00","2026-04-22T11:16:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Radius,Recette,OS-LIN-SRV DYN","66.0"
"314384921","326407133","vrpwdamft1.sanef-rec.fr","","00:50:56:9c:a6:f8","10.45.14.99","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c eb 57 47 6b 95 2e-35 89 f1 f3 93 72 36 7f","No Asset Tag","'+02:00","2026-03-03T15:14:49.000+02:00","cybintsys","Cloud Agent","da618b04-5c5b-41b7-af12-4070a153957f","2025-04-07T15:27:16.000+02:00","2026-04-22T11:15:45.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette","141.0"
"323214900","329825072","vpgawagtw2.sanef.groupe","","00:50:56:90:af:75","192.168.19.69","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 a2 a7 3f 9c c9 45-93 6b dc 19 a0 61 18 92","No Asset Tag","'+02:00","2026-02-12T15:49:52.000+02:00","cybreconcile","Cloud Agent","eec93e93-8c18-4f5d-97cd-042afbb897d4","2025-05-09T15:39:10.000+02:00","2026-04-22T11:17:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN","142.0"
"195878803","241974731","vpbotapps3.sanef.groupe","","00:50:56:90:76:49","10.41.23.16","fe80::250:56ff:fe90:7649","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 20 59 d5 ce 99 14-bc 60 18 a2 3f 67 4d d4","No Asset Tag","'+02:00","2026-04-16T11:25:45.000+02:00","cybreconcile","Cloud Agent","9aba982e-6ce9-477c-95e1-4033af8e070f","2023-10-26T22:36:47.000+02:00","2026-04-22T10:49:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Production,FreeFlow","337.0"
"131405384","193423787","vmzeus.sanef.groupe","","00:50:56:AC:00:D4","192.168.230.23","fe80::250:56ff:feac:d4","Linux / Server","The CentOS Project CentOS 6.3","6.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c bf eb 40 21 87 89-83 89 7e f9 55 05 97 8d","No Asset Tag","'+02:00","2023-01-12T08:58:29.000+02:00","cybreconcile","Cloud Agent","cf37f0d2-c026-4734-905d-405ee885e85c","2022-07-13T10:28:24.000+02:00","2026-04-22T11:25:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Cloud Agent,Linux Server,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT,DMZ,Trafic,Sans,Production,DEX,ServersInCyberark,log4j,Obsolete","704.0"
"398238102","360591179","vpdsibetc3.sanef.groupe","","00:50:56:9c:5c:2d","10.100.16.23","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4f f3 e2 f9 ae f4-7c 6e c7 6a 08 df 0f fc","No Asset Tag","'+02:00","2026-02-11T18:52:14.000+02:00","cybadmbdd","Cloud Agent","abe171ad-3577-40ab-94e5-0b1c840ae86f","2026-02-06T13:31:16.000+02:00","2026-04-22T11:21:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0"
"213853706","251126285","spasuagsm2","","5c:ed:8c:3f:33:fc, 5c:ed:8c:3f:33:fd","10.41.40.207,10.43.4.207","fe80::5eed:8cff:fe3f:33fc,fe80::5eed:8cff:fe3f:33fd","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31672","HPE U32 07/14/2022","CZJ81900F1","","'+02:00","2025-06-16T15:47:42.000+02:00","cybastapp","Cloud Agent","8800916c-6443-4be9-8689-6b6841ddca21","2024-02-05T19:50:23.000+02:00","2026-04-22T11:03:48.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,Cloud Agent,Linux Server,DSI,Obsolete,ASUR","524.0"
"395567531","359520752","vrsigaapp2.sanef-rec.fr","","00:50:56:9c:bc:3e","10.45.2.32","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 8f 33 b2 56 99-1b 87 72 b5 4a ca 23 3a","No Asset Tag","'+02:00","2026-02-05T16:26:02.000+02:00","cybsupapp","Cloud Agent","7803e67a-7128-4ff4-beab-7e22ae0aeed1","2026-01-28T11:52:38.000+02:00","2026-04-22T11:24:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","SIG,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","214.0"
"411855378","365824048","vpgraangx1.sanef.groupe","","00:50:56:90:8b:59","10.42.0.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 44 42 cd fa c0 bd-a4 c6 96 d6 0c 4a 13 af","No Asset Tag","'+02:00","2026-04-07T11:36:53.000+02:00","cybreconcile","Cloud Agent","a9b653c5-ab52-447c-95ce-7d1bf7895047","2026-03-27T12:14:02.000+02:00","2026-04-22T11:10:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN","65.0"
"349735151","340111943","vrechbetl1.sanef-rec.fr","","00:50:56:9c:90:9a","10.45.11.205","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c bf da b2 9d 19 a5-a9 78 ff 0a 0c 62 87 03","No Asset Tag","'+02:00","2026-03-03T15:14:41.000+02:00","cybadmbdd","Cloud Agent","b09b590c-0132-4260-96f1-1ebd72a613ef","2025-08-07T10:26:35.000+02:00","2026-04-22T10:29:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,MID-NGINX DYN,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","341.0"
"379762503","352976791","spbckamag4.sanef.groupe","","04:bd:97:22:cb:7c, 04:bd:97:22:cb:7d","10.42.16.76,10.43.1.37","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP260706B5","Unknown","'+02:00","2025-12-29T10:04:17.000+02:00","root","Cloud Agent","cb4430b2-9f67-42d2-95fa-e8725944b59e","2025-11-27T12:50:22.000+02:00","2026-04-22T11:26:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0"
"326661934","331288841","vpvsampci1","","00:50:56:86:a6:2f","192.168.109.14","fe80::250:56ff:fe86:a62f","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 06 15 bb e6 f2 ce 4f-d9 ca da c3 6d 16 08 1e","No Asset Tag","'-04:00","2026-02-02T11:43:11.000+02:00","tbaad","Cloud Agent","6a2f41d1-c22e-4da7-bb28-e4f6c4561178","2025-05-22T17:19:59.000+02:00","2026-04-22T11:23:50.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server","52.0"
"216433861","252120323","vipeabbst3.sanef.groupe","","00:50:56:90:54:5a","10.41.29.57","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 49 8a d6 d3 ea cd-8d 24 21 de 81 e6 be a2","No Asset Tag","'+02:00","2026-03-19T11:29:37.000+02:00","cybsecope","Cloud Agent","5fc11800-9ca1-4f11-af69-552f915f6a7c","2024-02-16T15:41:51.000+02:00","2026-04-22T11:10:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre,ServersInCyberark,FreeFlow","141.0"
"178991227","231837430","vpsasawrk3.sanef.groupe","","00:50:56:9c:08:ff","10.41.32.12","fe80::250:56ff:fe9c:8ff","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 05 9f ea 75 e2 6c-6f 45 41 2c 6a bc 29 63","No Asset Tag","'+02:00","2026-03-25T16:06:58.000+02:00","cybreconcile","Cloud Agent","c455e000-b143-4198-bc50-41b8f3799add","2023-07-18T15:56:36.000+02:00","2026-04-22T11:17:48.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,DSI,SAS","86.0"
"232513887","259823391","lrpeabsip1.sanef-rec.fr","","3e:33:fb:a0:00:b8","10.45.1.35","fe80::3c33:fbff:fea0:b8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Q","/n/Bios Asset Tag :","'+02:00","2026-02-23T10:43:04.000+02:00","cybintsys","Cloud Agent","16c30fdc-aad2-4abe-b866-621ec7a92981","2024-04-26T11:53:58.000+02:00","2026-04-22T11:20:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage","336.0"
"179784561","232376102","vrrauaast2.sanef-rec.fr","","00:50:56:9c:03:d4, 00:50:56:9c:a4:69","10.45.5.34,10.45.9.228","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d6 e4 19 48 87 58-5b 91 7b f4 22 fb c8 99","No Asset Tag","'+02:00","2026-04-21T14:58:28.000+02:00","cybadmsys","Cloud Agent","bf537a6e-e375-4a41-8cb1-b512a6fd1cbc","2023-07-24T19:12:46.000+02:00","2026-04-22T10:56:41.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,ASUR","71.0"
"176096529","229734620","vvboobsql2.sanef-rec.fr","","00:50:56:9c:3a:17","10.45.6.74","fe80::250:56ff:fe9c:3a17","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0f db ff 24 76 e2-92 43 4b 58 88 1e af ff","No Asset Tag","'+02:00","2026-03-09T16:09:08.000+02:00","cybsupsys","Cloud Agent","220147c2-7bda-4a8b-83c1-437f7ba4e560","2023-06-27T15:28:32.000+02:00","2026-04-22T11:20:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,flux_libre,FreeFlow,Flux Libre","141.0"
"249813575","288925764","lrdsibrac1.sanef-rec.fr","","3e:33:fb:a0:00:c8, 3e:33:fb:a0:00:c4","10.45.5.19,10.45.7.9","fe80::3c33:fbff:fea0:c8,fe80::3c33:fbff:fea0:c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200U","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:50.000+02:00","cybintsys","Cloud Agent","fe98673a-1142-4e55-a5ce-b95cc2fcc706","2024-07-10T15:12:02.000+02:00","2026-04-22T11:23:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ORACLE,Recette,Cloud Agent,Linux Server","146.0"
"294564327","316603854","vpdepbels1.sanef.groupe","","00:50:56:90:ee:47","10.41.40.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 bc d0 a9 7c f6 e0-74 e6 9e df e4 3a 9a 4b","No Asset Tag","'+02:00","2026-01-21T16:28:19.000+02:00","cybreconcile","Cloud Agent","4685b369-44e5-4653-ba6f-c714e07e16b9","2025-01-24T12:20:16.000+02:00","2026-04-22T11:20:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Elasticsearch,Production,BDD-ELA DYN,Linux Server,Cloud Agent","141.0"
"354689834","342495239","vpechaetl3.sanef.groupe","","00:50:56:90:40:ee","10.42.16.143","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 0e 8b d3 7b 36 51-5f df bd 6a 12 84 de 48","No Asset Tag","'+02:00","2026-02-12T16:12:13.000+02:00","cybsecope","Cloud Agent","9cabca3d-8eb4-4b12-a929-f5ab6bff06e2","2025-08-26T17:09:56.000+02:00","2026-04-22T11:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","145.0"
"318433984","328044306","vrameakfk3.sanef-rec.fr","","00:50:56:9c:dc:24","10.45.2.42","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fe 9f 88 82 15 48-40 9d 56 1f 19 b1 e2 67","No Asset Tag","'+02:00","2026-04-20T09:48:02.000+02:00","cybsupapp","Cloud Agent","fce6b33d-8765-4afe-b545-f94b0f73361c","2025-04-22T14:58:17.000+02:00","2026-04-22T10:53:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","48.0"
"339876286","336780153","vppwdahap1.sanef.groupe","","00:50:56:94:ff:24","10.44.1.196","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3665","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 ec 9d 08 bd a5 59-6f 2d 6a 02 87 c0 89 b6","No Asset Tag","'+02:00","2026-01-07T11:25:09.000+02:00","cybreconcile","Cloud Agent","bb622005-9a99-443e-b3ef-5401b8c6f17e","2025-07-07T17:41:45.000+02:00","2026-04-22T11:29:16.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,Production,OS-LIN-SRV DYN,BDD","331.0"
"159570303","212142030","vpintanfs1.sanef.groupe","","00:50:56:82:bb:7d, 02:42:ff:d0:be:e0","192.168.20.38,172.17.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 72 2e ee aa d4 a2-a3 a6 a5 13 14 d9 e6 ae","No Asset Tag","'+02:00","2026-02-24T12:10:54.000+02:00","cybexpapp","Cloud Agent","87fc443a-99ff-498f-96d5-6fdaecc421e7","2023-02-16T15:12:34.000+02:00","2026-04-22T11:20:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Gestion institutionnel","141.0"
"347941250","339425714","vrlogbels2.sanef-rec.fr","","00:50:56:9c:67:bc","10.45.15.165","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c e0 69 ae 3d a8 19-1e 14 8b 09 04 6d 94 24","No Asset Tag","'+02:00","2026-01-21T17:53:23.000+02:00","cybintsys","Cloud Agent","bbe215d2-df89-4f91-9851-de6fa6dada2c","2025-07-31T17:25:49.000+02:00","2026-04-22T11:28:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0"
"204123362","246220794","vpbotbtsd1.sanef.groupe","","00:50:56:90:26:9b","10.41.23.27","fe80::250:56ff:fe90:269b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e1 e2 cb 27 f7 af-5b 9a d7 aa 01 13 03 56","No Asset Tag","'+02:00","2026-04-16T09:56:24.000+02:00","cybreconcile","Cloud Agent","a5ac4389-1c0d-447e-98fd-8d8e7813c9c9","2023-12-13T19:24:32.000+02:00","2026-04-22T11:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,FreeFlow","337.0"
"255418106","294877252","lramebrac3.sanef-rec.fr","","ee:50:33:80:00:82, ee:50:33:80:00:7e","10.45.5.8,169.254.11.217,10.45.2.112,10.45.2.116,10.45.2.120","fe80::ec50:33ff:fe80:82,fe80::ec50:33ff:fe80:7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00H","/n/Bios Asset Tag :","'+02:00","2026-04-20T12:16:41.000+02:00","grid","Cloud Agent","72e14ef1-7236-4778-866d-6419c0880148","2024-08-02T16:53:13.000+02:00","2026-04-22T11:29:43.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Amelie,Sextan,Cloud Agent,Linux Server,Recette","503.0"
"209598658","249215489","vpbotarmq3.sanef.groupe","","00:50:56:90:c1:c7","10.41.23.24","fe80::250:56ff:fe90:c1c7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ec 0a f2 ca 61 aa-fc 52 9a d3 14 48 f6 b8","No Asset Tag","'+02:00","2026-04-21T14:34:39.000+02:00","cybreconcile","Cloud Agent","baa70ac2-1a90-4737-ba4f-34229f425cc7","2024-01-15T13:34:51.000+02:00","2026-04-22T08:58:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,flux_libre,Production,FreeFlow","141.0"
"228734286","257688280","vvaflblog1.sanef-rec.fr","","00:50:56:9c:2b:2c","10.45.0.205","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c ba df 72 90 8c 32-ea a3 cf ee 99 52 00 1b","No Asset Tag","'+02:00","2026-03-11T15:11:28.000+02:00","cybadmsys","Cloud Agent","57b74fed-61c9-4fe5-81e5-eb3917cf2205","2024-04-09T17:25:46.000+02:00","2026-04-22T11:09:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server,Recette","144.0"
"139157827","198270294","vmampmet1","","00:50:56:82:1C:70, 00:50:56:82:23:B7, 00:50:56:82:62:FE","10.43.40.77,10.43.4.77,10.41.40.77","fe80::250:56ff:fe82:1c70,fe80::250:56ff:fe82:23b7,fe80::250:56ff:fe82:62fe","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 32 c6 92 58 66-ac b8 8f fe 7e 41 74 68","No Asset Tag","'+02:00","2024-02-13T13:59:47.000+02:00","cybreconcile","Cloud Agent","5f4e0bb0-e430-423d-b645-a68c08edf4b4","2022-09-07T14:26:51.000+02:00","2026-04-22T11:17:03.000+02:00","x86_64","5","SCA,VM,PM,GAV","Obsolete,log4j,OS-LIN-SRV DYN,DEX,Production,Trafic,MIVISU,Cloud Agent,Linux Server,VRF_TRAFIC_DC","876.0"
"173083621","227654993","vdbocharg1.sanef-rec.fr","","00:50:56:9c:9a:ee","10.45.6.36","fe80::250:56ff:fe9c:9aee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7f ec 9f 0d f7 d5-c8 4d f3 a8 27 28 73 a2","No Asset Tag","'+02:00","2026-03-11T10:03:06.000+02:00","cybsecope","Cloud Agent","332ccdec-af18-42c5-b4f1-a1fb9b9af8f2","2023-06-05T15:43:25.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Flux Libre,FreeFlow,flux_libre,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN","338.0"
"313413111","325877000","vrameaquo1.sanef-rec.fr","","00:50:56:90:79:9d","10.100.16.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 0a 4f fb 4e 75 c1-f0 d6 a2 6d 87 7d d7 98","No Asset Tag","'+02:00","2026-04-20T10:01:24.000+02:00","cybsecope","Cloud Agent","4972f0f9-3792-46dd-98ff-9a562b72cf27","2025-04-03T11:30:25.000+02:00","2026-04-22T09:28:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","14.0"
"130583019","192832806","vtexpbdech1.sanef.groupe","","00:50:56:82:32:78","10.45.14.163","fe80::250:56ff:fe82:3278","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f2 5c 11 c8 8e 2e-99 6a 47 bd 0c 40 bf e4","No Asset Tag","'+02:00","2026-03-03T15:15:34.000+02:00","delcour","Cloud Agent","8c9d3abb-5581-4975-bfd8-d8dd1837b75a","2022-07-07T11:28:24.000+02:00","2026-04-22T11:21:37.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,BDD-POS DYN,DECHETS,TAG-SRVEXPOSEINDIRECT,Obsolete,Patrimoine,Recette,VRF_INCONNUE","108.0"
"202866425","245557998","vipeaabst3.sanef.groupe","","00:50:56:90:12:e8","10.41.29.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e0 d3 a8 10 4d 30-d9 48 e3 c1 ce dd 54 4b","No Asset Tag","'+02:00","2026-03-19T12:12:01.000+02:00","cybreconcile","Cloud Agent","c0e868f2-650f-4170-8c54-2f5d9d4b0555","2023-12-06T19:16:31.000+02:00","2026-04-22T11:09:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DSI,BOOST,Cloud Agent,Linux Server","152.0"
"236549943","265276980","vpechatre2.sanef.groupe","","00:50:56:90:2c:2e","10.42.16.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 48 20 ea b6 3a 83-1e dd 57 83 4f 65 64 33","No Asset Tag","'+02:00","2025-11-18T15:28:24.000+02:00","cybreconcile","Cloud Agent","795a8b92-3919-4704-9255-37eaf5049f65","2024-05-14T14:27:38.000+02:00","2026-04-22T11:23:24.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,TALEND","208.0"
"325248248","331288891","vposapkib1.sanef.groupe","","00:50:56:90:d2:21","10.41.20.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 65 6a 7f f9 9d e9-49 e9 27 e1 07 1e 65 fe","No Asset Tag","'+02:00","2026-02-25T17:17:08.000+02:00","cybsupsys","Cloud Agent","b8c5e342-d8c3-4e4b-9a54-a47044b97c84","2025-05-16T14:45:24.000+02:00","2026-04-22T11:19:49.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production,Péage","144.0"
"187703359","237569912","lremvbremv2.sanef.groupe","","00:17:a4:77:1c:38, 00:17:a4:77:1c:3c","192.168.108.116,192.168.108.136,192.168.108.138,169.254.1.199,172.16.0.116","fe80::217:a4ff:fe77:1c38,fe80::217:a4ff:fe77:1c3c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000707","","'+02:00","2024-05-15T12:09:38.000+02:00","root","Cloud Agent","8066c65e-2e21-482d-afab-6cf60d6f3b18","2023-09-13T17:37:59.000+02:00","2026-04-22T11:07:34.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,DEX","494.0"
"130583718","192833336","vdameasxt1","","00:50:56:82:7c:10, 66:f9:37:c3:7e:94, fe:90:fc:73:f5:6b, ee:ee:ee:ee:ee:ee","10.45.2.56,10.233.102.128,169.254.25.10","fe80::250:56ff:fe82:7c10,fe80::64f9:37ff:fec3:7e94,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","3","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 53 e6 8b 2f b6 06-8f 26 29 fa 57 33 f6 e4","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybreconcile","Cloud Agent","084596db-0cec-4dbf-82cb-d7db228164f0","2022-07-07T11:35:58.000+02:00","2026-04-22T11:00:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,BDD-POS DYN,VRF_INCONNUE","245.0"
"255419684","294877149","lramebrac4.sanef-rec.fr","","3e:33:fb:a0:00:da, 3e:33:fb:a0:00:d6","10.45.5.9,169.254.28.85,10.45.2.113,10.45.2.117","fe80::3c33:fbff:fea0:da,fe80::3c33:fbff:fea0:d6","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW52010","/n/Bios Asset Tag :","'+02:00","2026-04-20T14:20:51.000+02:00","reboot","Cloud Agent","4e64c4bc-08ea-4237-bd14-c2fa87d29bb3","2024-08-02T16:53:15.000+02:00","2026-04-22T11:23:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Sextan,Recette,Amelie,OS-LIN-SRV DYN","503.0"
"295952448","317393322","vpvsaasia2","","00:50:56:94:73:30","10.44.2.201","fe80::250:56ff:fe94:7330","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 ab ae 1f bb 23 47-54 83 36 3a 8f 25 bf 3a","No Asset Tag","'-04:00","2026-02-02T12:37:49.000+02:00","tbaad","Cloud Agent","cfc98c51-d86e-4590-b98c-102ab201162a","2025-01-29T12:18:42.000+02:00","2026-04-22T11:13:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0"
"130587954","192835990","vmamrmet1","","00:50:56:82:2C:C1, 00:50:56:82:59:C6, 00:50:56:82:65:99","10.45.2.150,10.45.2.152,10.45.3.150,10.45.3.152,10.45.4.150","fe80::250:56ff:fe82:2cc1,fe80::250:56ff:fe82:59c6,fe80::250:56ff:fe82:6599","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 5b 39 52 6e fc 3f-66 9d f0 ed db db 06 a9","No Asset Tag","'+02:00","2025-10-09T11:39:04.000+02:00","cybadmsys","Cloud Agent","0c5baa2e-99a4-4a1d-9d82-87138a30c4f5","2022-07-07T12:01:27.000+02:00","2026-04-22T08:30:33.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Trafic,Recette,Sans,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,DEX,VRF_INCONNUE,MIVISU","878.0"
"409462641","364910388","vplogbels1","","00:50:56:94:27:14","10.44.7.39","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 72 af 1d 51 93 ac-40 c3 18 44 d2 07 46 77","No Asset Tag","'+02:00","2026-04-07T11:55:21.000+02:00","cybsecope","Cloud Agent","0ac27646-c8f6-4b55-bb66-f82ddbab5b1a","2026-03-18T12:16:49.000+02:00","2026-04-22T10:57:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0"
"238565707","269520472","vibocmedi1","","00:50:56:90:35:fb","10.41.22.71","fe80::250:56ff:fe90:35fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 33 f6 a2 fc e7 53-c6 0c e2 93 21 20 1c f1","No Asset Tag","'+02:00","2026-03-16T16:10:52.000+02:00","cybsupibm","Cloud Agent","c7705ff9-17c4-4cb4-9646-600201e97957","2024-05-22T16:40:38.000+02:00","2026-04-22T08:22:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,OS-LIN-SRV DYN,flux_libre,FreeFlow,Flux Libre","336.0"
"131273902","193319976","lpaiigrid1.sanef.groupe","","00:17:a4:77:0c:dc","10.30.12.34","fe80::b4cb:388d:c849:b1e3","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G8 Server","16","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","96643","HP I31 05/24/2019","CZJ41200VM","","'+02:00","2025-10-21T09:38:07.000+02:00","cybadmbdd","Cloud Agent","002e7288-53c9-4f0f-92d6-9ddb4379e29d","2022-07-12T15:36:19.000+02:00","2026-04-22T08:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,DSI,VRF_INCONNUE,Obsolete,ORACLE,Bases de Données","346.0"
"198942271","243682415","lpinfbcos1.sanef.groupe","","ee:50:33:80:00:74, ee:50:33:80:00:75","10.41.40.179","fe80::ec50:33ff:fe80:74,fe80::ec50:33ff:fe80:75","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00F","/n/Bios Asset Tag :","'+02:00","2026-01-27T11:28:45.000+02:00","cybadmbdd","Cloud Agent","665e0f05-efd7-4f34-b9cf-95a9bb35b5fd","2023-11-14T13:01:08.000+02:00","2026-04-22T10:53:34.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,DSI,COSWIN","500.0"
"208831505","248780233","vibotbtsd1.sanef.groupe","","00:50:56:90:8d:fc","10.41.23.145","fe80::250:56ff:fe90:8dfc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f9 75 7a 17 d8 85-7a 6d 1d 7a 09 a1 fa 86","No Asset Tag","'+02:00","2026-03-18T12:28:10.000+02:00","cybreconcile","Cloud Agent","64fbec89-2595-45d9-80d3-6fc198e9acaf","2024-01-10T18:16:50.000+02:00","2026-04-22T11:13:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production","141.0"
"349737402","340112646","vrechaetl2.sanef-rec.fr","","00:50:56:9c:79:1e","10.45.11.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6c 3e 7a e8 f8 7c-ce 99 bf e3 76 96 4a df","No Asset Tag","'+02:00","2026-03-03T15:14:47.000+02:00","root","Cloud Agent","4b793303-2b37-48e1-bd68-f3189804f66c","2025-08-07T10:37:01.000+02:00","2026-04-22T08:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","143.0"
"193617668","240981755","vibocs4as2.sanef.groupe","","00:50:56:90:7c:d5","10.41.22.73","fe80::250:56ff:fe90:7cd5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 ec 2b 7b 8c 2c-52 8a af 2e 25 d3 19 5f","No Asset Tag","'+02:00","2026-03-16T16:12:26.000+02:00","cybsupibm","Cloud Agent","960ccdc0-4836-4d1d-abce-d382d6537655","2023-10-16T12:49:07.000+02:00","2026-04-22T11:05:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,Cloud Agent,Linux Server,ServersInCyberark,OS-LIN-SRV DYN,Flux Libre","141.0"
"213853630","251124643","lampasu2.sanef.groupe","","00:17:A4:77:10:74, 00:17:A4:77:10:70","10.43.4.194,169.254.70.12,10.41.40.191,10.41.40.193","fe80::217:a4ff:fe77:1074,fe80::217:a4ff:fe77:1070","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","4","2500","Intel(R) Xeon(R) CPU E5-2609 v2 @ 2.50GHz","32069","HP I31 05/24/2019","CZJ41604RZ","","'+02:00","2025-10-08T15:07:14.000+02:00","cybastapp","Cloud Agent","b8ec5715-df07-4b89-999b-b6411d5ea362","2024-02-05T19:25:54.000+02:00","2026-04-22T08:09:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,DSI,ASUR,OS-LIN-SRV DYN,Cloud Agent,Linux Server","527.0"
"204348432","246324123","vrdsiaans1.sanef-rec.fr","","00:50:56:9c:78:6e","10.45.0.165","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c d9 de f6 e7 9d 09-3b b0 81 ad 08 80 bc 9f","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","cybadmsys","Cloud Agent","6be0af5c-8046-463c-a904-d3cb1b4994bc","2023-12-14T17:50:58.000+02:00","2026-04-22T08:09:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","Ansible,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,Cloud Agent,Linux Server","142.0"
"411157863","365555384","vplogalst1","","00:50:56:94:79:08","10.44.7.51","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 8d 8c fb b9 c5 c1-0b ab 4b 23 40 9a 71 ae","No Asset Tag","'+02:00","2026-04-21T14:14:45.000+02:00","cybintsys","Cloud Agent","3c3f4ea8-414c-4237-a2e0-10d2a40c7bcd","2026-03-24T19:08:09.000+02:00","2026-04-22T08:08:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","13.0"
"416488481","367846723","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-21T16:29:59.000+02:00","cybreconcile","Cloud Agent","da474021-93a7-4460-8867-cfe17ed97189","2026-04-16T17:24:10.000+02:00","2026-04-22T08:07:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","142.0"
"229372706","258003126","vpsupbcen1.sanef.groupe","","00:50:56:8d:35:66","10.44.5.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 0d 62 ea 55 62 01 38-de 47 34 6e c2 2d dc 9c","No Asset Tag","'+02:00","2026-03-30T10:23:47.000+02:00","cybadmroot","Cloud Agent","651cda1a-b8ed-4ecb-8d5c-f5a97390c219","2024-04-11T16:14:23.000+02:00","2026-04-22T08:02:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","332.0"
"131273947","193320248","vpaiiacen1","","00:50:56:82:ad:5b","10.30.12.121","fe80::e83e:8fa8:f676:77fe","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9837","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 21 ef fd 6c 41 20-63 8c 6d f2 4a 05 89 29","No Asset Tag","'+02:00","2026-03-16T14:02:32.000+02:00","cybreconcile","Cloud Agent","be05e162-5eb7-4c0a-89a5-aa14243edaf2","2022-07-12T15:40:43.000+02:00","2026-04-22T08:01:07.000+02:00","x86_64","4","SCA,VM,PM,GAV","BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,VRF_INCONNUE,Cloud Agent,Linux Server,DSI,Centreon,Obsolete,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans","703.0"
"187703888","237569915","lremvbremv1.sanef.groupe","","00:17:a4:77:1c:70, 00:17:a4:77:1c:74","192.168.108.107,192.168.108.137,169.254.7.191,172.16.0.107","fe80::217:a4ff:fe77:1c70,fe80::217:a4ff:fe77:1c74","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070F","","'+02:00","2024-05-15T11:35:39.000+02:00","root","Cloud Agent","c867e106-2418-48c4-ab51-415175cbefc9","2023-09-13T17:37:44.000+02:00","2026-04-22T07:59:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette,EMV,OS-LIN-SRV DYN,DEX","499.0"
"213858750","251130288","spasuagsm1","","ec:eb:b8:9a:5a:81, ec:eb:b8:9a:5a:80","10.43.4.206,10.41.40.206","fe80::eeeb:b8ff:fe9a:5a81,fe80::eeeb:b8ff:fe9a:5a80","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F3","","'+02:00","2023-09-25T10:38:00.000+02:00","cybadmsys","Cloud Agent","aaf2f3fb-16f6-4719-827a-1c5a4433c4a5","2024-02-05T20:45:02.000+02:00","2026-04-22T07:57:52.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","524.0"
"187703886","237569914","lremvaste2","","00:17:a4:77:1c:7c, 00:17:a4:77:1c:78","192.168.107.108,192.168.108.108","fe80::217:a4ff:fe77:1c7c,fe80::217:a4ff:fe77:1c78","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070G","","'+02:00","2025-12-10T13:15:30.000+02:00","lamhajeb-ext","Cloud Agent","fa25cdc0-e6c3-449a-99b3-2d75d3f360d5","2023-09-13T17:37:30.000+02:00","2026-04-22T07:57:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,OS-LIN-SRV DYN,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Stecard V17 Recette","676.0"
"325041070","331288683","vpaflarat1.sanef.groupe","","00:50:56:9c:23:d5","10.46.34.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b0 e8 0c 53 11 be-42 2b 08 cc cb b1 02 20","No Asset Tag","'+02:00","2026-03-30T14:04:21.000+02:00","root","Cloud Agent","bcc0c71a-405c-4015-b192-30efadcda31b","2025-05-15T17:13:03.000+02:00","2026-04-22T07:57:01.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN","138.0"
"131396410","193417063","vpsimaapi2.sanef.groupe","","00:50:56:82:39:17","10.30.11.10","fe80::2f0d:87b4:78ff:6925","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","16046","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 60 ca 19 a6 8f a4-ed b4 cc db 99 49 a3 db","No Asset Tag","'+02:00","2025-11-21T12:21:58.000+02:00","cybadmsys","Cloud Agent","d18702e5-ad51-4be0-945b-0920c944f6e0","2022-07-13T09:25:38.000+02:00","2026-04-22T07:56:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Trafic,Production,Obsolete,VRF_INCONNUE,BDD-ELA DYN,Flux Libre","334.0"
"384522351","355028087","vrgrsangx1.sanef-rec.fr","","00:50:56:9c:84:2a","10.45.9.177","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c be 62 05 96 4f e9-f8 69 c8 bf b5 c1 5e 7a","No Asset Tag","'+02:00","2026-02-19T10:09:59.000+02:00","cybintsys","Cloud Agent","b8a80dfd-6688-4fb5-a115-73e39326dadb","2025-12-17T12:56:43.000+02:00","2026-04-22T07:56:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette,MID-NGINX DYN,BDD-POS DYN","147.0"
"160500506","213663599","vppintaweb2.sanef.groupe","","02:42:ac:5f:6a:ca, 00:50:56:82:2c:5f","172.17.0.1,192.168.20.21","fe80::250:56ff:fe82:2c5f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a9 c8 ab c6 0d b0-3a 1e 06 f1 4a a6 bf f5","No Asset Tag","'+02:00","2026-04-14T14:27:12.000+02:00","cybreconcile","Cloud Agent","f9805222-188f-487e-82d1-666db9d814e6","2023-02-24T17:15:52.000+02:00","2026-04-22T07:55:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Gestion institutionnel,Cloud Agent,Linux Server","65.0"
"213855638","251126076","spasuagsm3","","ec:eb:b8:9a:5a:b5, ec:eb:b8:9a:5a:b4","10.43.4.211,10.41.40.211","fe80::eeeb:b8ff:fe9a:5ab5,fe80::eeeb:b8ff:fe9a:5ab4","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/20/2023","CZJ81900F0","","'+02:00","2025-10-07T11:53:01.000+02:00","cybastapp","Cloud Agent","0f1eb777-2645-4602-9997-0b1ea4e73c59","2024-02-05T19:49:18.000+02:00","2026-04-22T07:52:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,Obsolete,ASUR","524.0"
"332262809","333860615","vpameahtp1.sanef.groupe","","00:50:56:90:87:8b, 00:50:56:90:8c:4d","10.41.41.50,10.41.41.52,10.43.4.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cf 7d a0 3a 2b 64-83 8b cf 80 29 ae d8 3e","No Asset Tag","'+02:00","2025-10-29T10:31:22.000+02:00","cybastapp","Cloud Agent","bb63cacb-2de4-4628-918b-2d20b9fd9f3c","2025-06-10T12:42:03.000+02:00","2026-04-22T07:51:53.000+02:00","x86_64","4","SCA,VM,GAV","Cloud Agent,Linux Server,Sextan,Production,MID-NGINX DYN,OS-LIN-SRV DYN","278.0"
"240414317","274791588","vibocharg1","","00:50:56:90:c9:83","10.41.22.70","fe80::250:56ff:fe90:c983","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b6 2f bd 3b 24-eb 93 26 ea 57 fe f0 ce","No Asset Tag","'+02:00","2026-03-16T16:10:12.000+02:00","cybsupibm","Cloud Agent","0bcf5151-cdd0-493d-802c-6c66c677630f","2024-05-30T12:39:29.000+02:00","2026-04-22T07:50:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,flux_libre,FreeFlow,Flux Libre","141.0"
"255409754","294877165","lramebrac1.sanef-rec.fr","","ee:50:33:80:00:78, ee:50:33:80:00:7c","10.45.2.110,10.45.2.114,10.45.2.119,10.45.5.6,169.254.16.47","fe80::ec50:33ff:fe80:78,fe80::ec50:33ff:fe80:7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00G","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:39:32.000+02:00","grid","Cloud Agent","814094fb-7668-435d-a867-f7df839822d0","2024-08-02T16:53:15.000+02:00","2026-04-22T07:48:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Amelie,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Recette","500.0"
"208777939","248746384","vibotangx1.sanef.groupe","","00:50:56:90:d2:ee","10.41.23.151","fe80::250:56ff:fe90:d2ee","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11728","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 3d 7f fc 70 0b-92 c5 64 74 b1 0e c7 28","No Asset Tag","'+02:00","2026-03-17T10:52:00.000+02:00","cybreconcile","Cloud Agent","a5986775-8447-4cac-9d8e-cbd9cbe765e6","2024-01-10T12:54:55.000+02:00","2026-04-22T07:46:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,MID-NGINX DYN,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0"
"249836031","288925765","lrdsibrac2.sanef-rec.fr","","3e:33:fb:a0:00:ca, 3e:33:fb:a0:00:ce","10.45.7.10,10.45.5.20","fe80::3c33:fbff:fea0:ca,fe80::3c33:fbff:fea0:ce","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200V","/n/Bios Asset Tag :","'+02:00","2026-03-04T18:18:46.000+02:00","reboot","Cloud Agent","0d957134-7830-49ff-a656-5c9d578b5bb7","2024-07-10T15:12:04.000+02:00","2026-04-22T07:45:47.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,ORACLE","146.0"
"391148476","357841487","vrdsialab2.sanef-rec.fr","","00:50:56:9c:41:e0","10.45.16.36","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 86 7d b8 28 a5 60-5a 50 b9 96 e5 7a 71 a8","No Asset Tag","'+02:00","2026-03-12T13:05:37.000+02:00","root","Cloud Agent","4cbfd300-075b-4e56-b552-646b79038eb6","2026-01-12T17:39:10.000+02:00","2026-04-22T07:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,test_rhel9,Recette","144.0"
"340070824","336780159","vppwdapod1.sanef.groupe","","00:50:56:94:6a:23","10.44.1.200","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 c3 5e ac d9 70 a8-34 da 91 3e 67 a7 a1 3d","No Asset Tag","'+02:00","2026-01-07T11:14:16.000+02:00","cybreconcile","Cloud Agent","4284b3bb-d420-4bfc-87c2-206c1d4ead2a","2025-07-08T10:13:26.000+02:00","2026-04-22T07:43:02.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0"
"175464748","229282007","vvbotatsp2.sanef-rec.fr","","42:d1:61:b3:ec:74, ca:c1:e9:e2:85:97, ce:f5:66:28:3e:64, e6:7a:28:bb:34:3a, 00:50:56:9c:29:20, 86:6d:28:44:d4:dc, ba:a0:83:64:91:4f, d2:9a:a7:f0:5b:f0","10.45.6.158,10.89.0.1","fe80::40d1:61ff:feb3:ec74,fe80::c8c1:e9ff:fee2:8597,fe80::ccf5:66ff:fe28:3e64,fe80::e47a:28ff:febb:343a,fe80::250:56ff:fe9c:2920,fe80::846d:28ff:fe44:d4dc,fe80::b8a0:83ff:fe64:914f,fe80::d09a:a7ff:fef0:5bf0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 6e 77 2f 09 41 e3-c2 26 21 99 bc 7c 16 7c","No Asset Tag","'+02:00","2026-03-10T11:29:16.000+02:00","cybreconcile","Cloud Agent","4a14bfd7-e9a4-4a27-8ef7-1d35494fcd66","2023-06-22T17:12:46.000+02:00","2026-04-22T07:42:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,FreeFlow,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0"
"192389444","240321284","vppeaabst1.sanef.groupe","","00:50:56:90:ee:11","10.41.20.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 a4 6b aa c2 b4 1d-66 50 bb 82 68 7a e8 40","No Asset Tag","'+02:00","2026-04-16T14:30:59.000+02:00","cybreconcile","Cloud Agent","03ac2c85-231e-4577-a87b-1011f771b865","2023-10-10T12:52:07.000+02:00","2026-04-22T07:41:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,FreeFlow,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre","485.0"
"213125599","250793707","vpbckangw4","","00:50:56:9a:d7:cd","10.44.3.165","fe80::250:56ff:fe9a:d7cd","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","3626","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a e4 61 03 48 01 3c-90 0b 8b e3 e9 c1 5a f6","No Asset Tag","'+02:00","2026-02-03T17:25:25.000+02:00","tbaad-ext","Cloud Agent","c045d0c9-2317-4051-8f6c-a26ad473874d","2024-02-01T12:45:52.000+02:00","2026-04-22T07:41:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0"
"220595112","253937959","vvbooarep2.sanef-rec.fr","","00:50:56:9c:e0:73","10.45.6.81","fe80::250:56ff:fe9c:e073","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 2a 59 5d 55 c9 bb-4a 0a 4e 97 69 02 ce c5","No Asset Tag","'+02:00","2026-03-09T16:01:19.000+02:00","cybintsys","Cloud Agent","3b74b962-7e4e-47fd-ac08-89e1bc617c16","2024-03-07T12:56:24.000+02:00","2026-04-22T07:40:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","141.0"
"130584251","192833335","node3","","00:50:56:82:3f:a3, 66:a4:6f:e0:c4:da, ee:ee:ee:ee:ee:ee, 22:09:18:03:9a:76","10.45.2.58,10.233.71.0,169.254.25.10","fe80::c251:be9c:d8ba:9277,fe80::64a4:6fff:fee0:c4da,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 37 fd 56 01 65 85-f2 6f 3d 1f d8 40 d0 c6","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybexpapp","Cloud Agent","3d718006-e555-46cc-b3f8-d1a8be458214","2022-07-07T11:37:04.000+02:00","2026-04-22T07:40:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,VRF_INCONNUE,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server","245.0"
"349775614","340136514","vpodaboem2.sanef.groupe","","52:54:00:eb:9c:78, 52:54:00:4e:87:ca, 52:54:00:df:ed:d3","192.168.17.129,10.42.15.90,10.42.15.92,10.42.15.95,10.42.15.96,192.168.17.4","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","grid","Cloud Agent","34fb5e73-b763-4faf-b472-8978c8d6e474","2025-08-07T14:49:18.000+02:00","2026-04-22T07:39:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0"
"205308048","246811798","vpbotarep2.sanef.groupe","","00:50:56:90:54:97","192.168.21.67","fe80::250:56ff:fe90:5497","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 12 e4 d6 12 27 c2-13 42 c2 d3 9f 32 ab e9","No Asset Tag","'+02:00","2026-04-21T10:01:57.000+02:00","cybreconcile","Cloud Agent","85846a96-9265-4ae1-ae41-7a30e78eecd7","2023-12-20T13:07:22.000+02:00","2026-04-22T07:39:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Flux Libre,OS-LIN-SRV DYN,flux_libre,log4j,FreeFlow,Cloud Agent,Linux Server","332.0"
"416742830","367956475","vrzbxaprx1.sanef-rec.fr","","00:50:56:9c:54:dd","10.45.15.207","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 79 51 76 96 f1 f4-04 23 a4 72 c4 09 43 4f","No Asset Tag","'+02:00","2026-04-16T12:17:54.000+02:00","cybsecope","Cloud Agent","68ae297c-956a-4d4d-8828-0f9bfcb6cfd7","2026-04-17T16:48:22.000+02:00","2026-04-22T07:39:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0"
"156914176","209819757","vpgmoaprx1.sanef.groupe","","00:50:56:82:af:7a","192.168.40.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 d6 c5 11 14 04 ba-46 53 b6 a4 26 48 12 8d","No Asset Tag","'+02:00","2026-04-15T14:30:47.000+02:00","cybexppct","Cloud Agent","3eb07219-8801-441f-a52a-1f9809474f39","2023-01-26T16:54:00.000+02:00","2026-04-22T07:38:46.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,TAG-SRVEXPOSEINTERNET,COSWIN,Production,OS-LIN-SRV DYN,DSI,VRF_INCONNUE","132.0"
"298436585","319181980","vpameapmv1.sanef.groupe","","00:50:56:8f:7e:56, 00:50:56:8f:4f:57","172.16.255.34,10.44.201.3,10.44.201.6,10.44.201.7,10.44.201.8,10.44.201.9,10.44.201.10","fe80::fcd1:4596:6e71:68c4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","11729","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 0f 39 3f f5 66 8a ad-79 e9 6a 0e 2e 03 a1 24","No Asset Tag","'+02:00","2025-11-06T11:55:44.000+02:00","cybreconcile","Cloud Agent","a6ed69dc-9ded-4025-b12a-bc53aa7e5f63","2025-02-07T10:24:08.000+02:00","2026-04-22T07:38:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,TAG-MIVISUPMV,TAG-SIC,OS-LIN-SRV DYN","140.0"
"334474020","336780138","vrdsiarad2.sanef-rec.fr","","00:50:56:9c:bf:c1","10.45.14.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 0d e2 97 96 64 9a-44 c6 d2 8d 1d 8c 7b c6","No Asset Tag","'+02:00","2026-04-21T10:44:57.000+02:00","cybadmroot","Cloud Agent","3f63d0e7-54c5-4227-a8b2-60721c718d13","2025-06-18T17:34:39.000+02:00","2026-04-22T11:09:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Radius,Recette,Cloud Agent,Linux Server,OS-LIN-SRV DYN","14.0"
"180394921","232823329","vrrauafrt2.sanef-rec.fr","","00:50:56:9c:c6:7d, 00:50:56:9c:aa:2f","10.45.5.38,10.45.9.236","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 23 17 6e 89 d4 65-93 ec 9d d5 6b 06 83 e1","No Asset Tag","'+02:00","2026-04-21T16:00:40.000+02:00","cybadmsys","Cloud Agent","525a37e9-3602-4d61-b803-11b1c97b105e","2023-07-28T12:38:15.000+02:00","2026-04-22T07:37:53.000+02:00","x86_64","3","SCA,VM,PM,GAV","ASUR,DSI,OS-LIN-SRV DYN,Cloud Agent,Linux Server","72.0"
"221418055","254288584","vposapquo1.sanef.groupe","","00:50:56:90:1f:e1","10.100.16.17","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 de 26 7d 05 8e 96-46 de 3a 71 de 50 c8 52","No Asset Tag","'+02:00","2026-02-26T12:08:15.000+02:00","cybadmsys","Cloud Agent","4b48a16f-2b2a-45bf-91f8-c4ef7cbdff20","2024-03-11T18:51:32.000+02:00","2026-04-22T07:37:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Production","144.0"
"138992971","198162634","vpdecasas6","","00:50:56:82:37:c1","10.30.11.154","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2200","Intel(R) Xeon(R) CPU E5-4660 v4 @ 2.20GHz","257964","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 2b 40 e9 8a e9 d8-a0 1e a2 a8 2d ab 8e 0f","No Asset Tag","'+02:00","2026-03-25T11:28:20.000+02:00","cybreconcile","Cloud Agent","c3e072b4-8e43-4338-ab89-6f9896d3609a","2022-09-06T12:18:18.000+02:00","2026-04-22T07:37:25.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,Cloud Agent,Linux Server,SAS,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Obsolete","71.0"
"272327301","300954741","vvbotaapm1.sanef-rec.fr","","5a:09:23:e9:c6:41, 8e:39:85:ab:6d:31, 1a:8a:d0:4e:4a:43, 00:50:56:9c:18:ae, 02:0d:59:ac:68:df, 32:df:9a:a9:82:3a, ba:10:c1:f3:2b:de","10.45.6.137,10.89.0.1","fe80::5809:23ff:fee9:c641,fe80::8c39:85ff:feab:6d31,fe80::188a:d0ff:fe4e:4a43,fe80::250:56ff:fe9c:18ae,fe80::d:59ff:feac:68df,fe80::30df:9aff:fea9:823a,fe80::b810:c1ff:fef3:2bde","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 42 4c 71 97 de 6c-e5 40 df bf 2f 98 e3 a7","No Asset Tag","'+02:00","2026-03-12T12:55:50.000+02:00","kapschsysuser","Cloud Agent","8e02ac89-8937-4583-b501-5d54d7a7ff99","2024-10-15T12:09:12.000+02:00","2026-04-22T07:36:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent","140.0"
"143622461","201024877","vpemvaadm1.sanef.groupe","","00:50:56:82:3f:ac","192.168.100.120","fe80::250:56ff:fe82:3fac","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 94 1a 2b 26 46 c5-68 17 52 2c 7d 31 2e c2","No Asset Tag","'+02:00","2026-03-19T12:55:29.000+02:00","reboot","Cloud Agent","73800d87-faef-4e19-88bf-f430624893f1","2022-10-11T17:24:07.000+02:00","2026-04-22T07:35:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,EMV,VRF_INCONNUE","106.0"
"202390516","245295390","vrameastg1.sanef-rec.fr","","00:50:56:9c:50:2f, 00:50:56:9c:a8:a5","10.45.4.10,10.45.2.10,10.45.2.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f6 73 b7 0a f4 df-55 19 7b 0c 02 1c 3d 05","No Asset Tag","'+02:00","2026-04-21T10:41:12.000+02:00","cybadmsys","Cloud Agent","17f4fe5e-9d61-4389-b6ac-7ee108a71fa9","2023-12-04T14:02:28.000+02:00","2026-04-22T07:35:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","SSTG,DEX,Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server","95.0"
"354695010","342495683","vpechaetl2.sanef.groupe","","00:50:56:90:59:ff","10.42.16.142","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31834","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 cc 42 ba c4 dc a0-5d 1b 90 2d 9b ff 83 97","No Asset Tag","'+02:00","2026-02-12T16:12:14.000+02:00","cybsecope","Cloud Agent","90a09695-211c-4ae1-8779-9584eb44c3a1","2025-08-26T17:17:27.000+02:00","2026-04-22T07:34:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","145.0"
"176096530","229734616","vvboomocr2.sanef-rec.fr","","00:50:56:9c:08:ca","10.45.6.78","fe80::250:56ff:fe9c:8ca","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d1 8d 24 87 25 73-ff 38 59 35 ce 37 cc a8","No Asset Tag","'+02:00","2026-03-09T16:40:08.000+02:00","cybreconcile","Cloud Agent","79b897c6-80b0-4561-8dd4-4e84de31dafa","2023-06-27T15:28:32.000+02:00","2026-04-22T07:33:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,FreeFlow,Flux Libre,Cloud Agent,Linux Server","141.0"
"230348234","258581748","vradvaapp1.sanef-rec.fr","","00:50:56:9c:80:06","10.45.13.3","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 33 fc f3 60 48 45-df 57 6e 3a f8 87 cd 75","No Asset Tag","'+02:00","2026-02-18T18:45:29.000+02:00","cybastsys","Cloud Agent","64984566-669b-48c3-87e2-c7e5f39edfc2","2024-04-16T14:00:00.000+02:00","2026-04-22T07:32:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server","333.0"
"194461477","241443119","vpgesapent1","","00:50:56:9c:a9:32","10.30.11.140","fe80::250:56ff:fe9c:a932","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c cc 61 51 29 81 1d-78 62 8c 9d 51 6d 5b 1f","No Asset Tag","'+02:00","2024-03-19T16:59:37.000+02:00","cybreconcile","Cloud Agent","824c87ce-2488-41d8-a52c-5ba974fca43a","2023-10-20T16:41:13.000+02:00","2026-04-22T07:32:02.000+02:00","x86_64","3","SCA,VM,PM,GAV","Obsolete,log4j,Cloud Agent,Linux Server,DSI,ITOP","512.0"
"398236665","360588010","vpdsibetc2.sanef.groupe","","00:50:56:9c:a9:8e","10.44.5.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c a3 32 6a 14 8e 9d-05 55 08 bc 3b 8a cb 57","No Asset Tag","'+02:00","2026-02-11T18:47:33.000+02:00","cybadmbdd","Cloud Agent","34a9d613-cd50-4c89-8f85-f9d729b9676f","2026-02-06T12:51:47.000+02:00","2026-04-22T07:32:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","141.0"
"384764086","355156890","vtpatbsip1.sanef-rec.fr","","00:50:56:9c:22:64","10.45.9.132","fe80::94dd:5e60:6164:3b39","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","39952","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 25 d7 b4 64 d1 99-19 7b 7a 20 80 9e 93 41","No Asset Tag","'+02:00","2026-04-14T15:51:51.000+02:00","cybsupapp","Cloud Agent","3af681c4-bc88-42f4-91b2-c23ad4b8a4c8","2025-12-18T12:21:10.000+02:00","2026-04-22T07:31:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,MID-NGINX DYN,BDD-ELA DYN","56.0"
"175565773","229347361","vvbotrtms2.sanef-rec.fr","","00:50:56:9c:d9:16","10.45.6.165","fe80::250:56ff:fe9c:d916","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c9 88 2a 81 80 57-4d c5 2f 74 05 59 16 4c","No Asset Tag","'+02:00","2026-03-10T16:34:24.000+02:00","cybreconcile","Cloud Agent","16b42a31-3a64-4db8-ada9-536c1851e7be","2023-06-23T11:42:20.000+02:00","2026-04-22T07:30:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,flux_libre,Recette,FreeFlow","145.0"
"240205944","279077695","lrinfbcos1.sanef.groupe","","3e:33:fb:a0:00:a8","10.45.9.196","fe80::3c33:fbff:fea0:a8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200L","/n/Bios Asset Tag :","'+02:00","2026-01-12T12:43:30.000+02:00","cybadmsys","Cloud Agent","d56a3b8a-da4c-4683-a2ba-075eb895ee72","2024-06-10T12:34:16.000+02:00","2026-04-22T07:30:21.000+02:00","x86_64","3","SCA,VM,PM,GAV","COSWIN,Linux Server,Cloud Agent,Recette,OS-LIN-SRV DYN","502.0"
"208776146","248746834","vibotarmq2.sanef.groupe","","00:50:56:90:db:03","10.41.23.142","fe80::250:56ff:fe90:db03","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d8 4e fb 0b bf 0a-b1 ff 2b 2f 68 7b b8 74","No Asset Tag","'+02:00","2026-03-17T12:05:56.000+02:00","cybreconcile","Cloud Agent","02404df1-e3e6-4541-9dda-fddb0c86b4d7","2024-01-10T12:58:42.000+02:00","2026-04-22T07:30:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0"
"267466879","298462274","vpracaquo1.sanef.groupe","","00:50:56:90:7f:5b","10.100.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 2e 0b 0e 39 5e 0e-64 e3 3d 31 d2 d6 b5 b7","No Asset Tag","'+02:00","2026-04-13T09:50:32.000+02:00","cybreconcile","Cloud Agent","447db307-ccdc-4989-8c0c-e51b96f27990","2024-09-24T16:55:13.000+02:00","2026-04-22T07:29:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0"
"238271425","269262511","vipeahbst3.sanef.groupe","","00:50:56:90:37:19","10.41.29.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 17 95 89 c2 84 ed-2c 8f 91 a2 95 54 83 8a","No Asset Tag","'+02:00","2026-03-19T15:49:49.000+02:00","cybexpapp","Cloud Agent","ddb444b2-d7ae-4fc7-a6a1-1674d9ed38cb","2024-05-21T14:55:10.000+02:00","2026-04-22T07:29:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow","141.0"
"149877032","205250032","vrintaels1.sanef.groupe","","00:50:56:82:02:34","10.45.1.197","fe80::250:56ff:fe82:234","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 ac 73 da 72 85 c5-c8 e3 d2 3c 4b 23 61 01","No Asset Tag","'+02:00","2026-02-23T13:28:31.000+02:00","cybadmsys","Cloud Agent","f2b5da61-0e90-43e5-b315-8d3c3ee6bdf6","2022-11-29T10:44:36.000+02:00","2026-04-22T07:29:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,VRF_INCONNUE,OS-LIN-SRV DYN,BDD-ELA DYN,Gestion institutionnel","141.0"
"158184886","210914051","vppintaprx1.sanef.groupe","","00:50:56:82:66:76","192.168.20.19","fe80::250:56ff:fe82:6676","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 98 5e 01 55 5c ea-d6 a7 9f f8 28 64 bc a9","No Asset Tag","'+02:00","2026-04-14T14:21:02.000+02:00","cybreconcile","Cloud Agent","7ddfba67-cd2f-4aad-85b8-b9b1d639cab3","2023-02-06T11:51:10.000+02:00","2026-04-22T07:28:31.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,TAG-SRVEXPOSEINTERNET,Gestion institutionnel,OS-LIN-SRV DYN,Cloud Agent,Linux Server","132.0"
"131405805","193425044","vsapbdd1.sanef.groupe","","00:50:56:82:58:5A","10.30.10.139","fe80::250:56ff:fe82:585a","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7873","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ef 1d 10 5c 70 1c-1a e3 77 a7 40 8d 08 a2","No Asset Tag","'+02:00","2023-01-12T08:06:16.000+02:00","cybreconcile","Cloud Agent","26e354e7-4929-4e5b-9b75-9e6636cd71cd","2022-07-13T10:39:43.000+02:00","2026-04-22T07:28:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,Cloud Agent,Linux Server,log4j,BDD-POS DYN,SAP,Production,Finances Comptabilité / Consolidation,DFIN","351.0"
"200577338","244425330","vptrabkme1.sanef.groupe","","00:50:56:90:b4:65","10.41.40.16","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 67 97 da 01 0d b9-6f df 41 7d 19 bc 76 d8","No Asset Tag","'+02:00","2026-04-14T11:33:55.000+02:00","cybreconcile","Cloud Agent","b559369d-392d-45c1-a640-f40c99f06c85","2023-11-23T17:01:49.000+02:00","2026-04-22T07:27:00.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,OS-LIN-SRV DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,KMELC","130.0"
"202807661","245521799","viosapast1.sanef.groupe","","00:50:56:90:37:69","10.41.8.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 77 e5 7d 99 99 79-cd 16 76 8d 84 16 ad 81","No Asset Tag","'+02:00","2026-02-19T11:14:13.000+02:00","cybreconcile","Cloud Agent","65f9b2dc-066e-4f1e-8b79-db849af7b5da","2023-12-06T13:29:33.000+02:00","2026-04-22T07:26:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,DEX,OS-LIN-SRV DYN","142.0"
"309388699","324179537","vrpeaakib1.sanef-rec.fr","","00:50:56:9c:d4:ef","10.45.10.105","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c aa d6 07 4c a1 bf-da 60 2e f3 68 89 02 99","No Asset Tag","'+02:00","2026-02-18T18:42:03.000+02:00","cybsecope","Cloud Agent","8c5eb5e7-c486-41a3-8d42-17501ebb7b76","2025-03-19T17:46:47.000+02:00","2026-04-22T07:26:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Péage,Linux Server,Cloud Agent,BDD,Recette","54.0"
"130588224","192836201","vmamrpmv2","","00:50:56:82:25:CC, 00:50:56:82:39:36, 00:50:56:82:6C:80","10.30.16.73,10.30.16.81,10.30.16.82,10.30.16.84,10.30.16.86,10.30.16.88,10.32.16.73,10.32.16.81,10.32.16.82,10.32.16.84,10.32.16.86,10.32.16.88,10.33.16.81","fe80::250:56ff:fe82:25cc,fe80::250:56ff:fe82:3936,fe80::250:56ff:fe82:6c80","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 cf d8 6c 28 75-6d 67 f9 88 4b f2 99 cd","No Asset Tag","'+02:00","2025-10-09T11:39:24.000+02:00","cybexpapp","Cloud Agent","5f97bdcf-1f2b-4de0-96e9-1686ef15f760","2022-07-07T12:02:38.000+02:00","2026-04-22T07:25:37.000+02:00","x86_64","5","SCA,VM,PM,GAV","Sans,Trafic,Recette,MIVISU,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Obsolete,log4j,DEX","873.0"
"260022315","294877281","vrdsiasat1.sanef-rec.fr","","00:50:56:9c:29:f3","10.45.0.164","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 6f fc bc db ff 4e-c4 f6 11 d8 0f be 9a 51","No Asset Tag","'+02:00","2026-04-14T09:45:50.000+02:00","cybsecope","Cloud Agent","26212425-1c91-4064-9586-dc5c7d9037dd","2024-08-21T12:54:30.000+02:00","2026-04-22T07:24:50.000+02:00","x86_64","2","SCA,VM,GAV","Linux Server,Cloud Agent,BDD-POS DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Recette,Satellite","66.0"
"257780648","294877284","vpsupapol4.sanef.groupe","","00:50:56:8d:c4:62","10.44.5.106","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 35 87 6d 7e 97 ca-a1 9c fd b1 fa ab cf 04","No Asset Tag","'+02:00","2026-03-30T11:14:42.000+02:00","cybsecope","Cloud Agent","4fda7178-6910-4c69-a02a-546b182516c0","2024-08-12T13:41:18.000+02:00","2026-04-22T07:24:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,BDD-ELA DYN,MID-NGINX DYN,Linux Server,Cloud Agent,Production,Centreon","133.0"
"175949562","229618439","vvbocs4as1.sanef-rec.fr","","00:50:56:9c:59:aa","10.45.6.6","fe80::250:56ff:fe9c:59aa","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 5b 05 6c b5 23 31-e1 35 15 fc 6f 74 67 90","No Asset Tag","'+02:00","2026-03-26T20:15:05.000+02:00","cybsupsys","Cloud Agent","4b7af28e-0cdc-4b98-998b-afc9b523b3c4","2023-06-26T16:43:00.000+02:00","2026-04-22T07:24:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Recette,Flux Libre,Cloud Agent,Linux Server,FreeFlow","144.0"
"139158084","198270618","vmampstg2","","00:50:56:82:6D:2C, 00:50:56:82:5F:2A, 00:50:56:82:46:99","10.41.40.46,10.41.40.47,10.43.40.46,10.43.40.47,10.43.4.46","fe80::250:56ff:fe82:6d2c,fe80::250:56ff:fe82:5f2a,fe80::250:56ff:fe82:4699","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6a 8e b4 34 55 f7-0d 01 14 05 58 f5 27 f0","No Asset Tag","'+02:00","2024-02-14T14:45:23.000+02:00","cybreconcile","Cloud Agent","b0547fe7-2fee-4906-ac22-bf8a3dea7380","2022-09-07T14:33:00.000+02:00","2026-04-22T07:24:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Trafic,SSTG,Obsolete,OS-LIN-SRV DYN,VRF_TRAFIC_DC,DEX,log4j,Cloud Agent,Linux Server","698.0"
"372999308","349974669","vpodabquo1.sanef.groupe","","00:50:56:90:34:d2","10.100.16.22","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 7a 50 2e b0 ce 3a-28 d8 2c 9a 76 6f 8c ea","No Asset Tag","'+02:00","2026-02-10T12:39:18.000+02:00","cybreconcile","Cloud Agent","b92550fa-6274-4296-a17f-b5273fc0ccd6","2025-10-30T15:47:38.000+02:00","2026-04-22T07:23:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","ORACLE,Production,BDD,Cloud Agent,OS-LIN-SRV DYN,Linux Server","145.0"
"210605077","249678661","lremvaste3","","00:17:a4:77:1c:34, 00:17:a4:77:1c:30","192.168.107.115,192.168.108.115","fe80::217:a4ff:fe77:1c34,fe80::217:a4ff:fe77:1c30","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000706","","'+02:00","2025-06-04T14:18:19.000+02:00","lamhajeb-ext","Cloud Agent","fa60436c-e5fc-4f21-a2fd-62a5517dd638","2024-01-19T12:08:18.000+02:00","2026-04-22T07:23:50.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard V17 Recette,Cloud Agent,Linux Server,EMV","700.0"
"241563930","276525121","vpvsaagez2","","00:50:56:9c:d2:03","192.168.18.76","fe80::250:56ff:fe9c:d203","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 52 a6 ca a7 7e 22-68 94 4a bb 72 29 6a 07","No Asset Tag","'+02:00","2026-02-04T16:51:01.000+02:00","tbaad","Cloud Agent","d9b33b8b-9cb1-4890-ba92-6b7cf1449d49","2024-06-04T14:05:02.000+02:00","2026-04-22T07:22:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"236301380","264488385","lpemvaste3","","00:17:a4:77:1c:58, 00:17:a4:77:1c:54","192.168.102.103,192.168.101.103","fe80::217:a4ff:fe77:1c58,fe80::217:a4ff:fe77:1c54","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX000070B","","'+02:00","2025-06-30T11:12:08.000+02:00","root","Cloud Agent","216dadc9-61a9-4156-a307-9de372a484c9","2024-05-13T14:57:35.000+02:00","2026-04-22T07:22:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17","683.0"
"205550121","246935753","vpbooarep1.sanef.groupe","","00:50:56:90:7a:a8","192.168.21.3","fe80::250:56ff:fe90:7aa8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3c d9 75 25 1e 2f-79 7f 10 53 d4 a9 62 4f","No Asset Tag","'+02:00","2026-04-07T09:45:52.000+02:00","cybreconcile","Cloud Agent","f2176662-a3cf-4a99-b94e-4792f9ca9b65","2023-12-21T14:00:12.000+02:00","2026-04-22T07:22:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,flux_libre,Flux Libre,Production,FreeFlow,Cloud Agent,Linux Server","141.0"
"159569521","212140185","vpintaweb3.sanef.groupe","","02:42:21:84:a9:e1, 00:50:56:82:a2:58","172.17.0.1,192.168.20.37","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 43 4e ac 36 c5 0b-a0 45 79 e7 07 64 75 d2","No Asset Tag","'+02:00","2026-04-15T14:58:12.000+02:00","cybreconcile","Cloud Agent","6f0930eb-1188-470b-8b59-430309194b43","2023-02-16T14:57:57.000+02:00","2026-04-22T07:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,Gestion institutionnel","130.0"
"130587915","192835846","lamarrac4.sanef.groupe","","00:17:A4:77:0C:8C, 00:17:A4:77:0C:84, 00:17:A4:77:0C:80, 00:17:A4:77:0C:88","10.45.3.103,10.45.5.5,169.254.24.161,10.45.2.106,10.45.2.107,10.45.5.21","fe80::217:a4ff:fe77:c8c,fe80::217:a4ff:fe77:c84,fe80::217:a4ff:fe77:c80,fe80::217:a4ff:fe77:c88","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","CZJ32903SK","","'+02:00","2026-02-25T16:01:13.000+02:00","cybsupsys","Cloud Agent","62edf48e-b2d4-4d90-80e9-1eaacdde2ce1","2022-07-07T11:57:26.000+02:00","2026-04-22T07:21:36.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Sans,Recette,Trafic","693.0"
"231613066","259382222","vvbotatvv1.sanef-rec.fr","","36:b3:50:af:a2:f7, 00:50:56:9c:11:6d, b6:98:6a:57:7a:d1","10.89.0.1,192.168.21.169","fe80::34b3:50ff:feaf:a2f7,fe80::250:56ff:fe9c:116d,fe80::b498:6aff:fe57:7ad1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c e4 3e 1f e7 e6 66-f4 e4 b9 53 06 1e 77 c5","No Asset Tag","'+02:00","2026-03-12T15:42:20.000+02:00","cybreconcile","Cloud Agent","7ba4ea28-e9be-43d3-976a-a169627d11ff","2024-04-22T17:38:56.000+02:00","2026-04-22T07:21:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,FreeFlow,flux_libre","141.0"
"213858465","251130134","lpagtbpla1.sanef.groupe","","ee:50:33:80:00:6c, ee:50:33:80:00:6d","10.46.33.21","fe80::ec50:33ff:fe80:6c,fe80::ec50:33ff:fe80:6d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63887","HPE I44 06/13/2025","VCGCIOJ00D","/n/Bios Asset Tag :","'+02:00","2026-02-24T15:37:40.000+02:00","cybastapp","Cloud Agent","22e9a011-1e29-4413-99d1-2d90a1d71123","2024-02-05T20:43:53.000+02:00","2026-04-22T07:20:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","AgileTime,Cloud Agent,Linux Server,DRH,OS-LIN-SRV DYN","341.0"
"131396898","193419390","vpcrmacle1","","00:50:56:82:e6:8f","10.30.10.15","fe80::addf:699e:1a72:e0d8","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7953","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 a7 69 a1 03 2e-e4 d9 f8 26 f2 26 4a 7f","No Asset Tag","'+02:00","2025-10-08T19:36:32.000+02:00","cybreconcile","Cloud Agent","833e747b-1f77-45bc-b197-57d004f3ca4b","2022-07-13T09:47:18.000+02:00","2026-04-22T07:20:19.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cleo,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,Communication,Production,DSI","501.0"
"380802646","353390884","spbckamag6.sanef.groupe","","6c:29:d2:30:50:e0, 6c:29:d2:30:50:e1","10.42.16.102,10.43.1.40","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192294","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27160090","Unknown","'+02:00","2025-12-02T18:18:27.000+02:00","root","Cloud Agent","78e081a3-6a78-488f-b1dc-5e7d8129752e","2025-12-02T13:31:47.000+02:00","2026-04-22T07:19:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0"
"182754885","234343584","vrsimbffl1.sanef.groupe","","00:50:56:9c:6e:ef","10.45.6.226","fe80::d6ad:85e1:7b19:67c4","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c d9 63 53 ed d3 4b-9c 27 3c 69 1b c9 cb 68","No Asset Tag","'+02:00","2026-03-03T15:15:39.000+02:00","cybreconcile","Cloud Agent","532638c1-735f-4e04-ac5a-e43c17ea3ff8","2023-08-14T15:33:44.000+02:00","2026-04-22T07:19:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,BDD-POS DYN,FreeFlow,MID-APACHE-TOMCAT DYN,Flux Libre,Obsolete,Cloud Agent,Linux Server","337.0"
"194428822","241420225","spbocbsap1.sanef.groupe","","88:e9:a4:8a:b7:12","10.41.22.11","fe80::8ae9:a4ff:fe8a:b712","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL560 G10 Server","144","2600","Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz","3095575","HPE U34 07/20/2023","CZ22420F51","","'+02:00","2026-04-01T21:39:28.000+02:00","cybsupibm","Cloud Agent","e0271779-5d77-4bdc-9073-cbe2bb19fc54","2023-10-20T11:50:47.000+02:00","2026-04-22T07:19:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,Flux Libre,flux_libre,OS-LIN-SRV DYN","329.0"
"131401827","193422310","lamaprac3.sanef.groupe","","00:17:A4:77:0C:C0, 00:17:A4:77:0C:C8, 00:17:A4:77:0C:CC, 00:17:A4:77:0C:C4","10.41.40.54,10.41.40.55,192.168.17.122,10.43.40.54,10.43.4.134,169.254.154.102","fe80::217:a4ff:fe77:cc0,fe80::217:a4ff:fe77:cc8,fe80::217:a4ff:fe77:ccc,fe80::217:a4ff:fe77:cc4","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48228","HP I31 05/24/2019","CZJ35002DF","","'+02:00","2025-10-08T15:12:43.000+02:00","cybastapp","Cloud Agent","260df756-19aa-4bfd-9e9b-bba8265ba6e4","2022-07-13T10:11:32.000+02:00","2026-04-22T07:19:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,Sans,Trafic,log4j,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Sextan,Cloud Agent,Linux Server,DEX,Obsolete","703.0"
"175948082","229616157","vvbotarmq1.sanef-rec.fr","","c6:2c:c8:c7:cf:e2, ea:01:16:fe:2e:56, 2e:50:3e:48:24:a9, 00:50:56:9c:08:be, d6:00:b0:b2:aa:ee, 6a:bc:93:2a:a0:60","10.45.6.136,10.89.0.1","fe80::c42c:c8ff:fec7:cfe2,fe80::e801:16ff:fefe:2e56,fe80::2c50:3eff:fe48:24a9,fe80::250:56ff:fe9c:8be,fe80::d400:b0ff:feb2:aaee,fe80::68bc:93ff:fe2a:a060","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c be db 50 60 40 57-3d 65 46 87 a6 2a 3f 7d","No Asset Tag","'+02:00","2026-03-12T15:35:02.000+02:00","kapschsysuser","Cloud Agent","5793f3aa-a2e6-4243-ab40-c6119cc9158a","2023-06-26T16:19:42.000+02:00","2026-04-22T07:18:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,FreeFlow","140.0"
"241565638","276526603","vpvsaamet1.sanef.groupe","","00:50:56:90:4e:b2","10.42.16.80","fe80::250:56ff:fe90:4eb2","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 de d6 a5 89 3e be-75 58 93 4a 7e 39 6a 34","No Asset Tag","'+02:00","2026-02-05T10:15:27.000+02:00","tbaad","Cloud Agent","6dd1dea1-6ac5-409d-9615-248e8e7e389d","2024-06-04T14:13:56.000+02:00","2026-04-22T07:18:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"160254541","213434294","vpameaoct3","","00:50:56:82:9c:bf","10.41.40.132","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 83 57 fc b0 cf e3-59 10 8e e7 20 50 ae 61","No Asset Tag","'+02:00","2026-01-21T10:48:59.000+02:00","cybreconcile","Cloud Agent","bda31da6-c234-43dc-9fa5-321dbe627fa8","2023-02-22T18:11:07.000+02:00","2026-04-22T07:17:39.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,OCTAN,DEX,Cloud Agent,Linux Server","212.0"
"301230398","320881573","vrdsismtp2.sanef-rec.fr","","00:50:56:9c:4d:2c","192.168.19.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 96 2d 1d eb 72 8a-13 9f 35 b9 9f 94 14 39","No Asset Tag","'+02:00","2026-01-07T11:15:16.000+02:00","root","Cloud Agent","f053efb1-ac6e-474a-b24d-88e43d3362a3","2025-02-19T14:15:17.000+02:00","2026-04-22T07:17:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0"
"380803972","353387551","spbckamag5.sanef.groupe","","6c:29:d2:30:72:11, 6c:29:d2:30:72:10","10.43.1.8,10.42.16.100","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M6 Server","48","2100","Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz","192295","Cisco Systems, Inc. C220M6.4.3.6b.0.0602250951 06/02/2025","WZP27180G3W","Unknown","'+02:00","2025-12-02T14:30:27.000+02:00","root","Cloud Agent","26a8beb3-8e97-4dc4-89fa-8ff79f76f136","2025-12-02T13:08:43.000+02:00","2026-04-22T07:17:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","330.0"
"213849158","251124645","asur-rau2","","40:a8:f0:27:80:de, 40:a8:f0:27:80:dc","10.43.4.197,10.41.40.197","fe80::42a8:f0ff:fe27:80de,fe80::42a8:f0ff:fe27:80dc","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 08/02/2014","CZ24422JVZ","","'+02:00","2026-04-02T09:13:29.000+02:00","cybreconcile","Cloud Agent","d6b6d4e3-911d-4923-9e06-3538ab7f4c61","2024-02-05T19:25:56.000+02:00","2026-04-22T07:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","log4j,Obsolete,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,MID-NGINX DYN","351.0"
"131265958","193315361","vmxfb1.sanef.groupe","","00:50:56:82:33:61","10.30.11.99","fe80::250:56ff:fe82:3361","Linux / Server","Red Hat Enterprise Linux Server 6.7","6.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d9 b0 eb 79 07 7b-f1 fb 9c f1 9c 20 e0 59","No Asset Tag","'+02:00","2025-01-30T11:10:38.000+02:00","cybreconcile","Cloud Agent","7d281613-4f4d-4ab7-9a09-1e79c4661a21","2022-07-12T14:43:02.000+02:00","2026-04-22T07:16:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,VRF_INCONNUE,OS-LIN-SRV DYN,XFB,ServersInCyberark,Obsolete,DEX,log4j,Production,Exploitation IT","351.0"
"313113952","325677727","vprauahtp2.sanef.groupe","","00:50:56:90:41:89","192.168.40.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 fa 16 f5 1c 4e 00-30 9a 01 a5 08 7e e8 67","No Asset Tag","'+02:00","2026-04-13T10:17:10.000+02:00","cybadmsys","Cloud Agent","58c6c779-9cf7-43fd-b23b-958ccaafe72c","2025-04-02T11:04:41.000+02:00","2026-04-22T07:15:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-NGINX DYN,Cloud Agent,Linux Server,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT","132.0"
"183965866","235215633","vmamrmet2","","00:50:56:82:67:F0, 00:50:56:82:42:10, 00:50:56:82:07:E1","10.45.4.151,10.45.2.151,10.45.3.151","fe80::250:56ff:fe82:67f0,fe80::250:56ff:fe82:4210,fe80::250:56ff:fe82:7e1","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 84 26 ae 6d 9b-c0 d7 e4 a0 b7 13 78 52","No Asset Tag","'+02:00","2025-10-09T11:39:08.000+02:00","root","Cloud Agent","84233946-88dd-45d5-888e-6d9ad37c4526","2023-08-22T13:03:52.000+02:00","2026-04-22T11:12:29.000+02:00","x86_64","5","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Obsolete,DEX,MIVISU,log4j","878.0"
"194260782","241335670","vppeaarcv1.sanef.groupe","","00:50:56:90:2c:dd","10.41.20.40","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 3e 20 cf 0e 8d d1-5c 99 97 fd e9 77 bd 6d","No Asset Tag","'+02:00","2026-04-01T12:13:26.000+02:00","cybreconcile","Cloud Agent","d0be85c3-94c9-4154-8c8b-3f6f4669d86f","2023-10-19T14:29:55.000+02:00","2026-04-22T07:15:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,flux_libre,log4j,Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,MID-NGINX DYN","332.0"
"180108602","232626623","vrrauaapp2.sanef-rec.fr","","00:50:56:9c:28:db","10.45.9.232","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cd c2 27 21 3b 75-d5 11 d0 ed cd 78 9f 31","No Asset Tag","'+02:00","2026-04-21T14:54:09.000+02:00","cybadmsys","Cloud Agent","3d6bb01a-4c12-418a-a7d8-e0a1a778b1b9","2023-07-26T18:25:45.000+02:00","2026-04-22T07:15:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,ASUR,Cloud Agent,Linux Server,DSI","21.0"
"215187156","251711287","vipeabbst4.sanef.groupe","","00:50:56:90:9a:9d","10.41.29.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 63 dc 35 88 e1 90-07 2f ea a2 36 05 18 93","No Asset Tag","'+02:00","2026-03-19T11:51:00.000+02:00","cybexpapp","Cloud Agent","6c1945a9-58ae-45ed-8cad-f782421b63ad","2024-02-12T13:16:30.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,Production,Cloud Agent,Linux Server,Flux Libre","141.0"
"200166052","244210270","vppeabbst2.sanef.groupe","","00:50:56:90:e3:00","10.41.20.54","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 dd 2d a9 8d 51 fb-9b 8d 5b 3f 89 8f 53 66","No Asset Tag","'+02:00","2026-04-02T09:36:52.000+02:00","cybreconcile","Cloud Agent","bdbaf8c4-ec55-4b37-88ad-00412535be0b","2023-11-21T11:57:07.000+02:00","2026-04-22T07:15:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-ELA DYN,DSI,flux_libre,Production,BOOST,Flux Libre,FreeFlow","66.0"
"241565659","276527066","vpvsaamet2.sanef.groupe","","00:50:56:90:52:13","10.42.16.81","fe80::250:56ff:fe90:5213","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 3d 97 76 31 7a bc-22 6e b6 c5 94 5c 3f 19","No Asset Tag","'+02:00","2026-02-05T10:59:02.000+02:00","tbaad-ext","Cloud Agent","cd01681c-7508-42e1-9f52-8ee3646ead86","2024-06-04T14:16:52.000+02:00","2026-04-22T07:14:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"379514975","352868343","vpdecasas5","","00:50:56:82:27:7a","10.30.11.153","fe80::250:56ff:fe82:277a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e3 ce 30 de ba 20-7b 70 48 b6 76 de 02 54","No Asset Tag","'+02:00","2026-03-25T11:06:10.000+02:00","cybreconcile","Cloud Agent","6775240f-e611-4a59-ba72-fd17c7fb99ee","2025-11-26T11:58:56.000+02:00","2026-04-22T07:13:31.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Finances Comptabilité / Consolidation,Obsolete,VRF_INCONNUE,SAS,Production,BDD-POS DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","75.0"
"175464776","229282250","vvbotbtsd2.sanef-rec.fr","","5e:a8:b9:89:1d:64, 5e:9f:b9:d3:c9:e3, d2:d9:d6:a9:92:32, ea:4b:26:17:43:51, 3a:2e:30:81:51:3d, 1a:bb:e1:57:5c:d6, e2:af:07:d9:5f:01, fe:45:99:76:06:e6, 52:e5:74:29:12:93, 00:50:56:9c:73:6c","10.89.0.1,10.45.6.159","fe80::5ca8:b9ff:fe89:1d64,fe80::5c9f:b9ff:fed3:c9e3,fe80::d0d9:d6ff:fea9:9232,fe80::e84b:26ff:fe17:4351,fe80::382e:30ff:fe81:513d,fe80::18bb:e1ff:fe57:5cd6,fe80::e0af:7ff:fed9:5f01,fe80::fc45:99ff:fe76:6e6,fe80::50e5:74ff:fe29:1293,fe80::250:56ff:fe9c:736c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d9 28 0c 18 45 4b-0b c7 7f 31 33 07 ce b6","No Asset Tag","'+02:00","2026-03-10T12:33:09.000+02:00","cybreconcile","Cloud Agent","d65335f6-ad53-44be-9ee9-4ba2bb568850","2023-06-22T17:14:50.000+02:00","2026-04-22T07:12:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Flux Libre,Recette,OS-LIN-SRV DYN,flux_libre,Cloud Agent,Linux Server","140.0"
"131396766","193418130","vptraatpf2.sanef.groupe","","00:50:56:82:60:51","192.168.40.11","fe80::3b2c:823:f9b7:cb57","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","5966","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 70 ac 1e 4f b4 40-b2 98 b8 7a f9 2a dc 1b","No Asset Tag","'+02:00","2024-03-18T11:34:08.000+02:00","cybreconcile","Cloud Agent","93a03fe2-db2a-4bfe-b492-491600b97a67","2022-07-13T09:36:36.000+02:00","2026-04-22T07:12:09.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,DEX,Temps de parcours,TAG-SRVEXPOSEINDIRECT,Obsolete,Sans,Production,DMZ,Trafic,Cloud Agent,Linux Server","507.0"
"208784631","248750420","vibotreco4.sanef.groupe","","00:50:56:90:b2:cc","10.41.23.160","fe80::250:56ff:fe90:b2cc","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 32 96 a5 05 01 5f-00 b5 e6 43 6f 5f b5 6d","No Asset Tag","'+02:00","2026-03-18T16:17:18.000+02:00","cybsupsys","Cloud Agent","23ddfa6c-2990-4221-a9a7-32314045d24d","2024-01-10T13:28:16.000+02:00","2026-04-22T07:11:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0"
"416897959","367958041","vrzbxaprx3.sanef-rec.fr","","00:50:56:9c:4a:1f","192.168.10.67","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c f7 1f b4 4e f6 eb-27 2e 03 8b 6e 28 f5 e3","No Asset Tag","'+02:00","2026-04-16T12:33:48.000+02:00","cybintsys","Cloud Agent","791c799b-ce3b-4f7d-bdb1-00bf541cf736","2026-04-17T17:04:12.000+02:00","2026-04-22T07:11:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0"
"209161379","248966236","vibotreco2.sanef.groupe","","00:50:56:90:65:1c","10.41.23.140","fe80::250:56ff:fe90:651c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 79 08 4b cf 1a 7c-67 1f 09 45 c8 d8 73 70","No Asset Tag","'+02:00","2026-03-18T15:32:26.000+02:00","cybreconcile","Cloud Agent","99ca84de-06e5-4779-9e22-9176f45f96b1","2024-01-12T11:59:18.000+02:00","2026-04-22T07:11:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,Production,flux_libre","140.0"
"157732257","210514185","vppintanfs1.sanef.groupe","","02:42:0d:37:c7:29, 00:50:56:82:0f:d4","172.17.0.1,192.168.20.22","fe80::42:dff:fe37:c729,fe80::250:56ff:fe82:fd4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 91 99 cb 93 9a a9-48 f3 bf a9 34 a8 5e c8","No Asset Tag","'+02:00","2026-02-23T15:27:34.000+02:00","cybreconcile","Cloud Agent","61bbad5a-2fa0-48b1-b600-e63a7c9bf3ec","2023-02-02T12:53:49.000+02:00","2026-04-22T07:10:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,OS-LIN-SRV DYN,Recette,Gestion institutionnel,Cloud Agent,Linux Server","142.0"
"203201197","245720142","viboobquo2.sanef.groupe","","00:50:56:90:f4:81","10.100.16.14","fe80::250:56ff:fe90:f481","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 a8 8a 3d af c5 cc-3a 3b 81 2e a2 5c 0f db","No Asset Tag","'+02:00","2026-03-16T11:44:22.000+02:00","cybadmsys","Cloud Agent","d893a18b-379e-49de-adc6-d85c776904e0","2023-12-08T12:15:23.000+02:00","2026-04-22T07:10:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0"
"191423864","239727601","viboomocr1.sanef.groupe","","00:50:56:90:d3:5a","10.41.22.203","fe80::250:56ff:fe90:d35a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 7d 5b 72 12 b8 c6-18 ac dd ec 2d c2 b1 c6","No Asset Tag","'+02:00","2026-03-17T16:15:16.000+02:00","cyblecemo","Cloud Agent","9d3db0fc-f9c5-4e35-8a6b-b4b13710c954","2023-10-04T17:55:58.000+02:00","2026-04-22T07:10:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production,flux_libre,Flux Libre","337.0"
"219208217","253333827","viosapels2.sanef.groupe","","00:50:56:90:96:f3","10.41.29.62","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 15 3c 6e 04 1f 18-1f 0a f3 e4 57 bf 49 45","No Asset Tag","'+02:00","2026-02-19T11:42:45.000+02:00","cybadmroot","Cloud Agent","e3694e2f-bbb9-4630-9788-06ccef9c608b","2024-02-29T19:22:51.000+02:00","2026-04-22T07:09:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","141.0"
"241566273","276527283","vpvsaamez1.sanef.groupe","","00:50:56:90:1e:44","192.168.18.73","fe80::250:56ff:fe90:1e44","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 e4 4a 7a 68 7b 7e-8c 84 de d8 8b f9 e7 e1","No Asset Tag","'+02:00","2026-02-05T11:22:41.000+02:00","tbaad","Cloud Agent","ef3dbfbc-766c-4bf2-95ae-668a0f6c47c9","2024-06-04T14:19:12.000+02:00","2026-04-22T07:09:39.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"231533958","259283849","lpemvaste5","","00:17:a4:77:1c:08, 00:17:a4:77:1c:0c","192.168.101.112,192.168.102.112","fe80::217:a4ff:fe77:1c08,fe80::217:a4ff:fe77:1c0c","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000701","","'+02:00","2025-08-20T02:51:24.000+02:00","root","Cloud Agent","014648fd-0bf3-42fa-a645-5c26d7f077ef","2024-04-22T11:32:18.000+02:00","2026-04-22T07:09:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,EMV,Production,PCI Bunker EMV - VLAN Stecard v17,Linux Server,Cloud Agent,OS-LIN-SRV DYN","678.0"
"191420278","239726172","viboobsql1.sanef.groupe","","00:50:56:90:79:13","10.41.22.197","fe80::9f87:73a9:8141:a671","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 89 87 08 56 5a e2-02 2d 98 dd e9 78 ce 8b","No Asset Tag","'+02:00","2026-03-16T13:14:11.000+02:00","cyblecemo","Cloud Agent","0e78b35e-587f-488d-8b42-686603abadce","2023-10-04T17:40:04.000+02:00","2026-04-22T07:07:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-SQL,FreeFlow,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production,OS-LIN-SRV DYN","144.0"
"137349499","197588902","vppeabbst1.sanef.groupe","","00:50:56:82:cb:ed","10.41.20.36","fe80::5562:9fe3:1d4d:cbca","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","15884","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d f3 6e 44 26 a7 73-1c 5c 78 45 08 5a 03 16","No Asset Tag","'+02:00","2024-09-03T10:18:40.000+02:00","cybreconcile","Cloud Agent","e215704d-750e-43fb-9a9e-7e5ce428f036","2022-08-30T17:13:50.000+02:00","2026-04-22T07:07:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,Obsolete,BDD-ELA DYN,Production,VRF_PEAGE_DC,ServersInCyberark,BOOST","244.0"
"240373008","274660851","vibocsman1","","00:50:56:90:15:cf","10.41.22.75","fe80::250:56ff:fe90:15cf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f1 89 97 41 48 21-f3 72 04 fd 52 84 b9 88","No Asset Tag","'+02:00","2026-03-16T16:13:35.000+02:00","cybreconcile","Cloud Agent","ef118b75-4ec2-4641-a292-762f6378d872","2024-05-30T10:26:21.000+02:00","2026-04-22T07:06:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,FreeFlow,Cloud Agent,Linux Server","141.0"
"131405746","193424771","vmntp1.sanef.groupe","","00:50:56:90:BC:8A","10.100.1.200","fe80::250:56ff:fe90:bc8a","Linux / Server","The CentOS Project CentOS 6.4","6.4","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","1878","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 6c 9a 6e 8a 5b 6d-a4 a0 de 2f 17 2b cf d1","No Asset Tag","'+02:00","2025-09-02T17:07:41.000+02:00","cybreconcile","Cloud Agent","fd737359-f1d2-4382-bb84-211d4f5a1fe5","2022-07-13T10:35:52.000+02:00","2026-04-22T07:06:50.000+02:00","x86_64","3","SCA,VM,PM,GAV","DSI,Cloud Agent,Linux Server,VRF_INCONNUE,NTP,Obsolete,Production","519.0"
"236561622","265298550","vpaptbjup1","","00:50:56:9c:ba:e7","10.46.34.10","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","128398","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 20 80 48 3d 56 28-9e 03 4c 62 49 be ba 76","No Asset Tag","'+02:00","2026-03-23T15:14:43.000+02:00","cybreconcile","Cloud Agent","0da83727-852c-4ba7-9ca2-7bb222238ab0","2024-05-14T15:06:56.000+02:00","2026-04-22T07:06:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,Production,Cloud Agent,Linux Server","141.0"
"236301381","264488386","lpemvaste4","","00:17:a4:77:1c:04, 00:17:a4:77:1c:00","192.168.102.111,192.168.101.111","fe80::217:a4ff:fe77:1c04,fe80::217:a4ff:fe77:1c00","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000700","","'+02:00","2025-08-20T02:47:02.000+02:00","root","Cloud Agent","6f46b509-d7ed-40b4-a333-76facfeb3d9c","2024-05-13T14:57:35.000+02:00","2026-04-22T07:06:25.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,PCI Bunker EMV - VLAN Stecard v17,Production,EMV,PCI Bunker EMV","480.0"
"130584077","192833340","node2","","00:50:56:82:d1:ae, 66:2d:bf:44:a6:8b","10.45.2.57,10.233.75.0","fe80::250:56ff:fe82:d1ae,fe80::642d:bfff:fe44:a68b","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 b4 9a 31 df 57 07-ae c3 e8 88 b2 b1 e0 ad","No Asset Tag","'+02:00","2025-02-26T17:07:09.000+02:00","zhou","Cloud Agent","929b11d7-0ff3-45ef-880d-69c40d5ab4e5","2022-07-07T11:36:33.000+02:00","2026-04-22T07:06:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE","342.0"
"376341349","351487830","vptrabmut2.sanef.groupe","","52:54:00:6a:93:4d, 52:54:00:1b:c4:f4, 52:54:00:45:c3:aa","192.168.17.6,10.41.40.220,10.41.40.222,10.41.40.224,10.41.40.225,192.168.17.133","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:36.000+02:00","cybsecope","Cloud Agent","8d8d9b64-fad1-4bb3-90a7-e7c5c44d3906","2025-11-13T12:06:57.000+02:00","2026-04-22T07:06:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Linux Server,Cloud Agent,Production,ORACLE","339.0"
"200010195","244159182","vppeabbst4.sanef.groupe","","00:50:56:90:92:2c","10.41.20.53","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 d3 e2 57 3a 45 24-23 d3 3d c3 ab f0 2d 99","No Asset Tag","'+02:00","2026-04-02T10:12:32.000+02:00","cybreconcile","Cloud Agent","6cd17fdf-4e6c-4bea-b0af-db962a018d9c","2023-11-20T18:30:27.000+02:00","2026-04-22T07:05:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,BDD-ELA DYN,OS-LIN-SRV DYN,FreeFlow,flux_libre,DSI,BOOST,Production","66.0"
"241566442","276527835","vpvsaarez2","","00:50:56:9c:e0:a6","192.168.18.77","fe80::250:56ff:fe9c:e0a6","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c e4 9a ea a7 d9 db-82 71 0e dd c5 2b 48 3f","No Asset Tag","'+02:00","2026-02-05T13:34:19.000+02:00","tbaad-ext","Cloud Agent","43b76ec3-cf8f-48ab-8427-779ef5952a76","2024-06-04T14:27:35.000+02:00","2026-04-22T07:05:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"382535369","354020836","vrdsiascr1.sanef-rec.fr","","00:50:56:9c:8b:d9","192.168.31.3","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c ab be 26 df 26 0e-f6 ee 9d ca 08 fa 4f b6","No Asset Tag","'+02:00","2026-03-17T18:26:38.000+02:00","cybintsys","Cloud Agent","f4715e59-7fcd-4568-9c9c-4e14851a31a1","2025-12-08T18:43:40.000+02:00","2026-04-22T07:05:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Recette,NextCloud,MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","145.0"
"139158140","198270706","asur-rau1","","40:a8:f0:27:a9:f4, 40:a8:f0:27:a9:f6","10.41.40.195,10.41.40.196,10.43.4.196","fe80::42a8:f0ff:fe27:a9f4,fe80::42a8:f0ff:fe27:a9f6","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Computers / Server","HPE ProLiant DL380p G8 Server","24","2600","Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz","32069","HP P70 05/24/2019","CZ2D1A03DL","","'+02:00","2026-04-02T09:20:01.000+02:00","cybastsys","Cloud Agent","9e18ea3e-abcd-46a2-b81b-6a1bed7f4ca7","2022-09-07T14:38:03.000+02:00","2026-04-22T07:04:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,log4j,Obsolete,VRF_INCONNUE,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","350.0"
"318425666","328043648","vrameakfk2.sanef-rec.fr","","00:50:56:9c:a5:17","10.45.2.41","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 7e 4b fb 71 b1-0c 8d e5 80 63 d2 e3 19","No Asset Tag","'+02:00","2026-04-20T09:28:21.000+02:00","cybsupapp","Cloud Agent","dbd56bd1-f707-4d45-81e5-8ac18665e209","2025-04-22T14:50:03.000+02:00","2026-04-22T07:04:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Amelie","48.0"
"229191355","257963095","vvbocarep1.sanef-rec.fr","","00:50:56:9c:fb:45","10.45.6.13","fe80::250:56ff:fe9c:fb45","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c dd a5 63 3c 60 79-e1 14 79 d3 63 26 30 34","No Asset Tag","'+02:00","2026-03-11T15:24:54.000+02:00","cybsupsys","Cloud Agent","87dfc34b-5199-4079-81b3-d53eed892e4d","2024-04-11T10:29:55.000+02:00","2026-04-22T07:04:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0"
"139158077","198270619","vmampstg1","","00:50:56:82:1D:1F, 00:50:56:82:31:55, 00:50:56:82:20:3D","10.41.40.45,10.41.40.49,10.43.40.45,10.43.40.49,10.43.4.45","fe80::250:56ff:fe82:1d1f,fe80::250:56ff:fe82:3155,fe80::250:56ff:fe82:203d","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 68 9f 2a 20 3f 69-09 5c 0a fb 5d 99 6c 23","No Asset Tag","'+02:00","2024-02-13T14:07:51.000+02:00","cybreconcile","Cloud Agent","9f42509a-bdc6-4442-92af-24d7c02bff27","2022-09-07T14:32:19.000+02:00","2026-04-22T07:04:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Trafic,Cloud Agent,Linux Server,log4j,Obsolete,DEX,VRF_TRAFIC_DC,OS-LIN-SRV DYN,SSTG,Production","698.0"
"130583160","192832674","vmcmdb1","","00:50:56:82:2a:23","10.30.11.107","fe80::250:56ff:fe82:2a23","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d bb 7b 8a eb f9 ef-52 af 84 7c 73 cb d1 b5","No Asset Tag","'+02:00","2025-10-09T11:34:20.000+02:00","cybastsys","Cloud Agent","adf31e08-00b0-40ec-b4b7-0c02de37e963","2022-07-07T11:25:27.000+02:00","2026-04-22T07:04:08.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,Bases de Données,VRF_INCONNUE,Recette,Production,Péage,BDD-POS DYN,ITOP,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Obsolete","682.0"
"193239279","240746200","vpbocsman1.sanef.groupe","","00:50:56:90:75:83","10.41.22.12","fe80::250:56ff:fe90:7583","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 84 b1 8b 62 45 c3-fd 8e 0f 6e bf d0 38 36","No Asset Tag","'+02:00","2026-04-01T22:07:00.000+02:00","cybreconcile","Cloud Agent","f3962cdd-3357-4b22-9c0b-a019e669a722","2023-10-13T15:25:07.000+02:00","2026-04-22T07:04:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,flux_libre,Flux Libre,Production","140.0"
"241566316","276527664","vpvsaamez2","","00:50:56:90:1a:be","192.168.18.74","fe80::250:56ff:fe90:1abe","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 7f 0e 93 96 35 ca-ce 63 bd 18 94 c8 3d c9","No Asset Tag","'+02:00","2026-02-05T12:16:52.000+02:00","tbaad-ext","Cloud Agent","9694f565-91c5-47a8-8306-bab0c8309f12","2024-06-04T14:24:06.000+02:00","2026-04-22T07:03:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"178993124","231838279","vpsasawrk5.sanef.groupe","","00:50:56:82:88:17","10.41.32.14","fe80::250:56ff:fe82:8817","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d0 ae 00 c5 2f c4-44 7e 95 ec 2f ba 28 d3","No Asset Tag","'+02:00","2026-03-25T16:09:16.000+02:00","cybreconcile","Cloud Agent","4550baae-9ce1-4137-a685-0e12f058c7dd","2023-07-18T16:09:08.000+02:00","2026-04-22T07:03:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,SAS,DSI,Cloud Agent,Linux Server","86.0"
"175568112","229347672","vvbotrssc2.sanef-rec.fr","","00:50:56:9c:67:a2","10.45.6.164","fe80::250:56ff:fe9c:67a2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4e 3a 51 02 96 38-5e 0b 6a c4 19 45 b9 ec","No Asset Tag","'+02:00","2026-03-10T15:25:00.000+02:00","cybreconcile","Cloud Agent","81ec73f5-fd15-4e74-9273-5176ea4ea726","2023-06-23T11:47:55.000+02:00","2026-04-22T07:03:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server,Flux Libre","139.0"
"202758101","245521798","vposapast1.sanef.groupe","","00:50:56:90:f1:c2","10.41.8.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 80 94 9a 23 33 77-48 f4 53 be 39 dc 0f d4","No Asset Tag","'+02:00","2026-03-04T07:52:35.000+02:00","cybreconcile","Cloud Agent","69ba10f2-4559-4503-8388-2dbdb6cec2b7","2023-12-06T13:31:42.000+02:00","2026-04-22T07:03:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Péage,Production,OS-LIN-SRV DYN,DEX","144.0"
"131262350","193313521","lampcrm1.serveur.est.sanef.fr","","00:17:A4:77:00:80","10.30.11.166","fe80::217:a4ff:fe77:80","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","12007","","VCX0000008","","'+02:00","2025-06-02T16:18:54.000+02:00","cybastapp","Cloud Agent","90e2ebad-e312-4974-a72f-79ae0f79cd43","2022-07-12T14:10:55.000+02:00","2026-04-22T07:01:43.000+02:00","x86_64","3","SCA,VM,GAV","VRF_INCONNUE,Cloud Agent,Linux Server,DSI,BDD-POS DYN,OS-LIN-SRV DYN,Cleo,Gestion commerciale,Sans,Production,Obsolete,ServersInCyberark","529.0"
"143625000","201025858","vpemvapol1","","00:50:56:82:cc:27","192.168.100.210","fe80::7499:cfde:6820:8896","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8f 36 0c f7 b9 4a-0b aa ab e7 ee 3e 4a 85","No Asset Tag","'+02:00","2025-10-28T17:58:14.000+02:00","root","Cloud Agent","f6a9bf03-3765-4870-80bf-04b49ce5ec59","2022-10-11T17:37:37.000+02:00","2026-04-22T07:01:33.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,PCI Bunker EMV,MID-NGINX DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,MID-APACHE-TOMCAT DYN,Obsolete,Centreon,VRF_INCONNUE,Cloud Agent,Linux Server","111.0"
"178994738","231838047","vpsasawrk4.sanef.groupe","","00:50:56:82:d5:bf","10.41.32.13","fe80::250:56ff:fe82:d5bf","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 27 ed 8e ec 68-0c 24 ee 91 71 e2 3f b6","No Asset Tag","'+02:00","2026-03-25T16:08:05.000+02:00","cybreconcile","Cloud Agent","28f3b331-7b56-4aea-b1d4-e48b98b4adc9","2023-07-18T16:05:20.000+02:00","2026-04-22T07:01:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,SAS,BDD-POS DYN,DSI","86.0"
"284373652","309489720","vtdsibquo1.sanef-rec.fr","","00:50:56:90:09:64","10.100.16.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 05 33 07 18 a6 ad-c2 24 36 1e e1 7a 34 fb","No Asset Tag","'+02:00","2026-01-20T12:44:52.000+02:00","cybadmbdd","Cloud Agent","d4c09689-9864-43d4-b09d-9148a5925d7c","2024-12-05T13:22:39.000+02:00","2026-04-22T07:01:20.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,PATRIMOINE,Cloud Agent,Linux Server","140.0"
"311188894","330493462","vrgawbpgs1.sanef-rec.fr","","00:50:56:9c:b2:e3","10.45.14.68","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c ae a7 c0 1e 76 3a-38 ea 0f 5e 63 b6 75 fe","No Asset Tag","'+02:00","2026-02-11T13:00:58.000+02:00","cybintsys","Cloud Agent","fe8d93a6-f708-4b08-a027-2195526d9300","2025-03-26T18:31:22.000+02:00","2026-04-22T07:00:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD-POS DYN,Plateforme d'échange","58.0"
"295840239","317389833","vpngwasia2","","00:50:56:94:df:a9","10.44.2.197","fe80::250:56ff:fe94:dfa9","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 c8 60 db c0 ee 4d-d2 e5 84 bb d1 d0 4a 54","No Asset Tag","'+02:00","2026-02-02T16:48:11.000+02:00","tbaad","Cloud Agent","519cf2ee-5556-4e62-841b-af4a5a3c3ce7","2025-01-29T11:45:08.000+02:00","2026-04-22T06:59:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server","53.0"
"131405535","193423432","vastapp1.sanef.groupe","","00:50:56:82:05:81","10.30.10.28","fe80::250:56ff:fe82:581","Linux / Server","The CentOS Project CentOS 6.5","6.5","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3833","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ec 06 40 2b 24 69-07 b2 4f 24 dc ce 7d 43","No Asset Tag","'+02:00","2024-11-28T11:18:16.000+02:00","cybreconcile","Cloud Agent","eff2945f-584a-4870-ae6d-a4dec2ede75a","2022-07-13T10:25:15.000+02:00","2026-04-22T06:58:52.000+02:00","x86_64","4","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Obsolete,Moyenne,ServersInCyberark,Péage,Production,Medium,VRF_INCONNUE,BDD-POS DYN,DEX,ADV-U","699.0"
"340054184","336780133","vppwdbsql1.sanef.groupe","","00:50:56:94:99:8b","10.44.1.204","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 79 99 86 b3 83 7e-33 8d a0 75 1f 7d 24 97","No Asset Tag","'+02:00","2026-01-12T11:15:14.000+02:00","cybadmbdd","Cloud Agent","528c381a-7196-4ce4-b292-3e8e87eae124","2025-07-08T10:17:27.000+02:00","2026-04-22T06:58:36.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","332.0"
"376415237","351518008","vpcybapsp1.sanef.groupe","","00:50:56:9c:6c:8d","10.44.1.74","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c f9 be bd f5 ad b8-ce 39 02 93 63 8c d7 98","No Asset Tag","'+02:00","2026-03-23T10:04:47.000+02:00","cybsecope","Cloud Agent","1c8a2d4b-a8c2-4153-921f-733552d74b8c","2025-11-13T17:20:19.000+02:00","2026-04-22T06:58:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent,Production,CyberArk","152.0"
"208784339","248752685","vibotatst1.sanef.groupe","","00:50:56:90:f4:29","10.41.23.147","fe80::250:56ff:fe90:f429","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 37 5b 95 76 60 67-c1 9b 21 e0 40 c7 d9 ac","No Asset Tag","'+02:00","2026-03-18T10:48:36.000+02:00","cybreconcile","Cloud Agent","663f1a10-8f92-4ba0-9ce1-64a95e276b54","2024-01-10T13:46:44.000+02:00","2026-04-22T06:57:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,FreeFlow,Flux Libre,Cloud Agent,Linux Server,flux_libre","140.0"
"175946491","229615309","vvbotcach1.sanef-rec.fr","","ca:d9:7b:7f:b4:62, 00:50:56:9c:bd:e0, 2e:96:62:6f:39:9b, ae:af:ba:79:bd:b1, 16:cb:70:08:47:44, ba:bf:e5:0c:37:9e, e2:9c:39:9f:87:eb, ee:ff:c5:a2:32:80, e2:95:66:e1:cd:79","10.89.0.1,10.45.6.134","fe80::c8d9:7bff:fe7f:b462,fe80::250:56ff:fe9c:bde0,fe80::2c96:62ff:fe6f:399b,fe80::acaf:baff:fe79:bdb1,fe80::14cb:70ff:fe08:4744,fe80::b8bf:e5ff:fe0c:379e,fe80::e09c:39ff:fe9f:87eb,fe80::ecff:c5ff:fea2:3280,fe80::e095:66ff:fee1:cd79","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 06 eb b3 4e 4f 09-7c db 21 c2 f7 68 06 55","No Asset Tag","'+02:00","2026-03-23T17:32:51.000+02:00","kapschsysuser","Cloud Agent","c4c636e9-9e2e-4e12-8ce8-070f2ee3cca3","2023-06-26T16:09:59.000+02:00","2026-04-22T06:57:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,Recette,Cloud Agent,Linux Server,flux_libre,FreeFlow","140.0"
"363271952","346043088","vpdataapp1.sanef.groupe","","00:50:56:90:82:b9","10.41.40.145","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 dd ff 41 d8 ef 31-e1 05 cd e9 41 2e a3 c1","No Asset Tag","'+02:00","2026-01-27T15:00:44.000+02:00","cybadmroot","Cloud Agent","823fbea8-e9dc-41fc-a34f-34fe775d6ace","2025-09-26T14:21:14.000+02:00","2026-04-22T06:57:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","138.0"
"212784022","250654143","rsminas1.sanef.groupe","","AC:16:2D:BE:79:B8","10.30.10.244","fe80::ae16:2dff:febe:79b8","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant DL180 G6 Server","4","2130","Intel(R) Xeon(R) CPU E5606 @ 2.13GHz","7990","HP O20 05/01/2012","CZJ2380H9F","","'+02:00","2025-02-24T15:29:36.000+02:00","cybreconcile","Cloud Agent","eb25f56d-085a-4297-9e74-3537e0c10174","2024-01-30T20:29:34.000+02:00","2026-04-22T06:57:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,log4j,Package,DSI,Obsolete","346.0"
"178987974","231834396","vpsasawrk2.sanef.groupe","","00:50:56:9c:3c:7e","10.41.32.11","fe80::250:56ff:fe9c:3c7e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 44 cd f4 1c 05 f6-ec 5a 77 9f 48 d7 bd ee","No Asset Tag","'+02:00","2026-03-25T16:05:19.000+02:00","cybreconcile","Cloud Agent","282d4b3d-dc63-4714-9802-de796af6d28c","2023-07-18T15:24:52.000+02:00","2026-04-22T06:57:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,SAS,BDD-POS DYN,OS-LIN-SRV DYN,DSI","86.0"
"131270155","193318578","lpsimbpfe1.sanef.groupe","","00:17:a4:77:08:0c","10.30.11.35","fe80::dbd2:64a5:3f9a:488","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","15915","HP I36 07/18/2022","CZ255301Y3","","'+02:00","2024-09-26T09:49:06.000+02:00","root","Cloud Agent","6974b918-ea34-4b17-ba9e-1844c04cfc61","2022-07-12T15:22:29.000+02:00","2026-04-22T06:57:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Obsolete,Plateforme d'échange,log4j,Cloud Agent,Linux Server,Production,Exploitation IT,OS-LIN-SRV DYN,VRF_INCONNUE,DEX","342.0"
"131406886","193425562","vpexpaxfb1.sanef.groupe","","00:50:56:82:8e:9f","10.42.16.10","fe80::96d1:3f1f:8fd7:b2b5","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d cf d5 53 cd b9 ff-af 5a 56 80 d5 e4 c7 ad","No Asset Tag","'+02:00","2026-02-12T11:28:39.000+02:00","cybreconcile","Cloud Agent","c75eb41c-4217-4836-8eb9-0fb55afb2d1f","2022-07-13T10:46:25.000+02:00","2026-04-22T06:57:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","DEX,Production,Cloud Agent,Linux Server,VRF_ECHANGE_DC,XFB,OS-LIN-SRV DYN","145.0"
"416050086","367717577","vrzbxaapp2.sanef-rec.fr","","00:50:56:9c:8f:39","10.45.15.197","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 4b 1a 2e c5 4c c9-04 c2 fa 36 29 42 10 c4","No Asset Tag","'+02:00","2026-04-15T16:50:37.000+02:00","root","Cloud Agent","f1b1bdb2-aba9-42c3-b024-668c319824e6","2026-04-15T15:19:46.000+02:00","2026-04-22T06:56:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0"
"407993958","364306731","splogbels1","","40:5b:7f:e1:b0:8d","10.44.7.41","fe80::425b:7fff:fee1:b08d","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G11 Server","32","","INTEL(R) XEON(R) SILVER 4514Y","31586","HPE 2.50 04/22/2025","CZ2D3C0G32","","'+02:00","2026-04-17T15:24:14.000+02:00","reboot","Cloud Agent","6babbc6b-af04-4507-a5a5-1cca7d385c4d","2026-03-12T14:43:01.000+02:00","2026-04-22T06:56:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,BDD-ELA DYN,Elasticsearch,Production","152.0"
"131142756","193232215","vmcmdb","","00:50:56:82:89:58","10.30.11.126","fe80::250:56ff:fe82:8958","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-5c 9a 02 42 e2 29 78 a4-73 39 00 04 68 fe dd 76","No Asset Tag","'+02:00","2024-12-18T15:24:38.000+02:00","cybreconcile","Cloud Agent","215653c1-a242-4eee-bac0-657357541f10","2022-07-11T16:24:04.000+02:00","2026-04-22T06:56:03.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,TAG-SRVEXPOSEINDIRECT,Cloud Agent,Linux Server,Trafic,Recette,ITOP,Obsolete,VRF_INCONNUE","675.0"
"295975028","317392823","vpvsaasia1","","00:50:56:94:26:36","10.44.2.200","fe80::250:56ff:fe94:2636","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 14 55 2f f1 7e 8f d8-37 f0 26 6d e1 12 63 8a","No Asset Tag","'+02:00","2026-02-02T16:43:43.000+02:00","tbaad","Cloud Agent","75796606-f2a5-4510-9e2a-8d1ba5778e54","2025-01-29T12:11:48.000+02:00","2026-04-22T06:55:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","52.0"
"162039853","215781556","vpsasacpt1.sanef.groupe","","00:50:56:82:03:5b","10.41.32.7","fe80::250:56ff:fe82:35b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","386444","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 20 dd 1b 99 33 df-70 0d f5 60 7c a9 e0 e3","No Asset Tag","'+02:00","2026-03-25T16:00:22.000+02:00","cybreconcile","Cloud Agent","fe65813a-d961-484f-b252-9ee5d6cb7734","2023-03-08T15:38:55.000+02:00","2026-04-22T06:55:51.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,SAS,Cloud Agent,Linux Server,DSI","93.0"
"131405762","193424770","vmquorum1.sanef.groupe","","00:50:56:82:5D:D3","10.102.2.11","fe80::250:56ff:fe82:5dd3","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 0c c5 ed f0 97 2d-b4 cb f2 2e 27 19 ea 19","No Asset Tag","'+02:00","2025-01-22T12:14:26.000+02:00","cybreconcile","Cloud Agent","f4622346-fe46-4098-8fd1-0d9bd920de6f","2022-07-13T10:36:59.000+02:00","2026-04-22T06:55:41.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,DEX,Obsolete,Production,Sextan","700.0"
"358779414","344245999","vrcybapta1","","00:50:56:9c:fa:b5","10.45.11.163","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11700","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c c8 c0 6e 1c 85 f3-ac 52 3a dd e2 8f f8 01","No Asset Tag","'+02:00","2026-04-16T10:48:49.000+02:00","cybreconcile","Cloud Agent","bbf8ae39-41ed-49c7-a126-946a2741aecd","2025-09-11T09:26:33.000+02:00","2026-04-22T06:55:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent,OS-LIN-SRV DYN,CyberArk,Recette","336.0"
"139375864","198361633","spasuagsm4","","b4:7a:f1:b3:e7:09, b4:7a:f1:b3:e7:08","10.43.4.212,10.41.40.212","fe80::b67a:f1ff:feb3:e709,fe80::b67a:f1ff:feb3:e708","Linux / Server","The CentOS Project CentOS 7.2 (1511)","7.2","Computers / Server","HPE ProLiant DL360 G10 Server","16","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31673","HPE U32 07/14/2022","CZJ81900F2","","'+02:00","2025-10-08T16:09:42.000+02:00","cybreconcile","Cloud Agent","239632ad-773e-46c7-81cb-452e6531aa02","2022-09-08T15:34:56.000+02:00","2026-04-22T06:54:56.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,Exploitation,VRF_INCONNUE,DSI,BDD-POS DYN,MID-NGINX DYN,Obsolete,Cloud Agent,Linux Server,ASUR","524.0"
"369277894","348354786","vrdsiaito1.sanef-rec.fr","","00:50:56:9c:0b:ac","10.45.15.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 14 09 8f cb c0 b4-4c 0f fc c5 0c e4 3b 21","No Asset Tag","'+02:00","2026-04-10T10:01:22.000+02:00","cybsupapp","Cloud Agent","ad2c0f09-1ecd-4312-8a4c-0c7d53077036","2025-10-16T11:55:50.000+02:00","2026-04-22T06:54:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent","139.0"
"373212905","350070988","vpameasxt1.sanef.groupe","","00:50:56:90:3e:d6, 00:50:56:90:1e:f8","10.43.4.25,10.41.41.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 8b 3c 35 35 56 96-78 8b 90 84 23 83 a4 05","No Asset Tag","'+02:00","2025-11-12T09:33:10.000+02:00","cybreconcile","Cloud Agent","b6929662-ee8c-4e67-afe2-eb5686a424e3","2025-10-31T11:57:06.000+02:00","2026-04-22T06:53:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server,Sextan,Production","662.0"
"112196090","180151399","vmamrrdt2","","00:50:56:82:53:79, 00:50:56:82:4F:D5","10.45.2.186,10.45.2.188,10.45.2.192,10.45.2.194,10.45.3.186,10.45.3.188,10.45.3.192,10.45.3.194","fe80::250:56ff:fe82:5379,fe80::250:56ff:fe82:4fd5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 93 64 9e 76 9d-d4 d7 dc 53 6a 19 06 90","No Asset Tag","'+02:00","2025-11-18T13:38:15.000+02:00","cybexpapp","Cloud Agent","6baf190a-8dc9-4345-bd7d-5872ffaa9231","2022-02-03T16:45:05.000+02:00","2026-04-22T06:53:49.000+02:00","x86_64","5","SCA,VM,PM,GAV","ServersInCyberark,MIVISU,log4j,Outils prod (Monitoring, NMS, gestion de parc),Production,Linux Server,OS-LIN-SRV DYN,Cloud Agent,Sans,Trafic,Recette,Obsolete,DEX,VRF_INCONNUE","873.0"
"156071801","209222521","vpdsiaclo1.sanef.groupe","","00:50:56:82:aa:3c","192.168.31.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 d4 84 8f 20 30 8b-15 80 94 1b a9 56 7a 6d","No Asset Tag","'+02:00","2026-04-16T14:26:49.000+02:00","cybreconcile","Cloud Agent","4e6ad26c-f78d-4e23-8d2f-c0071e748eb9","2023-01-19T10:41:15.000+02:00","2026-04-22T06:53:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINTERNET,MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Owncloud,VRF_INCONNUE","132.0"
"219800194","253606419","vpbotarmq1.sanef.groupe","","00:50:56:90:2a:9d","10.41.23.22","fe80::250:56ff:fe90:2a9d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 dd 7c 58 43 63 71-e5 91 e0 bf 4b f1 54 66","No Asset Tag","'+02:00","2026-04-21T11:32:10.000+02:00","cybreconcile","Cloud Agent","ffcb26ac-642c-4ddf-9731-be09592928c3","2024-03-04T12:16:46.000+02:00","2026-04-22T06:53:16.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","141.0"
"160093994","213039821","vraiibpgs4","","00:50:56:82:c5:14","10.45.1.165,10.45.1.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ae 0b a2 5e 22 17-93 4c cc eb a7 71 b9 5a","No Asset Tag","'+02:00","2026-01-07T12:41:58.000+02:00","cybintsys","Cloud Agent","92f8ba2f-56bd-4758-9d22-e1b740b167e8","2023-02-21T12:42:20.000+02:00","2026-04-22T06:53:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DSI,BDD,BDD-ELA DYN,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Recette","143.0"
"178168038","231228012","vpameased1.sanef.groupe","","00:50:56:82:57:01","10.41.40.43","fe80::250:56ff:fe82:5701","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a4 1d 0c ca 65 5c-69 49 dd d6 7a e3 eb 37","No Asset Tag","'+02:00","2026-04-15T15:16:26.000+02:00","cybreconcile","Cloud Agent","7023c0a4-e618-46a7-9ffd-d1cf3479d060","2023-07-12T12:05:06.000+02:00","2026-04-22T06:52:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,DEX,OS-LIN-SRV DYN,SED,Cloud Agent,Linux Server","132.0"
"296033054","317455078","vpiadapol1","","00:50:56:9a:8f:55","10.44.3.68","","Linux / Server","Red Hat Enterprise Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7685","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1a 89 6e 39 61 2b 38-47 36 07 52 d2 4b 7d e4","No Asset Tag","'+02:00","2025-01-29T14:59:52.000+02:00","root","Cloud Agent","18253cdb-719b-4f0c-bd66-f63d7cf8b292","2025-01-29T15:00:17.000+02:00","2026-04-22T06:52:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","338.0"
"181705921","233669335","vrosapsrv1.sanef-rec.fr","","00:50:56:9c:70:38","10.45.9.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 29 fb 96 2e 14 82-28 c3 82 89 0e b2 31 36","No Asset Tag","'+02:00","2026-04-09T12:14:04.000+02:00","cybadmsys","Cloud Agent","31f20ac1-dd20-4cd3-9a4e-790be9367805","2023-08-07T10:57:17.000+02:00","2026-04-22T06:52:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","Péage,BDD-ELA DYN,MID-NGINX DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,DEX,Cloud Agent,Linux Server","133.0"
"131406323","193425034","vrracquo1","","00:50:56:AC:00:E6","10.102.2.10","fe80::250:56ff:feac:e6","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","996","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c 61 f3 29 a8 f9 a3-22 22 61 17 58 04 c3 5d","No Asset Tag","'+02:00","2023-09-25T12:03:13.000+02:00","cybreconcile","Cloud Agent","7fc95d16-3183-469d-9c09-e08ccbf5dea2","2022-07-13T10:38:49.000+02:00","2026-04-22T06:52:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Quorum,OS-LIN-SRV DYN,Obsolete,Cloud Agent,Linux Server","343.0"
"411394993","365634074","vpdecasas4","","00:50:56:82:11:f0","10.30.11.152","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","64430","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fa 1c e9 14 59 44-09 d9 a0 eb 46 07 f2 ff","No Asset Tag","'+02:00","2026-03-25T15:50:33.000+02:00","cybreconcile","Cloud Agent","80b494e2-2f67-454e-8170-847d60075eae","2026-03-25T15:50:52.000+02:00","2026-04-22T06:51:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,SAS,DSI,Production,Finances Comptabilité / Consolidation,Linux Server,Cloud Agent,OS-LIN-SRV DYN","512.0"
"230624660","258738929","vpsupapol1.sanef.groupe","","00:50:56:8d:78:3e","10.44.5.103","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7696","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d de 96 06 d0 e5 37-73 d9 95 5b 4a d8 8f 44","No Asset Tag","'+02:00","2026-03-30T10:42:58.000+02:00","cybreconcile","Cloud Agent","82ca204b-27bc-4eb7-b322-1655ec08497b","2024-04-17T17:35:43.000+02:00","2026-04-22T06:51:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN","66.0"
"159693566","212321116","vpvpnarad1.sanef.groupe","","00:50:56:82:70:90, 02:42:9d:4f:9c:a1, 7a:60:ec:a5:16:1a","192.168.19.6,172.17.0.1","fe80::250:56ff:fe82:7090,fe80::42:9dff:fe4f:9ca1,fe80::7860:ecff:fea5:161a","Linux / Server","Red Hat Enterprise Linux 8.3","8.3","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 02 d7 da 94 70 9e 6e-62 4c 3e fb 97 e7 7c 40","No Asset Tag","'+02:00","2026-02-24T12:10:05.000+02:00","cybadmres","Cloud Agent","7ab0a0cc-dff6-4c59-b695-fea679d296e7","2023-02-17T13:09:34.000+02:00","2026-04-22T06:51:42.000+02:00","x86_64","3","SCA,VM,PM,GAV","VPN,Radius,GEMALTO,VRF_INCONNUE,OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server","207.0"
"213849878","251124779","spsecalog1.sanef.groupe","","54:80:28:4e:62:e0","10.30.10.163","fe80::adf5:cfc0:844c:bb2a","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31828","HPE U30 08/06/2025","CZ28450152","","'+02:00","2026-01-14T16:13:56.000+02:00","cybsupsys","Cloud Agent","561115b7-6e0d-4fcf-8b81-6db17110d077","2024-02-05T19:27:44.000+02:00","2026-04-22T06:51:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Obsolete,Splunk,OS-LIN-SRV DYN,DSI","242.0"
"195794735","241929791","vpbotreco4.sanef.groupe","","00:50:56:90:4a:4d","10.41.23.21","fe80::250:56ff:fe90:4a4d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 cb 51 e5 f3 c5 6d-3b 13 0c 15 51 d4 9a 94","No Asset Tag","'+02:00","2026-04-16T15:14:01.000+02:00","cybreconcile","Cloud Agent","84311023-f2cf-4094-b245-29d504b5c25f","2023-10-26T11:42:11.000+02:00","2026-04-22T06:49:48.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,FreeFlow,Flux Libre,flux_libre,Cloud Agent,Linux Server","141.0"
"409746895","365034580","vpdsiaito1.sanef.groupe","","00:50:56:9c:fa:7c","10.46.33.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 29 1a 4f 84 a5 cf-aa 45 de 5e 04 ad 47 37","No Asset Tag","'+02:00","2026-03-23T15:11:57.000+02:00","cybreconcile","Cloud Agent","1c3cf6bb-20fe-4cc6-9671-7ff64bcdc4e1","2026-03-19T15:13:46.000+02:00","2026-04-22T06:49:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,MID-NGINX DYN","330.0"
"303923893","322167384","vrdepbels2.sanef-rec.fr","","00:50:56:9c:fc:1d","10.45.13.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9f 5f 98 84 33 6c-23 9d a6 89 71 d7 53 91","No Asset Tag","'+02:00","2026-01-15T16:11:37.000+02:00","cybsupapp","Cloud Agent","2a28fb56-a6f0-4da5-812f-61c6e7bb2b50","2025-02-27T18:15:20.000+02:00","2026-04-22T06:48:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Gestion dépanneurs,Linux Server,Cloud Agent","141.0"
"314659720","326547477","vpdsibquo1.sanef.groupe","","00:50:56:90:ff:a1","10.100.16.19","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 73 1f 14 3b 95 cf-66 6b b9 4a ae 5c d7 d4","No Asset Tag","'+02:00","2026-02-10T11:18:47.000+02:00","cybadmbdd","Cloud Agent","9892cd90-4b55-48b2-bf09-4a20e99269de","2025-04-08T17:09:47.000+02:00","2026-04-22T06:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,OS-LIN-SRV DYN,Production,BDD-ELA DYN,Cloud Agent,Linux Server","140.0"
"294113565","316155452","vpadvangx1.sanef.groupe","","00:50:56:90:f2:a9","192.168.20.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d5 59 bd 3e ac 7f-5f e4 fd 51 7e 33 c8 37","No Asset Tag","'+02:00","2026-03-17T16:39:16.000+02:00","cybadmroot","Cloud Agent","f9d3d39e-0323-4b81-90e4-1642915c432b","2025-01-22T13:10:08.000+02:00","2026-04-22T06:47:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-NGINX DYN,ADV-U","141.0"
"137346917","197588252","vpexpbdech1.sanef.groupe","","00:50:56:82:9b:ad","10.41.40.155","fe80::663a:66b7:1daf:db9e","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d d3 08 47 19 41 98-d7 42 c7 04 de b3 f2 e8","No Asset Tag","'+02:00","2025-11-25T15:36:26.000+02:00","cybreconcile","Cloud Agent","8308352a-87a2-4733-86fd-7cb6ac17b583","2022-08-30T17:02:41.000+02:00","2026-04-22T11:56:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DECHETS,Production,BDD-POS DYN,OS-LIN-SRV DYN,TAG-SRVEXPOSEINDIRECT,VRF_TRAFIC_DC,DEX,Cloud Agent,Linux Server,Obsolete,ServersInCyberark,Patrimoine","100.0"
"196663887","242433779","vpboobquo1.sanef.groupe","","00:50:56:90:eb:e4","10.100.16.13","fe80::250:56ff:fe90:ebe4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 31 52 df 09 67 68-7e 74 2f 62 c2 51 c4 34","No Asset Tag","'+02:00","2026-04-07T12:08:49.000+02:00","cybreconcile","Cloud Agent","d7f52b85-a622-403d-b3ff-1d2f8e4b3b4a","2023-10-31T18:38:52.000+02:00","2026-04-22T06:47:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","334.0"
"304096310","322255083","vpsupapol5","","00:50:56:94:70:3a","10.44.5.107","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","","INTEL(R) XEON(R) GOLD 6526Y","7665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 14 ef 07 cf 2f 81 53-d9 5d 06 e4 16 01 eb 07","No Asset Tag","'+02:00","2026-03-30T11:24:10.000+02:00","cybsupsys","Cloud Agent","98d941fc-1d28-41a4-9618-16754a77178f","2025-02-28T12:35:28.000+02:00","2026-04-22T06:47:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,Cloud Agent,Linux Server","133.0"
"228684181","257664201","vpbocasec1","","00:50:56:90:53:09","10.41.22.16","fe80::250:56ff:fe90:5309","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 66 9f 39 aa 70 12-76 58 86 b2 81 d1 ac e7","No Asset Tag","'+02:00","2026-04-01T09:56:22.000+02:00","root","Cloud Agent","5fd89561-ad73-4111-8bb9-95ee494fde17","2024-04-09T13:14:36.000+02:00","2026-04-22T06:47:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,flux_libre,Flux Libre,OS-LIN-SRV DYN","141.0"
"407627825","364166819","splogbels3","","d4:f5:ef:39:81:2c","10.44.7.42","fe80::d6f5:efff:fe39:812c","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant DL380 G10 Server","16","3200","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","31493","HPE U30 08/06/2025","CZ20510927","","'+02:00","2026-03-27T16:19:28.000+02:00","cybintsys","Cloud Agent","58b1fe8a-fb3d-4490-a2f9-a26a40618ce8","2026-03-11T12:17:53.000+02:00","2026-04-22T06:46:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Production,Elasticsearch,Cloud Agent,OS-LIN-SRV DYN,Linux Server","152.0"
"413355832","366628998","vpsecapki1.sanef.groupe","","00:50:56:94:ae:99","10.44.3.196","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","","INTEL(R) XEON(R) GOLD 6526Y","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 14 d2 63 c4 cf 61 e0-f6 2e 2d d5 54 ba fc f1","No Asset Tag","'+02:00","2026-04-03T15:08:49.000+02:00","cybsecope","Cloud Agent","6f169398-810e-420e-bf0a-4f8b5f09b5f6","2026-04-03T15:09:06.000+02:00","2026-04-22T06:46:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","66.0"
"295103250","316894097","vpngwasic2","","00:50:56:8f:a6:87","10.44.200.101","fe80::250:56ff:fe8f:a687","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 0f 7a 40 97 ae c4 25-6d 28 12 8a 34 18 1a 68","No Asset Tag","'+02:00","2026-03-18T14:17:24.000+02:00","reboot","Cloud Agent","e89ff728-8ed2-450e-b500-76e84d85f701","2025-01-27T14:53:33.000+02:00","2026-04-22T06:45:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,TAG-SIC,Linux Server,Cloud Agent","53.0"
"357904904","343915750","vprpnangx1","","00:50:56:90:12:0f","10.41.20.26","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e f2 88 64 36 d2-70 58 1c 2a eb 53 fb cc","No Asset Tag","'+02:00","2026-02-25T15:49:56.000+02:00","cybreconcile","Cloud Agent","5e905740-f89f-4e67-a259-7f1f87138406","2025-09-08T16:12:44.000+02:00","2026-04-22T06:45:09.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-NGINX DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Péage,Production","140.0"
"191420514","239726721","viboobsql2.sanef.groupe","","00:50:56:90:7b:74","10.41.22.198,10.41.22.199","fe80::250:56ff:fe90:7b74","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f0 cd 09 15 29 ed-6e c7 9a 6d ee ef 3c b3","No Asset Tag","'+02:00","2026-03-16T12:41:55.000+02:00","cyblecemo","Cloud Agent","aa979cae-f80b-4415-9145-4dbfffb99ae3","2023-10-04T17:46:12.000+02:00","2026-04-22T06:45:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,ServersInCyberark,OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Production,flux_libre","141.0"
"160222097","213243642","vrsupbmbi1.sanef.groupe","","00:50:56:82:91:43","10.45.0.197","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 a7 cb 5e 11 9c 25-8d 4c 0d c0 79 38 21 0c","No Asset Tag","'+02:00","2026-03-11T12:02:03.000+02:00","cybadmsys","Cloud Agent","13fa4ab4-5e50-4785-b908-e76cd337b081","2023-02-22T13:01:31.000+02:00","2026-04-22T06:43:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,DSI,Centreon,Recette","120.0"
"382479156","353996573","spbckmmag1.sanef.groupe","","04:bd:97:3e:78:08","192.168.109.8","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C240 M5 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","31534","Cisco Systems, Inc. C240M5.4.3.2g.0.0515250954 05/15/2025","WZP25500WKR","Unknown","'+02:00","2025-12-09T16:15:11.000+02:00","root","Cloud Agent","99d35416-a255-4046-b5b6-7e8255676814","2025-12-08T14:34:11.000+02:00","2026-04-22T06:42:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","330.0"
"331046153","333860641","vrameahtp2.sanef-rec.fr","","00:50:56:9c:3d:a0, 00:50:56:9c:5a:88","10.45.4.51,10.45.2.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 4c 0a 64 79 11 d2-9e cb 7e de 44 01 97 c7","No Asset Tag","'+02:00","2026-04-02T16:34:16.000+02:00","cybintsys","Cloud Agent","a855257a-e734-4924-8b5c-8061f3926d70","2025-06-05T08:35:50.000+02:00","2026-04-22T06:42:31.000+02:00","x86_64","4","SCA,VM,GAV","DEX,Sextan,Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent","284.0"
"284376860","309489722","vtdsibpmm1.sanef-rec.fr","","00:50:56:9c:a2:ab","10.45.1.175","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 94 30 91 a1 96 cf-bd 52 ef f8 df 16 ca 87","No Asset Tag","'+02:00","2026-01-20T11:44:37.000+02:00","cybadmbdd","Cloud Agent","d0c1bf3d-4dcd-4749-861b-efbe8da5ebda","2024-12-05T13:41:18.000+02:00","2026-04-22T06:42:12.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,PATRIMOINE,OS-LIN-SRV DYN","138.0"
"131274982","193320475","vpaiiamap1","","00:50:56:82:de:45","10.30.12.123","fe80::1afe:7fb8:56b0:ac9f","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 07 5f 63 f0 05 d9-8e 0c 2a e2 67 26 e7 96","No Asset Tag","'+02:00","2026-03-10T15:02:52.000+02:00","cybreconcile","Cloud Agent","a8ecaddb-8789-40d3-820d-9da6f7a543ed","2022-07-12T15:41:44.000+02:00","2026-04-22T06:41:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE,Production,DSI,Centreon,ServersInCyberark,Outils prod (Monitoring, NMS, gestion de parc)","453.0"
"231613074","259382223","vvbotrssc1.sanef-rec.fr","","00:50:56:9c:03:e2","192.168.21.165","fe80::250:56ff:fe9c:3e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15761","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c b6 4e e1 e9 7c b6-e8 0e c2 e3 8c 86 0c 3a","No Asset Tag","'+02:00","2026-03-12T18:03:24.000+02:00","cybreconcile","Cloud Agent","4edf4a44-6734-48fe-8837-ff52373820f2","2024-04-22T17:39:57.000+02:00","2026-04-22T06:41:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server","147.0"
"231533960","259283850","lpemvaste6","","00:17:a4:77:1c:14, 00:17:a4:77:1c:10","192.168.102.113,192.168.101.113","fe80::217:a4ff:fe77:1c14,fe80::217:a4ff:fe77:1c10","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000702","","'+02:00","2025-06-30T14:48:56.000+02:00","lamhajeb-ext","Cloud Agent","9eda4a28-4e0a-4ae4-adfe-e74a78ee0ab5","2024-04-22T11:32:19.000+02:00","2026-04-22T11:53:57.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","676.0"
"200350065","244309166","vppeabbst3.sanef.groupe","","00:50:56:90:ef:2a","10.41.20.55","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f1 ea 1b 11 82 89-0d 71 98 b5 13 7b 53 58","No Asset Tag","'+02:00","2026-04-02T09:48:26.000+02:00","cybreconcile","Cloud Agent","b976e995-c0d3-471d-9e5f-ac8132228163","2023-11-22T13:43:16.000+02:00","2026-04-22T06:41:10.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,Flux Libre,OS-LIN-SRV DYN,DSI,FreeFlow,flux_libre,Production,BOOST,Cloud Agent,Linux Server","332.0"
"305794746","322889283","vrgesbref1.sanef-rec.fr","","00:50:56:9c:8a:87","10.45.13.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c a1 0a 88 b1 57 aa-49 97 5e a7 53 f7 e2 8a","No Asset Tag","'+02:00","2026-02-23T13:29:00.000+02:00","cybadmbdd","Cloud Agent","809fe4b8-391b-4a1d-a017-71508b1cc939","2025-03-06T19:33:16.000+02:00","2026-04-22T06:41:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Recette,BDD,Linux Server,Cloud Agent","54.0"
"130584303","192833659","vmamdpmv2.sanef.groupe","","00:50:56:82:ef:a5","10.45.2.129","fe80::8c25:8c4e:dce7:4fc3","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 11 9d 4d e8 01 09-dc 3a 84 d6 ff 43 24 bd","No Asset Tag","'+02:00","2025-01-21T11:19:37.000+02:00","cybexpapp","Cloud Agent","fe51c1b9-c5ea-493c-8764-987808a4713d","2022-07-07T11:41:37.000+02:00","2026-04-22T06:41:00.000+02:00","x86_64","5","SCA,VM,PM,GAV","Recette,VRF_INCONNUE,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,Trafic,Obsolete,MIVISU","627.0"
"202413299","245310748","vrameasxt2.sanef-rec.fr","","00:50:56:9c:a2:af, 00:50:56:9c:bb:53","10.45.2.61,10.45.4.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8f f0 1e b4 8f 5c-dc 45 a1 02 f8 0e 75 a0","No Asset Tag","'+02:00","2026-04-20T18:47:53.000+02:00","cybadmsys","Cloud Agent","8d3e033a-62fd-4f26-8345-fb6e6e199652","2023-12-04T17:29:25.000+02:00","2026-04-22T11:45:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Sextan,DEX,OS-LIN-SRV DYN","682.0"
"130580517","192830533","lamtinf1.sanef.groupe","","00:17:A4:77:14:E2","10.45.7.30","fe80::217:a4ff:fe77:14e2","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","24","2000","Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz","48262","","CZ3232T6JF","","'+02:00","2024-10-14T15:38:12.000+02:00","cybexpapp","Cloud Agent","2a5c3d9c-f404-46ca-ab8f-e5901e2a0842","2022-07-07T10:55:00.000+02:00","2026-04-22T06:40:50.000+02:00","x86_64","2","SCA,VM,GAV","log4j,Recette,Bases de Données,ORACLE,OS-LIN-SRV DYN,BDD-POS DYN,Obsolete,DSI,VRF_INCONNUE,Linux Server,Cloud Agent","350.0"
"236554069","265278425","vpechatre3.sanef.groupe","","00:50:56:90:7e:a5","10.42.16.135","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 b5 68 f5 b3 65 40-57 8b 1f 07 fa 7a 66 83","No Asset Tag","'+02:00","2025-11-18T15:42:54.000+02:00","cybreconcile","Cloud Agent","911a6144-d6a0-438f-a361-664ca817db49","2024-05-14T14:30:32.000+02:00","2026-04-22T06:40:04.000+02:00","x86_64","3","SCA,VM,PM,GAV","TALEND,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production","208.0"
"190550423","239193384","vvpeaabst2.sanef-rec.fr","","00:50:56:9c:ad:2b","10.45.10.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc c1 a9 d2 a8 f2-fd 37 22 ca ca ee 9b b3","No Asset Tag","'+02:00","2026-03-09T13:30:51.000+02:00","cybsupapp","Cloud Agent","793727e6-7348-4e4d-815b-3204aa28f0f3","2023-09-29T15:58:49.000+02:00","2026-04-22T06:40:03.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,MID-NGINX DYN,BDD-ELA DYN,FreeFlow,flux_libre,Flux Libre,Cloud Agent,Linux Server","141.0"
"213123476","250792401","vpbckangw3","","00:50:56:9a:29:e0","10.44.3.164","fe80::250:56ff:fe9a:29e0","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 8d f5 87 6d da da-86 27 fa e8 f3 ed a6 57","No Asset Tag","'+02:00","2026-02-03T17:03:01.000+02:00","tbaad-ext","Cloud Agent","f0d76d38-def3-4a0b-91ce-86b0881e830e","2024-02-01T12:32:22.000+02:00","2026-04-22T06:39:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","53.0"
"279163184","304713615","vrdecasas4.sanef.groupe","","00:50:56:82:b2:63","10.45.1.7","fe80::250:56ff:fe82:b263","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a9 4e c6 b7 8e a0-a8 88 9d 5b bc b3 0e 55","No Asset Tag","'+02:00","2026-03-23T11:58:16.000+02:00","cybadmsys","Cloud Agent","5b8b3dc2-a47e-4751-95b1-6252c80a5b64","2024-11-14T15:54:25.000+02:00","2026-04-22T06:37:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,Recette","54.0"
"131275015","193320477","vpaiiapol2","","00:50:56:82:f3:e9","10.30.12.126","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 18 a7 f2 2e b1 a5-a1 1c 21 89 fe 28 2e 7f","No Asset Tag","'+02:00","2024-06-03T14:34:52.000+02:00","cybreconcile","Cloud Agent","579cf1d3-e95b-4537-9e26-c2c734e321dc","2022-07-12T15:43:36.000+02:00","2026-04-22T11:52:05.000+02:00","x86_64","4","SCA,VM,PM,GAV","Centreon,Sans,Production,Outils prod (Monitoring, NMS, gestion de parc),Cloud Agent,Linux Server,DSI,Obsolete,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,MID-NGINX DYN,VRF_INCONNUE","462.0"
"332275914","336780122","vpameaquo1","","00:50:56:90:f9:d1","10.100.16.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d6 b9 69 7f 0f 02-6c 35 67 7f 8f 01 af d7","No Asset Tag","'+02:00","2025-10-29T12:02:18.000+02:00","cybsupsys","Cloud Agent","a8802b8e-5c87-4fcc-bff6-c2139fc7c98c","2025-06-10T12:45:37.000+02:00","2026-04-22T11:53:45.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Production,Linux Server,Cloud Agent,Sextan","279.0"
"196050820","242054828","vpbotasim1.sanef.groupe","","00:50:56:90:85:61","10.41.23.31","fe80::250:56ff:fe90:8561","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 94 48 64 86 40 f6-73 5a 9d 2b 20 3f bc 65","No Asset Tag","'+02:00","2026-04-16T10:28:21.000+02:00","cybadmsys","Cloud Agent","b9bd1b16-bc99-45b3-97c0-fd3a002ddf14","2023-10-27T17:19:03.000+02:00","2026-04-22T06:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,flux_libre,Production,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0"
"186210649","236667824","vmampsxt5","","00:50:56:82:d1:65, 00:50:56:82:b2:9b, 00:50:56:82:57:b5","10.43.4.29,10.41.40.29,10.43.40.29","fe80::250:56ff:fe82:d165,fe80::250:56ff:fe82:b29b,fe80::250:56ff:fe82:57b5","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 2d 25 44 81 97-f3 90 5f 38 8f 3c 46 ca","No Asset Tag","'+02:00","2025-11-24T16:47:40.000+02:00","cybreconcile","Cloud Agent","140e696a-12df-41e9-bebd-8eca61f63123","2023-09-05T12:01:03.000+02:00","2026-04-22T11:52:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Obsolete,DEX,Cloud Agent,Linux Server,log4j,Sextan","698.0"
"379524208","352874785","vpcybapta1.sanef.groupe","","00:50:56:9c:1c:c6","10.44.1.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","","INTEL(R) XEON(R) GOLD 6526Y","15731","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c b1 0d 1b 59 dd 19-7a 4f 80 15 f9 ef 4a 5e","No Asset Tag","'+02:00","2026-03-24T11:13:51.000+02:00","cybreconcile","Cloud Agent","6ea81e60-f188-45fb-8176-8e01a9e42ff3","2025-11-26T12:58:05.000+02:00","2026-04-22T11:40:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN","335.0"
"196660337","242432944","vpbooaboo1.sanef.groupe","","00:50:56:90:74:ba","10.41.22.137","fe80::250:56ff:fe90:74ba","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 50 d8 89 7a c9 e8-f2 81 33 00 22 be 20 3d","No Asset Tag","'+02:00","2026-04-07T10:28:49.000+02:00","cybadmroot","Cloud Agent","5f9569f7-9009-4dac-bed8-28b03f8a1eba","2023-10-31T18:27:13.000+02:00","2026-04-22T06:36:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,FreeFlow,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","140.0"
"200009562","244159730","vppeahbst3.sanef.groupe","","00:50:56:90:76:4a","10.41.20.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 8b 75 0d 58 d2 29-46 fe 8f e0 6b 86 b7 f0","No Asset Tag","'+02:00","2026-04-02T10:29:13.000+02:00","cybreconcile","Cloud Agent","e8a2fd6f-d9d0-4f1e-b3fe-741f89579b14","2023-11-20T18:38:20.000+02:00","2026-04-22T11:50:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,FreeFlow,Cloud Agent,Linux Server,flux_libre,OS-LIN-SRV DYN,Flux Libre","334.0"
"176095383","229734617","vvbooaori2.sanef-rec.fr","","00:50:56:9c:11:3b","10.45.6.80","fe80::250:56ff:fe9c:113b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 9a 63 d4 9f 6d 8e-61 ea 72 e7 61 59 49 4b","No Asset Tag","'+02:00","2026-03-09T15:41:40.000+02:00","podman_app","Cloud Agent","9a0647fa-be42-4676-b0ca-31699173ba60","2023-06-27T15:28:30.000+02:00","2026-04-22T11:51:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,Flux Libre,FreeFlow,Recette,flux_libre","140.0"
"340062892","336780156","lpamebrac3.sanef.groupe","","ee:50:33:80:00:92, ee:50:33:80:00:96","10.41.41.112,10.41.41.116,10.41.41.120,10.43.4.140","fe80::ec50:33ff:fe80:92,fe80::ec50:33ff:fe80:96","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGCIOJ00N","/n/Bios Asset Tag :","'+02:00","2025-11-19T17:26:14.000+02:00","cybreconcile","Cloud Agent","a89c2ad5-34c7-41b1-8205-6946fb9e1015","2025-07-08T10:21:21.000+02:00","2026-04-22T06:36:19.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,Amelie,Production,OS-LIN-SRV DYN","337.0"
"131262266","193313201","lampadv1.serveur.est.sanef.fr","","00:17:A4:77:00:94","10.30.11.52","","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","8","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","28143","","VCX000000D","","'+02:00","2025-04-02T07:34:32.000+02:00","cybreconcile","Cloud Agent","d09c96f9-ad88-46bd-855b-1e92eb7d3ad2","2022-07-12T14:04:21.000+02:00","2026-04-22T11:32:07.000+02:00","x86_64","2","SCA,VM,GAV","DEX,BDD-POS DYN,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Obsolete,ADV-U,Cloud Agent,Linux Server,Sans,Production,Gestion commerciale","350.0"
"255415529","294877240","lramebrac2.sanef-rec.fr","","3e:33:fb:a0:00:d0, 3e:33:fb:a0:00:d4","10.45.2.111,10.45.2.115,10.45.2.118,10.45.5.7,169.254.17.171","fe80::3c33:fbff:fea0:d0,fe80::3c33:fbff:fea0:d4","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63823","HPE I44 06/13/2025","VCGBW5200Z","/n/Bios Asset Tag :","'+02:00","2026-04-20T11:58:34.000+02:00","cybsecope","Cloud Agent","ddca9e7a-7c2d-4c10-b291-9d97f63ca0ed","2024-08-02T16:53:13.000+02:00","2026-04-22T11:49:42.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Amelie,Sextan,Recette","508.0"
"295082073","316880283","vpdepaast1.sanef.groupe","","00:50:56:90:cb:02","10.41.40.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 82 82 88 55 c1 62-ca dc 83 58 e4 67 9a 31","No Asset Tag","'+02:00","2026-01-21T16:30:27.000+02:00","cybadmroot","Cloud Agent","6ce50ffc-ab6f-4c7e-ba3a-255e14dd5054","2025-01-27T13:04:21.000+02:00","2026-04-22T11:51:50.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Production,Cloud Agent,Linux Server","140.0"
"279169027","304713053","vrdecasas1.sanef.groupe","","00:50:56:82:b0:e2","10.45.1.4","fe80::250:56ff:fe82:b0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 69 6b 63 46 e2 ad-5f 6a 83 36 0b fa 28 da","No Asset Tag","'+02:00","2026-03-23T11:52:39.000+02:00","cybadmsys","Cloud Agent","b88811e0-cc8a-4ee1-bf37-49d372569e65","2024-11-14T15:48:31.000+02:00","2026-04-22T06:35:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,OS-LIN-SRV DYN","137.0"
"236300233","264488384","lpemvbaemv1.sanef.groupe","","00:17:a4:77:1c:9c, 00:17:a4:77:1c:6c","192.168.103.106,192.168.101.106","fe80::217:a4ff:fe77:1c9c,fe80::217:a4ff:fe77:1c6c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070E","","'+02:00","2024-04-18T14:38:57.000+02:00","oracle","Cloud Agent","84a94940-e1b1-4d34-a2ad-001fb49443b0","2024-05-13T14:58:45.000+02:00","2026-04-22T11:41:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,EMV,PCI Bunker EMV,Production,PCI Bunker EMV - VLAN Stecard v17","682.0"
"130587922","192835850","vrtraagas1","","00:50:56:82:53:63","10.45.1.68","fe80::250:56ff:fe82:5363","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","7982","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 06 aa 79 c1 4c bd-ed fa 16 f4 63 a8 52 0b","No Asset Tag","'+02:00","2024-12-04T17:32:24.000+02:00","cybastsys","Cloud Agent","7f6c1baa-fc5a-4c14-aa51-a16daa713dc6","2022-07-07T11:58:07.000+02:00","2026-04-22T11:41:36.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,MID-APACHE-TOMCAT DYN,Gaspar,Obsolete,Recette,Exploitation,DEX","520.0"
"196043340","242053537","vpbotatsp1.sanef.groupe","","00:50:56:90:c9:33","10.41.23.26","fe80::250:56ff:fe90:c933","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5d c7 1c 15 78 d6-37 84 9b 58 0c b4 39 c7","No Asset Tag","'+02:00","2026-04-16T09:42:23.000+02:00","cybreconcile","Cloud Agent","1f745a43-a175-4dbd-9a53-4c91c580be6a","2023-10-27T17:08:10.000+02:00","2026-04-22T06:34:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Flux Libre","141.0"
"324359363","330213430","vpgawbpgs1","","00:50:56:90:03:b9","10.42.16.18","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 d9 70 c1 ad cb 57-a4 02 b9 79 bd d9 62 3e","No Asset Tag","'+02:00","2026-03-19T15:40:40.000+02:00","cybreconcile","Cloud Agent","013e3747-9807-4e34-ab9a-05dd8f2c2731","2025-05-13T12:04:37.000+02:00","2026-04-22T11:44:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server","144.0"
"279142399","304713252","vrdecasas5.sanef.groupe","","00:50:56:82:39:c1","10.45.1.8","fe80::250:56ff:fe82:39c1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","63888","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e bb 86 a2 10 d4-d1 9b 68 4c 1c ad 1a f1","No Asset Tag","'+02:00","2026-03-23T11:53:58.000+02:00","cybadmsys","Cloud Agent","865bfabf-855d-4cbf-8cf8-bb525d7bebd1","2024-11-14T15:51:08.000+02:00","2026-04-22T06:33:38.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN","335.0"
"373217282","350071907","vpameasxt4.sanef.groupe","","00:50:56:90:88:7a, 00:50:56:90:2c:f7","10.43.4.28,10.41.41.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 66 0c 01 8e 76 5e-7a f3 dc b7 8e 3c f0 98","No Asset Tag","'+02:00","2025-11-12T12:14:33.000+02:00","cybreconcile","Cloud Agent","a2764d3f-f9b0-4ed4-b1db-9093bb564a44","2025-10-31T12:09:44.000+02:00","2026-04-22T06:33:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","Sextan,Linux Server,Cloud Agent,OS-LIN-SRV DYN,Production","662.0"
"160118702","213073412","vrsupacen1.sanef.groupe","","00:50:56:82:61:85","10.45.0.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","3665","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 a5 ad 02 11 fa 62-d7 b4 b7 7b cb 4c c7 da","No Asset Tag","'+02:00","2026-03-11T12:35:33.000+02:00","cybadmsys","Cloud Agent","870de1da-7a09-4dfc-8dbc-005ee6213ec6","2023-02-21T16:18:53.000+02:00","2026-04-22T11:37:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,OS-LIN-SRV DYN,Production,flux_libre,Flux Libre,MID-NGINX DYN,MID-APACHE-TOMCAT DYN","142.0"
"196660268","242432305","vpbooosea1.sanef.groupe","","00:50:56:90:2a:7c","10.41.22.135","fe80::250:56ff:fe90:2a7c","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 34 7c c7 7b 02 91-50 1e 03 6e f3 bf 06 1c","No Asset Tag","'+02:00","2026-04-07T14:56:17.000+02:00","cybreconcile","Cloud Agent","845addd5-d249-4429-a295-0884f8d27548","2023-10-31T18:19:56.000+02:00","2026-04-22T11:50:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,FreeFlow","334.0"
"196660165","242432941","vpbooaori1.sanef.groupe","","00:50:56:90:a0:1d","10.41.22.139","fe80::250:56ff:fe90:a01d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 74 23 cd 47 6f b2-af db be 5a b4 1b cc 01","No Asset Tag","'+02:00","2026-04-07T15:38:31.000+02:00","cybreconcile","Cloud Agent","9d284d8e-c47d-44ae-acfe-5cc543379c58","2023-10-31T18:27:13.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,flux_libre,Production,OS-LIN-SRV DYN,Flux Libre","336.0"
"332275911","333860642","vpameahtp2.sanef.groupe","","00:50:56:90:9d:bb, 00:50:56:90:92:0d","10.41.41.51,10.43.4.38","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11729","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 57 9e 98 96 4a-f1 28 f2 17 77 ff 2b ef","No Asset Tag","'+02:00","2025-10-29T10:52:43.000+02:00","cybreconcile","Cloud Agent","8d17b0bd-7464-48d9-b889-b0cf6d6a589c","2025-06-10T12:45:05.000+02:00","2026-04-22T11:32:50.000+02:00","x86_64","4","SCA,VM,GAV","Production,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,Sextan","278.0"
"373211951","350071560","vpameasxt3.sanef.groupe","","00:50:56:90:12:34, 00:50:56:90:02:9e","10.41.41.62,10.43.4.27","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f0 5c bc 40 22 b0-70 47 58 4d 4a ec 08 11","No Asset Tag","'+02:00","2025-11-12T12:04:43.000+02:00","cybreconcile","Cloud Agent","3ac94f2b-c68d-4251-9cb8-c5b3da4b14a7","2025-10-31T12:07:15.000+02:00","2026-04-22T11:53:00.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Sextan,Production,Linux Server,OS-LIN-SRV DYN","662.0"
"229382460","258006652","vpsupbmbi1.sanef.groupe","","00:50:56:8d:00:e3","10.44.5.101","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","23825","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d c9 2f 47 11 62 e6-0a 5e f6 34 dd d8 f1 3a","No Asset Tag","'+02:00","2026-03-30T11:45:46.000+02:00","cybadmroot","Cloud Agent","58c27d31-4492-4469-b10e-1d1828777cb1","2024-04-11T16:46:47.000+02:00","2026-04-22T11:30:06.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,flux_libre,Flux Libre,Cloud Agent,Linux Server,OS-LIN-SRV DYN","60.0"
"338807292","336780149","vpintaprx2.sanef.groupe","","00:50:56:82:0d:77","192.168.20.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 46 17 6e 3f 09 37-1d fd 03 38 fd fb 2e 79","No Asset Tag","'+02:00","2026-04-15T14:51:46.000+02:00","cybreconcile","Cloud Agent","f6767056-31a2-4cd1-9c8a-288474c49fce","2025-07-03T10:02:20.000+02:00","2026-04-22T11:43:03.000+02:00","x86_64","4","SCA,VM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Gestion institutionnel,TAG-SRVEXPOSEINTERNET,High,VRF_INCONNUE,Production,ServersInCyberark","132.0"
"279112238","304690920","vpemvasat1.sanef.groupe","","00:50:56:86:ba:94","192.168.100.141","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 06 3f cb fb b5 ec dd-00 c2 5f a2 97 91 c1 69","No Asset Tag","'+02:00","2025-11-18T17:20:47.000+02:00","root","Cloud Agent","9e455e15-7fc3-4b0a-9b65-70628a2f0240","2024-11-14T12:47:47.000+02:00","2026-04-22T11:52:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-LIN-SRV DYN","335.0"
"139276377","198335416","vpdecasas7.sanef.groupe","","00:50:56:82:3f:e9","10.30.11.155","","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257964","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 e7 36 38 3e d1 bc-ec 48 12 4d 54 f9 09 92","No Asset Tag","'+02:00","2026-03-25T11:48:03.000+02:00","cybreconcile","Cloud Agent","2f728387-f3ea-4e45-b052-1181cdede9fd","2022-09-08T09:19:40.000+02:00","2026-04-22T11:37:59.000+02:00","x86_64","3","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,Production,Finances Comptabilité / Consolidation,Cloud Agent,Linux Server,SAS,DSI,VRF_INCONNUE,Obsolete","71.0"
"190915657","239409823","vvaflsmtp1.sanef-rec.fr","","00:50:56:9c:ea:e1, 1a:50:83:10:5f:17","10.45.0.231,10.88.0.1","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 4d 5b 62 d1 1d 4d-5c 8e 04 15 7b 70 f8 f3","No Asset Tag","'+02:00","2026-03-09T15:29:49.000+02:00","cybsupsys","Cloud Agent","e6c3ed13-fe7a-4dd5-adf7-dafc493ace10","2023-10-02T15:20:36.000+02:00","2026-04-22T11:43:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,flux_libre,Recette,FreeFlow","142.0"
"131405556","193423788","vmampdif2.sanef.groupe","","00:50:56:82:22:6E","10.41.40.121","fe80::250:56ff:fe82:226e","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 09/17/2015","VMware-42 02 6b e5 f5 8f 41 09-6e 8e 8b 0d ad 3e ff 6b","No Asset Tag","'+02:00","2018-09-25T12:04:43.000+02:00","cybreconcile","Cloud Agent","677ad417-17ef-4c5d-baa3-df481b654afd","2022-07-13T10:27:16.000+02:00","2026-04-22T06:27:01.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Obsolete,VRF_TRAFIC_DC,Sans,Trafic,Production,Sextan,Cloud Agent,Linux Server","693.0"
"202418413","245312456","vrameasxt4.sanef-rec.fr","","00:50:56:9c:72:5e, 00:50:56:9c:e0:9a","10.45.4.63,10.45.2.63","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 1c 8a 86 1a 6c 10 8d-5a bd 34 fd 12 d8 29 bc","No Asset Tag","'+02:00","2026-04-20T15:35:19.000+02:00","cybadmsys","Cloud Agent","3b64fcf3-897c-4344-a6fe-988e0d1200bd","2023-12-04T17:50:25.000+02:00","2026-04-22T11:32:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Recette,DEX,Cloud Agent,Linux Server,Sextan","95.0"
"175025285","228996977","vrairahtp1.sanef.groupe","","00:50:56:82:7e:b4","10.43.255.19","fe80::1162:faac:f084:2df3","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","16017","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 24 2b 85 10 aa 99-9a 38 33 26 87 ab 0c 4a","No Asset Tag","'+02:00","2026-04-21T10:08:07.000+02:00","cybsecope","Cloud Agent","6ce91fb2-96e6-46d6-a826-619283611851","2023-06-19T15:39:54.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette,DFIN,Satisf'aire","68.0"
"131396612","193418131","vptraatpf1.sanef.groupe","","00:50:56:82:59:9c","192.168.40.10","fe80::7fff:8231:ebd9:a751","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","5966","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d a0 20 4c 72 cf 33-f0 57 b9 fc e5 89 2a e3","No Asset Tag","'+02:00","2025-01-21T11:12:20.000+02:00","cybreconcile","Cloud Agent","4d179ac2-b564-4c18-a3f8-792967439925","2022-07-13T09:35:23.000+02:00","2026-04-22T11:30:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Temps de parcours,VRF_INCONNUE,ServersInCyberark,DMZ,Trafic,Sans,Production,Obsolete,DEX,TAG-SRVEXPOSEINDIRECT","491.0"
"325026193","331288660","viaflarat1.sanef.groupe","","00:50:56:9c:f8:a4","10.46.34.78","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c fc a9 c7 79 3d 47-d0 96 20 15 f9 73 ce f7","No Asset Tag","'+02:00","2026-03-19T16:15:58.000+02:00","root","Cloud Agent","36a1809e-1763-4a31-b386-905435d4e693","2025-05-15T17:10:18.000+02:00","2026-04-22T11:40:35.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,flux_libre,Linux Server,Cloud Agent","139.0"
"190553349","239196400","vvpeaabst1.sanef-rec.fr","","00:50:56:9c:08:26","10.45.10.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cb 7a b5 04 04 c1-b5 e0 a7 9f 70 ec 14 12","No Asset Tag","'+02:00","2026-03-12T10:14:24.000+02:00","cybsupapp","Cloud Agent","d44ce2e4-deed-4113-ae51-ec421311d875","2023-09-29T16:41:34.000+02:00","2026-04-22T11:40:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Recette,Cloud Agent,Linux Server,MID-NGINX DYN,OS-LIN-SRV DYN,BDD-ELA DYN,Flux Libre,flux_libre","139.0"
"213122768","250788889","vpbckangw1","","00:50:56:82:aa:33","192.168.18.52","fe80::250:56ff:fe82:aa33","Linux / Server","Oracle Linux 8.9","8.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7652","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8a 48 d9 af aa 30-01 51 85 5a 18 e4 fc fb","No Asset Tag","'-04:00","2026-02-03T16:10:08.000+02:00","tbaad-ext","Cloud Agent","40ee046b-187d-4fd9-8cda-b0f1c7cbea27","2024-02-01T12:02:36.000+02:00","2026-04-22T11:42:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","53.0"
"131270182","193318816","vpaiiacbi1.sanef.groupe","","00:50:56:82:4c:e2","10.30.12.124","fe80::71a3:5845:25c1:d5e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7a 02 c5 12 ef 66-37 96 1a c6 41 9c 62 c6","No Asset Tag","'+02:00","2025-12-11T09:49:04.000+02:00","cybreconcile","Cloud Agent","06beef37-3e5b-49f1-9e5d-6ff4b90a9e39","2022-07-12T15:24:19.000+02:00","2026-04-22T11:34:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),Centreon,DSI,ServersInCyberark,Obsolete,Cloud Agent,Linux Server","486.0"
"139157881","198270080","vmampgtc1","","00:50:56:82:1E:CE, 00:50:56:82:72:1A, 00:50:56:82:3C:2F","10.41.40.85,10.43.40.85,10.43.4.85","fe80::250:56ff:fe82:1ece,fe80::250:56ff:fe82:721a,fe80::250:56ff:fe82:3c2f","Linux / Server","Red Hat Enterprise Linux Server 6.6","6.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3e 4f fc fa cd ee-fa d2 f5 6e ae 60 92 36","No Asset Tag","'+02:00","2024-02-13T13:58:43.000+02:00","cybreconcile","Cloud Agent","0a831760-7e62-488d-a5fd-a0b37457aa00","2022-09-07T14:22:35.000+02:00","2026-04-22T11:27:32.000+02:00","x86_64","5","SCA,VM,PM,GAV","Production,Trafic,log4j,DEX,Cloud Agent,Linux Server,VRF_TRAFIC_DC,OS-LIN-SRV DYN,Obsolete,MIVISU","876.0"
"131396522","193416778","lpsimabkp1.sanef.groupe","","00:17:a4:77:10:80","10.30.10.143","fe80::217:a4ff:fe77:1080","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Computers / Server","HPE ProLiant BL460c G9 Server","32","2600","Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz","32044","HP I36 07/18/2022","CZ25430692","","'+02:00","2024-09-24T14:24:50.000+02:00","cybreconcile","Cloud Agent","ec29d36f-515f-4712-9cbe-11eaaceb8c88","2022-07-13T09:22:37.000+02:00","2026-04-22T11:38:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,VRF_INCONNUE,BDD-POS DYN,DSI,Obsolete,ServersInCyberark,TINA,Cloud Agent,Linux Server,Sécurité IT","348.0"
"173355805","227828333","vvbooaboo1.sanef-rec.fr","","00:50:56:9c:60:2d","10.45.6.71","fe80::250:56ff:fe9c:602d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 1e 4c 91 32 23 92-4d 16 d6 e7 80 b4 24 25","No Asset Tag","'+02:00","2026-03-12T10:55:28.000+02:00","cybsupsys","Cloud Agent","5c874b4e-09c9-42c7-9351-8e6aadea36d8","2023-06-07T10:45:07.000+02:00","2026-04-22T11:26:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,Recette,Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow","140.0"
"193616126","240982066","vibocs4as3.sanef.groupe","","00:50:56:90:c0:91","10.41.22.74","fe80::250:56ff:fe90:c091","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 54 fb 5c 8a d3 bc-bb e2 9e f5 f8 b3 df b6","No Asset Tag","'+02:00","2026-03-16T16:12:40.000+02:00","cybadmsys","Cloud Agent","2047bf18-8379-406f-b2c6-47b46730b8a5","2023-10-16T12:50:27.000+02:00","2026-04-22T11:28:36.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,ServersInCyberark,Cloud Agent,Linux Server,FreeFlow","141.0"
"175944074","229613622","vvbotapps1.sanef-rec.fr","","5a:b2:f5:21:73:e0, 66:da:ea:db:2d:fd, 9e:40:a5:7d:30:a7, 72:9d:3e:38:20:4e, 96:1c:12:66:47:14, 0e:cc:43:92:1d:27, de:35:46:9d:41:e6, 0e:eb:fb:10:1b:c6, 36:fd:35:ec:d7:1c, 7e:be:f9:ec:a2:b5, 42:4a:25:23:eb:f9, 4e:c4:59:c5:a8:81, ae:16:44:be:a1:01, de:4f:c5:a4:58:f1, 96:83:78:b9:89:23, 00:50:56:9c:8e:55, 66:95:c1:3f:bb:17, 92:1d:a9:36:ab:be, 06:ab:b7:72:fc:9d, 8e:56:56:d4:b3:c6, 5e:54:b6:92:e5:fe, 82:8d:74:92:d4:e8, 72:39:de:d9:6b:ae, a6:bd:f0:bd:97:7d, ba:77:c6:01:3b:eb, fa:90:88:3d:a3:4b, 6e:e6:7e:96:8a:f8, 96:20:64:6b:0b:83, 06:85:6a:09:74:0f, 4a:5f:ba:26:57:a2, 7a:e8:0a:45:5f:f0, d6:34:78:0f:a2:ec, ba:39:97:7f:b7:ab, d6:a8:60:b8:65:66, ce:af:ef:2f:e4:90","10.45.6.132,10.89.0.1","fe80::58b2:f5ff:fe21:73e0,fe80::64da:eaff:fedb:2dfd,fe80::9c40:a5ff:fe7d:30a7,fe80::709d:3eff:fe38:204e,fe80::941c:12ff:fe66:4714,fe80::ccc:43ff:fe92:1d27,fe80::dc35:46ff:fe9d:41e6,fe80::ceb:fbff:fe10:1bc6,fe80::34fd:35ff:feec:d71c,fe80::7cbe:f9ff:feec:a2b5,fe80::404a:25ff:fe23:ebf9,fe80::4cc4:59ff:fec5:a881,fe80::ac16:44ff:febe:a101,fe80::dc4f:c5ff:fea4:58f1,fe80::9483:78ff:feb9:8923,fe80::250:56ff:fe9c:8e55,fe80::6495:c1ff:fe3f:bb17,fe80::901d:a9ff:fe36:abbe,fe80::4ab:b7ff:fe72:fc9d,fe80::8c56:56ff:fed4:b3c6,fe80::5c54:b6ff:fe92:e5fe,fe80::808d:74ff:fe92:d4e8,fe80::7039:deff:fed9:6bae,fe80::a4bd:f0ff:febd:977d,fe80::b877:c6ff:fe01:3beb,fe80::f890:88ff:fe3d:a34b,fe80::6ce6:7eff:fe96:8af8,fe80::9420:64ff:fe6b:b83,fe80::485:6aff:fe09:740f,fe80::485f:baff:fe26:57a2,fe80::78e8:aff:fe45:5ff0,fe80::d434:78ff:fe0f:a2ec,fe80::b839:97ff:fe7f:b7ab,fe80::d4a8:60ff:feb8:6566,fe80::ccaf:efff:fe2f:e490","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 71 bf bc 9d 56 79-0e f0 9c b6 50 17 eb 18","No Asset Tag","'+02:00","2026-03-12T13:06:50.000+02:00","kapschsysuser","Cloud Agent","8ad8361b-5982-4bc5-a94d-1e7b9983cc0f","2023-06-26T15:47:34.000+02:00","2026-04-22T11:18:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Recette,Flux Libre,flux_libre","142.0"
"395875292","359658168","vpvsaagpu1.sanef.groupe","","00:50:56:90:44:a7","10.42.16.88","fe80::250:56ff:fe90:44a7","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 9f 4c ff e1 df 54-f8 ac 22 9f 1b 36 93 fe","No Asset Tag","'+02:00","2026-02-09T16:29:36.000+02:00","tbaad-ext","Cloud Agent","f80ffbce-5d09-48c4-8241-7a4f70df82d3","2026-01-29T15:08:09.000+02:00","2026-04-22T11:30:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Sauvegarde & Securite,Production,Cloud Agent,Linux Server","52.0"
"287925589","311535928","vrosapast1.sanef-rec.fr","","00:50:56:9c:90:bd","10.45.9.51","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c d4 4d 97 1c e9 37-05 1c b6 cc 9a 43 b7 8e","No Asset Tag","'+02:00","2026-02-16T12:22:34.000+02:00","cybintsys","Cloud Agent","8786ae31-c349-4265-b4f4-7521f48f3e77","2024-12-20T12:48:49.000+02:00","2026-04-22T11:48:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,Péage,OS-LIN-SRV DYN","142.0"
"163897942","219067810","vmcmdb2","","00:50:56:82:67:ef","10.30.11.108","fe80::250:56ff:fe82:67ef","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 24 82 65 20 26 53-d8 50 a7 83 3c 91 e6 08","No Asset Tag","'+02:00","2025-10-09T11:34:24.000+02:00","cybsupapp","Cloud Agent","13d7fa43-03d2-4257-90de-970af488eff8","2023-03-22T17:30:51.000+02:00","2026-04-22T11:41:49.000+02:00","x86_64","4","SCA,VM,PM,GAV","ITOP,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,DSI,Cloud Agent,Linux Server,Obsolete","695.0"
"395881501","359669099","vpvsaagpu2.sanef.groupe","","00:50:56:90:81:27","10.42.16.89","fe80::250:56ff:fe90:8127","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 1d e1 a2 93 aa 40-40 9b 9e b9 0b 99 91 af","No Asset Tag","'+02:00","2026-02-09T16:42:59.000+02:00","tbaad-ext","Cloud Agent","9fd19e40-e7b8-42f5-aed8-982a1bdc7ac2","2026-01-29T16:52:10.000+02:00","2026-04-22T11:37:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Sauvegarde & Securite,Gestion SAUVEGARDE,Production,Linux Server,Cloud Agent","52.0"
"213855634","251126075","spboomcla2.sanef.groupe","","5c:ba:2c:1c:93:f0","10.41.22.144","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 07/20/2023","CZ22410FK9","","'+02:00","2026-04-07T10:10:48.000+02:00","cybreconcile","Cloud Agent","1f64988b-4a4e-4b6d-9d53-756e174e72df","2024-02-05T19:47:48.000+02:00","2026-04-22T11:45:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production","338.0"
"238298215","269275297","lpemvbpemv1.sanef.groupe","","00:17:a4:77:1c:60, 00:17:a4:77:1c:88, 00:17:a4:77:1c:5c","192.168.103.104,169.254.0.158,172.16.0.104,192.168.101.104,192.168.101.144,192.168.101.149","fe80::217:a4ff:fe77:1c60,fe80::217:a4ff:fe77:1c88,fe80::217:a4ff:fe77:1c5c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64298","HP I36 07/18/2022","VCX000070C","","'+02:00","2024-05-30T21:57:35.000+02:00","grid","Cloud Agent","6d25ca0b-346f-4a3f-82d4-50f25127e16d","2024-05-21T17:02:06.000+02:00","2026-04-22T11:36:30.000+02:00","x86_64","4","SCA,VM,PM,GAV","EMV,PCI Bunker EMV,PCI Bunker EMV - VLAN Stecard v17,Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN","682.0"
"205522748","246920804","vposapels1.sanef.groupe","","00:50:56:90:0c:fd","10.41.20.61","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63888","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 ba 28 08 a0 ac 2c-d6 ec fd 00 ff 44 b1 4e","No Asset Tag","'+02:00","2026-02-26T12:21:32.000+02:00","cybsupsys","Cloud Agent","abbbb8e1-af16-43b6-830d-10d190572ded","2023-12-21T11:38:37.000+02:00","2026-04-22T11:44:17.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,DEX,Production,OS-LIN-SRV DYN,BDD-ELA DYN,Péage","144.0"
"411628774","365732726","vrsigbmut2.sanef-rec.fr","","52:54:00:60:28:61, 52:54:00:3f:83:03, 9e:0f:28:bc:ce:6f","10.45.15.69,192.168.17.6,192.168.16.24","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","16","","AMD EPYC 9J15 32-Core Processor","129433","SeaBIOS 1.16.0-4.module+el8.10.0+90665+904479bd 04/01/2014","Not Specified","Not Specified","'+02:00","2026-04-07T14:36:53.000+02:00","oracle","Cloud Agent","69bf36f3-9e6f-4de4-827d-dc008722d1e3","2026-03-26T13:16:44.000+02:00","2026-04-22T11:27:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","ENV-REC,Linux Server,Cloud Agent,MID-APACHE-TOMCAT DYN","339.0"
"301233552","320880027","vrdsismtp1.sanef-rec.fr","","00:50:56:9c:50:c5","192.168.19.52","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c fc d3 13 24 ea ef-6f 58 c0 fa 67 51 40 cd","No Asset Tag","'+02:00","2026-01-07T11:33:19.000+02:00","root","IP Scanner, Cloud Agent","babf489f-52c4-42d8-b05c-f467463617f2","2025-02-19T14:01:41.000+02:00","2026-04-22T11:48:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","331.0"
"192863549","240624322","vpeapnot1","","00:50:56:82:4d:dc","10.30.10.18","fe80::250:56ff:fe82:4ddc","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3950","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6b 47 d8 ae 71 ff-6c ee 75 c1 b7 be a6 6c","No Asset Tag","'+02:00","2025-02-13T11:19:35.000+02:00","cybreconcile","Cloud Agent","73f5b11f-a546-40b8-a307-d753e7772c88","2023-10-12T15:48:07.000+02:00","2026-04-22T11:47:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,E-notification,Cloud Agent,Linux Server,MID-NGINX DYN,DSI,Production,BDD-POS DYN,High,high priority","693.0"
"178993271","231838520","vpsasawrk6.sanef.groupe","","00:50:56:9c:6b:16","10.41.32.15","fe80::250:56ff:fe9c:6b16","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","257422","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 56 44 ed 88 44 e0-f7 e6 b4 eb 82 9a 28 6c","No Asset Tag","'+02:00","2026-03-25T16:10:23.000+02:00","cybreconcile","Cloud Agent","109fbed1-141a-4b3a-88ce-65b31b1e1501","2023-07-18T16:12:44.000+02:00","2026-04-22T11:17:28.000+02:00","x86_64","3","SCA,VM,PM,GAV","SAS,Cloud Agent,Linux Server,OS-LIN-SRV DYN,BDD-POS DYN,DSI","86.0"
"209168351","248970270","vibotarmq3.sanef.groupe","","00:50:56:90:0f:90","10.41.23.158","fe80::250:56ff:fe90:f90","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 68 b1 5a a7 17 8b-e5 28 2e af d3 cf da bd","No Asset Tag","'+02:00","2026-03-17T12:20:16.000+02:00","cybsupsys","Cloud Agent","7f06a272-3b9a-4598-93ee-c3a136206580","2024-01-12T12:54:08.000+02:00","2026-04-22T11:25:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production","141.0"
"267395255","298436653","vtdsiakib1.sanef-rec.fr","","00:50:56:9c:ec:57","10.45.1.172","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 2c ac cf 26 e1-3f 6e 36 2b aa 6a ff 95","No Asset Tag","'+02:00","2026-03-03T15:14:45.000+02:00","reboot","Cloud Agent","da01fbde-7fcb-4691-b112-a2cc1e3b6030","2024-09-24T12:01:57.000+02:00","2026-04-22T11:39:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Elasticsearch,Recette","141.0"
"207971781","248307124","vrdsiadev1","","00:50:56:9c:de:af","10.45.10.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c a3 37 d8 94 61 7a-c2 d4 bf cb a4 f4 bd 70","No Asset Tag","'+02:00","2026-04-14T10:48:32.000+02:00","cybadmsys","Cloud Agent","3c1cec60-ac26-4b9a-8401-d0e3145eddf1","2024-01-05T18:08:26.000+02:00","2026-04-22T11:32:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Collecte,Recette,DSI,Cloud Agent,Linux Server","141.0"
"156095898","209242562","vpdsiasat1.sanef.groupe","","00:50:56:82:33:07","192.168.18.20","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 7c cf b1 64 5d 44-24 bc 22 cf 2a 52 a3 fd","No Asset Tag","'+02:00","2026-04-14T14:36:27.000+02:00","cybreconcile","Cloud Agent","781bc3ee-8408-4601-8891-668f4ed84846","2023-01-19T15:24:23.000+02:00","2026-04-22T11:26:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Satellite,BDD-POS DYN,MID-APACHE-TOMCAT DYN,VRF_INCONNUE,OS-LIN-SRV DYN,Linux Server,Cloud Agent","65.0"
"379559158","352887680","spbckamag1.sanef.groupe","","04:bd:97:22:ca:c8, 04:bd:97:22:ca:c9","10.42.16.73,10.43.1.4","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Cisco Systems Unified Computing System C-Series C220 M5 Server","48","2200","Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz","191548","Cisco Systems, Inc. C220M5.4.3.2f.0.0514252137 05/14/2025","WZP26080HDN","Unknown","'+02:00","2025-11-26T17:35:24.000+02:00","root","Cloud Agent","6a1565b0-3862-4024-a918-18a25864c9d9","2025-11-26T15:07:15.000+02:00","2026-04-22T11:28:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0"
"143625294","201025860","vpemvaftp1.sanef.groupe","","00:50:56:98:13:35","192.168.100.109","fe80::250:56ff:fe98:1335","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","3950","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 18 4b 22 06 98 68 11-2c 33 e6 ed 3f c0 f2 ff","No Asset Tag","'+02:00","2025-12-04T12:46:29.000+02:00","root","Cloud Agent","4ee6e39f-a396-4c59-a9ad-c5c6b8f77409","2022-10-11T17:37:49.000+02:00","2026-04-22T11:36:27.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,VRF_INCONNUE,EMV,Cloud Agent,Linux Server,DEX,PCI Bunker EMV - VLAN Supervision/Admin","665.0"
"168848537","224865904","vpaiiapol3","","00:50:56:82:7d:cf","10.30.12.127","fe80::6500:6093:4e2e:6827,fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3789","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7e 18 f7 82 f4 a8-65 c8 d9 05 20 f9 71 0c","No Asset Tag","'+02:00","2024-06-04T10:41:08.000+02:00","cybreconcile","Cloud Agent","c5ad794a-ec19-4022-9be6-b53cd7003725","2023-05-03T11:30:20.000+02:00","2026-04-22T11:27:16.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-POS DYN,BDD-ELA DYN,BDD-SQL DYN,DSI,Obsolete,Cloud Agent,Linux Server,Centreon","456.0"
"208768095","248737409","vibotatvv1.sanef.groupe","","00:50:56:90:51:b1","10.41.23.155","fe80::250:56ff:fe90:51b1","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 e5 e9 51 88 68 17-13 bc c8 ea 85 1e c2 6d","No Asset Tag","'+02:00","2026-03-18T11:32:39.000+02:00","cybreconcile","Cloud Agent","da744d2b-c18a-457c-aa3b-5e97d0f12856","2024-01-10T11:26:20.000+02:00","2026-04-22T06:13:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,ServersInCyberark,flux_libre","140.0"
"182212643","233990529","svboomcla2.sanef-rec.fr","","5c:ba:2c:1c:89:20","10.45.6.73","fe80::5eba:2cff:fe1c:8920","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant DL380 G10 Server","40","2400","Intel(R) Xeon(R) Silver 4210R CPU @ 2.40GHz","95795","HPE U30 05/17/2022","CZ22410FK5","","'+02:00","2026-03-10T10:03:22.000+02:00","cybintsys","Cloud Agent","ab249ea2-f203-4bd5-8d07-cc4c26158159","2023-08-10T10:50:58.000+02:00","2026-04-22T11:34:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,Recette,OS-LIN-SRV DYN,flux_libre,Flux Libre","337.0"
"325669861","331288785","vpdsigrid1.sanef.groupe","","00:50:56:94:df:89","10.44.5.227","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","15761","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 a7 ca c0 f2 9a 1f-a1 20 9c eb 0b 2c 87 51","No Asset Tag","'+02:00","2026-02-10T11:30:28.000+02:00","cybsupsys","Cloud Agent","8660cd0c-33fd-4201-8f28-5474fdc93860","2025-05-19T10:14:52.000+02:00","2026-04-22T11:25:07.000+02:00","x86_64","2","SCA,VM,GAV","Production,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD","333.0"
"175420304","229255869","vvbotapps3.sanef-rec.fr","","fe:71:2f:ed:5c:ef, 6a:3f:1e:66:6c:7b, 62:b4:6e:6e:7e:ee, 76:5a:f7:4f:c5:3a, ca:66:d5:f8:08:2b, 92:aa:ce:62:32:40, b6:43:ad:ca:68:b5, 0e:ea:89:77:4e:56, 66:b6:4c:9e:40:61, 6a:1f:e1:49:23:06, 3a:ab:36:eb:12:0b, 92:84:a0:1b:71:f4, c6:c2:f9:78:eb:13, fa:d5:b6:d3:cb:5b, 00:50:56:9c:10:d9, 16:71:60:0d:53:b5, 0a:51:1a:48:09:5e, 66:4a:e1:48:e2:a4, e6:09:98:f0:0a:cc, 8e:83:72:aa:20:0c, fa:d4:64:6e:57:28, 1a:d5:20:b3:9b:06, 2a:6d:f7:fd:7f:fc, 76:70:85:64:17:f1, 92:ae:2c:a7:98:c7, ae:8e:df:3f:07:57, de:f2:1f:ee:2b:36, 6e:53:f9:87:42:a2, 72:a7:9d:6a:4d:25, 76:c2:8e:c3:e0:f4, 5a:32:3c:2f:b4:f0, 22:13:79:e4:24:64, 2e:67:94:e2:53:01, 8a:75:85:80:e0:e2","10.45.6.152,10.89.0.1","fe80::fc71:2fff:feed:5cef,fe80::683f:1eff:fe66:6c7b,fe80::60b4:6eff:fe6e:7eee,fe80::745a:f7ff:fe4f:c53a,fe80::c866:d5ff:fef8:82b,fe80::90aa:ceff:fe62:3240,fe80::b443:adff:feca:68b5,fe80::cea:89ff:fe77:4e56,fe80::64b6:4cff:fe9e:4061,fe80::681f:e1ff:fe49:2306,fe80::38ab:36ff:feeb:120b,fe80::9084:a0ff:fe1b:71f4,fe80::c4c2:f9ff:fe78:eb13,fe80::f8d5:b6ff:fed3:cb5b,fe80::250:56ff:fe9c:10d9,fe80::1471:60ff:fe0d:53b5,fe80::851:1aff:fe48:95e,fe80::644a:e1ff:fe48:e2a4,fe80::e409:98ff:fef0:acc,fe80::8c83:72ff:feaa:200c,fe80::f8d4:64ff:fe6e:5728,fe80::18d5:20ff:feb3:9b06,fe80::286d:f7ff:fefd:7ffc,fe80::7470:85ff:fe64:17f1,fe80::90ae:2cff:fea7:98c7,fe80::ac8e:dfff:fe3f:757,fe80::dcf2:1fff:feee:2b36,fe80::6c53:f9ff:fe87:42a2,fe80::70a7:9dff:fe6a:4d25,fe80::74c2:8eff:fec3:e0f4,fe80::5832:3cff:fe2f:b4f0,fe80::2013:79ff:fee4:2464,fe80::2c67:94ff:fee2:5301,fe80::8875:85ff:fe80:e0e2","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 98 7c 1e 8f 6d cd-c3 63 8b 97 4b 9a d5 4a","No Asset Tag","'+02:00","2026-03-10T11:33:54.000+02:00","cybreconcile","Cloud Agent","ee58c856-04d4-45ad-aec2-8c0f55a60aa7","2023-06-22T12:03:17.000+02:00","2026-04-22T11:29:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN,Flux Libre,FreeFlow","139.0"
"173079234","227652731","vdbocs4ci1.sanef-rec.fr","","00:50:56:9c:39:05","10.45.6.35","fe80::250:56ff:fe9c:3905","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 7e 2e 15 f6 00 f6-6d ce 57 37 cd 3d e9 2b","No Asset Tag","'+02:00","2026-03-11T10:02:59.000+02:00","cybsecope","Cloud Agent","a5d20a66-e192-4fe4-94e3-34c63f8033af","2023-06-05T15:26:04.000+02:00","2026-04-22T11:27:14.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,flux_libre,FreeFlow,Recette,Cloud Agent,Linux Server","141.0"
"177079686","230465871","vvbocbsap1.sanef-rec.fr","","00:50:56:9c:54:4e","10.45.6.11","fe80::250:56ff:fe9c:544e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","24","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","1031563","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 75 51 28 03 bd 0e-18 93 9f ca 34 6b 3b 72","No Asset Tag","'+02:00","2026-03-10T10:03:27.000+02:00","cybsupsys","Cloud Agent","9a1a955f-be95-44fd-8dfc-a8a925d23654","2023-07-04T13:41:39.000+02:00","2026-04-22T11:27:31.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,flux_libre,OS-LIN-SRV DYN","142.0"
"130583362","192832990","node4","","06:ac:38:d5:6c:36, 66:9d:a3:05:39:af, ee:ee:ee:ee:ee:ee, 00:50:56:82:4b:e9","169.254.25.10,10.233.74.64,10.45.2.59","fe80::649d:a3ff:fe05:39af,fe80::ecee:eeff:feee:eeee,fe80::88bd:f1a0:d07e:13cb","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 26 dc 16 dd 43 ed-90 35 76 d2 bb fc 48 d2","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybexpapp","Cloud Agent","43737328-a06b-4ffc-9b9e-0489c15501bf","2022-07-07T11:29:28.000+02:00","2026-04-22T11:36:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,MID-NGINX DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete","341.0"
"209164475","248967435","vibotapps3.sanef.groupe","","00:50:56:90:f8:0b","10.41.23.157","fe80::250:56ff:fe90:f80b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","16","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","48014","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 ec 31 7c aa e2 97-44 72 cf 1d cc 11 0e b3","No Asset Tag","'+02:00","2026-03-17T11:33:03.000+02:00","cybsecope","Cloud Agent","744f0797-94e8-4617-80b3-a63bf60fd012","2024-01-12T12:08:30.000+02:00","2026-04-22T11:17:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,FreeFlow,OS-LIN-SRV DYN,Cloud Agent,Linux Server","141.0"
"373212739","350071349","vpameasxt2.sanef.groupe","","00:50:56:90:8e:58, 00:50:56:90:70:52","10.41.41.61,10.43.4.26","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 a6 c0 e5 02 48 c2-f7 88 71 b6 0c 38 77 ba","No Asset Tag","'+02:00","2025-11-12T11:52:08.000+02:00","cybreconcile","Cloud Agent","5ab2192f-3bca-48c1-b8d4-b9ea4ab9b18c","2025-10-31T12:03:33.000+02:00","2026-04-22T11:23:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,Sextan","662.0"
"175950116","229618440","vvbocmedi1.sanef-rec.fr","","00:50:56:9c:a8:14","10.45.6.5","fe80::250:56ff:fe9c:a814","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31889","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 65 cc 9e 10 b2 48-94 af ee fb 9d 41 ee 4c","No Asset Tag","'+02:00","2026-03-11T16:03:12.000+02:00","cybsupsys","Cloud Agent","2d9b1322-79e0-4cb2-8c3f-fdb0c8effcce","2023-06-26T16:43:00.000+02:00","2026-04-22T11:33:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,Recette","332.0"
"161779682","215361432","vraiibpgs5","","00:50:56:82:41:dc","10.45.1.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 02 be f7 a5 b9 7b a3-da b9 35 50 fb 01 95 25","No Asset Tag","'+02:00","2026-03-03T15:14:51.000+02:00","reboot","Cloud Agent","f378f3c9-dbe2-472d-b010-c1337c3d82f6","2023-03-06T13:32:17.000+02:00","2026-04-22T11:32:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","DSI,OS-LIN-SRV DYN,MID-NGINX DYN,Recette,BDD,Cloud Agent,Linux Server","142.0"
"363247806","346032866","vpdsibarc1.sanef.groupe","","00:50:56:9c:de:e3","10.46.33.40","","Linux / Server","Red Hat Enterprise Linux 9.6","9.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 3d 25 ac 92 66 97-c6 8f 5b b1 dd 9d 1f 2f","No Asset Tag","'+02:00","2025-11-06T18:56:37.000+02:00","cybreconcile","Cloud Agent","67730d59-4c98-40aa-bdd1-310c6e65ec29","2025-09-26T11:59:43.000+02:00","2026-04-22T11:41:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,OS-LIN-SRV DYN,Linux Server,Cloud Agent,BDD,Production,MID-NGINX DYN","332.0"
"203204186","245721134","vpboobquo2.sanef.groupe","","00:50:56:90:33:87","10.100.16.15","fe80::250:56ff:fe90:3387","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 10 5f 2c c5 bc 88 bf-48 58 d5 42 e0 9e 4a 2b","No Asset Tag","'+02:00","2026-04-07T10:46:33.000+02:00","cybreconcile","Cloud Agent","01814ec3-d1be-40c5-b48d-04d73d99bf86","2023-12-08T12:27:55.000+02:00","2026-04-22T11:22:25.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,Linux Server,OS-LIN-SRV DYN,flux_libre,Flux Libre,FreeFlow","333.0"
"196660269","242432306","vpbooosea2.sanef.groupe","","00:50:56:90:b5:d7","10.41.22.136","fe80::250:56ff:fe90:b5d7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 77 7a 5c d6 e7 55-8d b3 4c 3e 11 ef e3 ef","No Asset Tag","'+02:00","2026-04-07T15:17:37.000+02:00","cybreconcile","Cloud Agent","22ea8bf7-5f22-47a1-a02a-8a0b44fc5b91","2023-10-31T18:19:57.000+02:00","2026-04-22T11:19:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Production,FreeFlow,OS-LIN-SRV DYN,Flux Libre,flux_libre","330.0"
"193621646","240986858","vpbocs4as2.sanef.groupe","","00:50:56:90:d1:09","10.41.22.9","fe80::250:56ff:fe90:d109","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 5a c4 2d 26 e0 f4-e8 5f c4 3c 26 0c a7 cc","No Asset Tag","'+02:00","2026-04-01T21:58:56.000+02:00","cybreconcile","Cloud Agent","cea903fb-fb33-4e40-a78d-f3ced159bd18","2023-10-16T13:31:56.000+02:00","2026-04-22T11:12:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,Cloud Agent,Linux Server,flux_libre,FreeFlow,OS-LIN-SRV DYN,Production","331.0"
"411327666","365612889","vplogbquo1.sanef.groupe","","00:50:56:90:0a:64","10.100.16.24","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","7680","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 10 86 00 a3 f0 0d 58-ef 0c b3 e5 e0 c5 41 8c","No Asset Tag","'+02:00","2026-04-07T12:16:39.000+02:00","cybsecope","Cloud Agent","acd91f63-4ab1-4dee-920a-41ec44d5e3ca","2026-03-25T12:08:38.000+02:00","2026-04-22T11:31:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server","66.0"
"193240995","240745929","vpbocmedi1.sanef.groupe","","00:50:56:90:b1:9e","10.41.22.7","fe80::250:56ff:fe90:b19e","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 02 d8 d4 6d e7 e7-cc 26 5c 77 77 cf 70 f0","No Asset Tag","'+02:00","2026-04-01T22:01:27.000+02:00","cybreconcile","Cloud Agent","e032846f-c40a-458e-a2f5-53ba09d3bd4a","2023-10-13T15:22:01.000+02:00","2026-04-22T11:33:07.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server,Production,flux_libre","335.0"
"243982908","283202091","vdechatal1.sanef.groupe","","00:50:56:82:30:b6","10.45.11.221","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f6 f9 39 60 6c 46-3e 4b a4 02 56 ea cf 37","No Asset Tag","'+02:00","2025-09-16T09:46:35.000+02:00","cybreconcile","Cloud Agent","b43b0a5f-09b3-481c-b906-bbc93f6bd4be","2024-06-14T10:54:00.000+02:00","2026-04-22T11:34:27.000+02:00","x86_64","3","SCA,VM,PM,GAV","BDD-POS DYN,Obsolete,DSI,Linux Server,Cloud Agent,TALEND,MID-APACHE-TOMCAT DYN","518.0"
"131404287","193423786","vmampdif1.sanef.groupe","","00:50:56:82:4A:DA","10.41.40.120","fe80::250:56ff:fe82:4ada","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 99 5a c1 b5 93 1a-27 3f 1b ac 65 09 01 f0","No Asset Tag","'+02:00","2023-01-11T21:02:33.000+02:00","cybreconcile","Cloud Agent","77c8d8e6-c0ea-4de7-93fc-1f6016d85d9f","2022-07-13T10:26:16.000+02:00","2026-04-22T11:36:26.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_TRAFIC_DC,DEX,Sextan,Obsolete,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,log4j,Cloud Agent,Linux Server,Trafic,Production,Sans","696.0"
"131275095","193321026","vpaiiapol7","","00:50:56:82:d9:3c","192.168.2.40","fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 49 7a 4e 1f c1 18-92 7b 7c 41 f3 55 9e 5c","No Asset Tag","'+02:00","2024-06-06T10:56:16.000+02:00","cybreconcile","Cloud Agent","4998fab1-c1eb-4e51-b9f9-5cb60e18cac8","2022-07-12T15:49:44.000+02:00","2026-04-22T11:26:29.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-APACHE-TOMCAT DYN,MID-NGINX DYN,BDD-SQL DYN,BDD-ELA DYN,BDD-POS DYN,VRF_INCONNUE,Obsolete,Centreon,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Cloud Agent,Linux Server","462.0"
"193238549","240744337","vpbocharg1.sanef.groupe","","00:50:56:90:bb:97","10.41.22.6","fe80::250:56ff:fe90:bb97","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 bf de 5d 4c 93 97-85 bf 03 81 b4 e4 13 dd","No Asset Tag","'+02:00","2026-04-01T22:00:29.000+02:00","cybreconcile","Cloud Agent","6b52db23-d651-43d0-bdbe-c44bfd308313","2023-10-13T15:03:08.000+02:00","2026-04-22T11:41:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Flux Libre,Production","330.0"
"130582878","192832075","vmamrtd1.sanef.groupe","","00:50:56:82:60:73","10.45.2.195","fe80::250:56ff:fe82:6073","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3832","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 c6 2a f5 49 bc a2-59 3c 10 9a 46 7a f9 b4","No Asset Tag","'+02:00","2025-10-08T13:43:16.000+02:00","cybastsys","Cloud Agent","379c9019-ff00-476f-a3d0-4968941b6a16","2022-07-07T11:13:56.000+02:00","2026-04-22T11:36:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","Traffic,OS-LIN-SRV DYN,Cloud Agent,Linux Server,VRF_INCONNUE,DEX,Obsolete,log4j,Recette,Sans,Trafic","518.0"
"195789744","241928028","vpbotreco1.sanef.groupe","","00:50:56:90:9c:a9","10.41.23.18","fe80::250:56ff:fe90:9ca9","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 93 a0 e3 8d c2 a1-c4 b1 12 c2 f5 43 cd de","No Asset Tag","'+02:00","2026-04-16T11:30:45.000+02:00","cybreconcile","Cloud Agent","6c3400e0-8494-4e2f-bc30-cece799a2623","2023-10-26T11:19:27.000+02:00","2026-04-22T11:28:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,flux_libre,Flux Libre,Production","335.0"
"376359111","351489742","vptrabmut4.sanef.groupe","","52:54:00:f6:df:a5, 52:54:00:4c:fe:ac, 52:54:00:e6:b6:da","192.168.17.7,10.41.40.221,10.41.40.223,10.41.40.226,192.168.17.134","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-13T11:23:37.000+02:00","oracle","Cloud Agent","cfacc9d6-289c-46d2-a4a0-1bd1dd209988","2025-11-13T12:22:43.000+02:00","2026-04-22T11:28:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server,Production,ORACLE,BDD","339.0"
"242119222","276920246","vpvsaaiad1","","00:50:56:9a:b2:da","10.44.0.104","fe80::250:56ff:fe9a:b2da","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1a 06 7d bb 22 a7 a8-b7 1d 26 90 bc ce 60 c0","No Asset Tag","'-04:00","2026-02-04T18:07:17.000+02:00","tbaad-ext","Cloud Agent","6739b175-db8a-430b-adb2-545d91a68e4a","2024-06-06T15:30:31.000+02:00","2026-04-22T11:45:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"414638987","367132982","vrpxpapps1","","00:50:56:9c:be:b3","10.45.14.169","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23770","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c d9 a2 d8 87 49 d1-93 6a d8 be 66 0f c4 a6","No Asset Tag","'+02:00","2026-04-15T09:17:18.000+02:00","cybintsys","Cloud Agent","d9909aaf-6472-486d-bf91-0f400eeb295e","2026-04-09T11:51:08.000+02:00","2026-04-22T11:49:00.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","66.0"
"114208440","181637926","lamarrac1.sanef.groupe","","00:17:A4:77:08:A8, 00:17:A4:77:08:B4, 00:17:A4:77:08:AC, 00:17:A4:77:08:B0","10.45.2.100,10.45.2.101,10.45.3.100,10.45.5.2,169.254.75.12,10.45.5.18","fe80::217:a4ff:fe77:8a8,fe80::217:a4ff:fe77:8b4,fe80::217:a4ff:fe77:8ac,fe80::217:a4ff:fe77:8b0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000020J","","'+02:00","2026-02-25T16:10:34.000+02:00","cybadmsys","Cloud Agent","8c67b965-8690-4354-b316-a1e1f389c3c7","2022-02-21T15:34:28.000+02:00","2026-04-22T11:46:17.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Linux Server,Recette,Sans,Trafic,OS-LIN-SRV DYN,Cloud Agent,DEX,Obsolete,log4j,Sextan","693.0"
"236302913","264492818","lpemvbpemv3.sanef.groupe","","00:17:a4:77:1c:90, 00:17:a4:77:1c:18, 00:17:a4:77:1c:1c","169.254.5.227,172.16.0.117,192.168.101.117,192.168.101.147,192.168.101.150,192.168.103.117","fe80::217:a4ff:fe77:1c90,fe80::217:a4ff:fe77:1c18,fe80::217:a4ff:fe77:1c1c","Linux / Server","Red Hat Enterprise Linux Server 7.8","7.8","Computers / Server","HPE ProLiant BL460c G9 Server","8","3500","Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz","64134","HP I36 07/18/2022","VCX0000703","","'+02:00","2025-10-08T16:34:29.000+02:00","oracle","Cloud Agent","02118ed9-bdd8-4a72-95b6-3f35d1c60365","2024-05-13T15:02:54.000+02:00","2026-04-22T11:31:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,PCI Bunker EMV - VLAN Stecard v17,EMV,PCI Bunker EMV,Production,Linux Server,Cloud Agent,OS-LIN-SRV DYN","684.0"
"202417909","245310581","vrameasxt1.sanef-rec.fr","","00:50:56:9c:ee:c0, 00:50:56:9c:03:6a","10.45.2.60,10.45.4.60","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","25840","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 96 39 e1 59 7f 01-4c 1d 84 be 8d 0e 2e 3d","No Asset Tag","'+02:00","2026-04-20T18:13:18.000+02:00","cybadmsys","Cloud Agent","82d41526-f32d-43f4-ba79-4ec43cc1366a","2023-12-04T17:28:50.000+02:00","2026-04-22T11:36:38.000+02:00","x86_64","4","SCA,VM,PM,GAV","DEX,Sextan,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","682.0"
"314659903","326546972","vpdsibels1.sanef.groupe","","00:50:56:94:24:01","10.44.5.163","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","31889","VMware, Inc. VMW201.00V.24224532.B64.2408191502 08/19/2024","VMware-42 14 79 f4 90 0c ae af-a1 e6 4c 3b 07 6a 15 a6","No Asset Tag","'+02:00","2026-02-10T10:37:08.000+02:00","cybreconcile","Cloud Agent","b41bf64c-fcc7-4584-bb5d-9aa36b706786","2025-04-08T17:04:44.000+02:00","2026-04-22T11:21:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD,Production,BDD-ELA DYN","140.0"
"354675277","342491005","vpechbetl1.sanef.groupe","","00:50:56:90:8f:f8","10.42.16.140","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 d2 68 1d 31 e0 41-23 3e bb 1f 0b eb 0e ec","No Asset Tag","'+02:00","2026-02-12T16:12:01.000+02:00","cybsupsys","Cloud Agent","a662aaed-3d25-42d4-a779-5c190b8f957f","2025-08-26T16:14:41.000+02:00","2026-04-22T11:34:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-POS DYN,Linux Server,Cloud Agent,MID-NGINX DYN,Production","144.0"
"203604125","245940905","vrdsibans1.sanef-rec.fr","","00:50:56:9c:2a:6e","10.45.0.166","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 14 1a 3c 12 f2 f3-bc 07 0f b2 3f e4 8e cc","No Asset Tag","'+02:00","2026-01-07T11:53:05.000+02:00","cybadmsys","Cloud Agent","66baa830-a381-4b74-afba-347a75a8b4ee","2023-12-11T11:56:10.000+02:00","2026-04-22T11:28:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Ansible","337.0"
"193621036","240986557","vpbocs4as3.sanef.groupe","","00:50:56:90:4f:98","10.41.22.10","fe80::250:56ff:fe90:4f98","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","63889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 af 30 43 be 13 48-43 31 e8 d0 5e 4f b6 46","No Asset Tag","'+02:00","2026-04-01T21:57:06.000+02:00","cybreconcile","Cloud Agent","4343f3b6-92f2-421d-8a62-5526f24f2b50","2023-10-16T13:28:43.000+02:00","2026-04-22T11:34:49.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,OS-LIN-SRV DYN,Flux Libre,Production,flux_libre,Cloud Agent,Linux Server","331.0"
"137347865","197590796","vppeaasip1.sanef.groupe","","00:50:56:82:f6:86","10.41.20.35","fe80::2746:28d3:7cc0:3356","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7821","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 2c 9a 92 ff a4 40-5c 9c 4e 42 17 2f 35 cc","No Asset Tag","'+02:00","2024-11-14T11:45:54.000+02:00","cybreconcile","Cloud Agent","016180df-549c-451e-928f-068e926a750d","2022-08-30T17:31:07.000+02:00","2026-04-22T11:36:19.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,Production,Obsolete,MID-NGINX DYN,VRF_PEAGE_DC,Cloud Agent,Linux Server,DEX,SSIP","343.0"
"363981573","346388761","vptrabmut3.sanef.groupe","","52:54:00:ac:fa:fd, 52:54:00:32:a0:3a, 52:54:00:71:43:6a","10.41.40.231,10.41.40.233,10.41.40.236,192.168.17.134,192.168.17.7","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","12","","AMD EPYC 9J15 32-Core Processor","47752","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-11-26T15:52:24.000+02:00","oracle","Cloud Agent","2754da18-b6c3-4577-9f74-3e0940f99b7a","2025-09-29T17:05:48.000+02:00","2026-04-22T11:28:41.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD,Production,Linux Server,Cloud Agent","339.0"
"347918139","339424918","vrlogbels1.sanef-rec.fr","","00:50:56:9c:b9:36","10.45.15.164","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 08 da 48 70 10 be-85 df 5d 65 04 dd 97 52","No Asset Tag","'+02:00","2026-01-21T17:50:36.000+02:00","cybintsys","Cloud Agent","6b892b42-f235-497c-a463-35fb34d6c0bc","2025-07-31T17:17:19.000+02:00","2026-04-22T11:20:22.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Cloud Agent,Linux Server,Elasticsearch,Recette","140.0"
"175948080","229616156","vvbotreco1.sanef-rec.fr","","e6:ea:cc:9f:a8:6b, 00:50:56:9c:51:3a, 12:69:54:7c:50:22, 66:f1:af:ae:1a:cf, c6:ae:dc:5f:1c:de, 36:39:49:ce:59:27","10.45.6.135,10.89.0.1","fe80::e4ea:ccff:fe9f:a86b,fe80::250:56ff:fe9c:513a,fe80::1069:54ff:fe7c:5022,fe80::64f1:afff:feae:1acf,fe80::c4ae:dcff:fe5f:1cde,fe80::3439:49ff:fece:5927","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","23824","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 2b c6 b8 67 f4 1c-fd bc ed 09 20 f9 90 7f","No Asset Tag","'+02:00","2026-03-12T17:22:15.000+02:00","kapschsysuser","Cloud Agent","38c2e411-c71f-45ae-acae-5daa52a15ffd","2023-06-26T16:19:30.000+02:00","2026-04-22T10:57:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Flux Libre,OS-LIN-SRV DYN,Recette,FreeFlow,flux_libre","142.0"
"194257182","241333482","vpcosaapp1.sanef.groupe","","00:50:56:90:1a:28","10.41.40.178","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f3 5a f2 75 7d 83-f7 74 3b d0 2b 5c 2e 6e","No Asset Tag","'+02:00","2026-01-27T11:25:47.000+02:00","root","Cloud Agent","5d29df00-0517-4708-bf91-071d41bd293c","2023-10-19T14:05:03.000+02:00","2026-04-22T11:15:33.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,MID-NGINX DYN,DSI,Cloud Agent,Linux Server,log4j,COSWIN,MID-APACHE-TOMCAT DYN","511.0"
"159570896","212144733","vpintaels1.sanef.groupe","","00:50:56:82:9c:94","10.46.33.15","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 02 0f 4c 53 91 c9 2b-89 d9 8b cf 4c 61 3b 82","No Asset Tag","'+02:00","2026-02-24T12:06:38.000+02:00","cybreconcile","Cloud Agent","903070e8-d55b-4b79-9537-dd5f911d7fa0","2023-02-16T15:30:31.000+02:00","2026-04-22T11:17:02.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,Cloud Agent,Linux Server,VRF_BURO_DC,OS-LIN-SRV DYN,BDD-ELA DYN","140.0"
"208782494","248750418","vibotreco3.sanef.groupe","","00:50:56:90:60:6a","10.41.23.159","fe80::250:56ff:fe90:606a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","11","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","37935","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 10 f3 0e 93 d4 68 75-7f ba 4f bb 8e 09 fa f5","No Asset Tag","'+02:00","2026-03-18T15:53:31.000+02:00","cybsupsys","Cloud Agent","00a28729-de34-4f80-8f1e-e7b31432429b","2024-01-10T13:28:36.000+02:00","2026-04-22T11:05:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","FreeFlow,Production,OS-LIN-SRV DYN,Flux Libre,flux_libre,Cloud Agent,Linux Server","140.0"
"130590884","192838404","vrameased1.sanef.groupe","","00:50:56:82:7a:69","10.45.2.75","fe80::250:56ff:fe82:7a69","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 1e ee a2 92 ac 86-6c 8c f9 b3 a2 94 88 c9","No Asset Tag","'+02:00","2026-04-21T10:42:13.000+02:00","cybsecope","Cloud Agent","39e04d51-1e57-49a4-bd10-f19f6adc92bf","2022-07-07T12:17:00.000+02:00","2026-04-22T11:25:59.000+02:00","x86_64","4","SCA,VM,PM,GAV","Recette,DEX,SED,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,TAG-SRVEXPOSEINDIRECT","28.0"
"385999740","355957537","vrlogaagt1.sanef-rec.fr","","00:50:56:9c:7a:c4","10.45.15.168","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 01 30 6c 10 92 b4-5b 0b 78 88 ee 20 c1 1c","No Asset Tag","'+02:00","2026-04-14T09:37:38.000+02:00","cybintsys","Cloud Agent","ef545dbd-144b-4f79-a905-85f2a6aad04d","2025-12-24T17:20:30.000+02:00","2026-04-22T11:23:53.000+02:00","x86_64","2","SCA,VM,PM,GAV","Logiciels,Recette,OS-LIN-SRV DYN,Linux Server,Cloud Agent","66.0"
"189160131","238399071","vpdsiaans1.sanef.groupe","","00:50:56:8d:95:c2","10.44.2.134","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","","INTEL(R) XEON(R) GOLD 6526Y","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 0d 54 63 d1 d6 4a 7f-a6 4a 8a b9 8d 82 21 1b","No Asset Tag","'+02:00","2026-01-27T16:09:39.000+02:00","cybreconcile","Cloud Agent","b6841e91-c79e-484a-afa5-d32ab3f637b3","2023-09-21T11:50:23.000+02:00","2026-04-22T11:26:44.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Ansible","139.0"
"131406665","193426321","vpexparep1.sanef.groupe","","00:50:56:82:5f:2e","10.41.40.19","fe80::3882:f0f2:73c8:f3d0","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","7697","Phoenix Technologies LTD 6.00 12/12/2018","VMware-56 4d e3 1b d8 76 df b7-50 2a d2 6e 2e cf be d8","No Asset Tag","'+02:00","2026-01-21T17:41:02.000+02:00","cybreconcile","Cloud Agent","2a48840b-99bb-4e7e-9381-de183fb8456e","2022-07-13T10:52:22.000+02:00","2026-04-22T11:13:17.000+02:00","x86_64","3","SCA,VM,PM,GAV","OS-LIN-SRV DYN,DEX,Production,eReport,Cloud Agent,Linux Server,VRF_TRAFIC_DC","210.0"
"157828168","210598037","vppintaweb1.sanef.groupe","","00:50:56:82:2c:2d","192.168.20.20","fe80::250:56ff:fe82:2c2d","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 77 09 31 f0 6b 76-f7 e3 6e d8 2b ad 95 9f","No Asset Tag","'+02:00","2026-04-14T14:24:12.000+02:00","cybreconcile","Cloud Agent","b919eceb-06be-43b0-83ac-4c13ec02459c","2023-02-03T03:34:19.000+02:00","2026-04-22T11:27:33.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion institutionnel,BDD-POS DYN,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,VRF_INCONNUE","59.0"
"131269845","193319055","lampwaz1.sanef.groupe","","00:17:a4:77:10:de","10.41.40.122","fe80::217:a4ff:fe77:10de","Linux / Server","The CentOS Project CentOS 7.7 (1908)","7.7","Computers / Server","HPE ProLiant BL460c G9 Server","16","2400","Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz","64303","HP I36 07/18/2022","CZ2622016K","","'+02:00","2024-03-20T11:44:36.000+02:00","cybastapp","Cloud Agent","3da45f2d-a68a-4ccd-9e0e-ff8d500d455e","2022-07-12T15:27:28.000+02:00","2026-04-22T11:17:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_TRAFIC_DC,Trafic,DSI,BDD-ELA DYN,Cloud Agent,Linux Server,Waze,MID-NGINX DYN,log4j,Production,Obsolete","344.0"
"230338974","258575124","vpadvaapp1.sanef.groupe","","00:50:56:90:a7:35","10.41.20.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 e8 ee dd 80 45 a1-90 55 02 ef e6 c5 60 78","No Asset Tag","'+02:00","2026-03-17T16:37:31.000+02:00","cybreconcile","Cloud Agent","7ef6b100-66b0-403a-bf75-d23cc38d1e91","2024-04-16T13:00:27.000+02:00","2026-04-22T11:17:35.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,Péage","332.0"
"131270067","193318266","vpechatal1.sanef.groupe","","00:50:56:82:45:f0","10.30.10.20","fe80::711a:3f73:265e:7d3e","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16046","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 12 9d c2 45 88 9f-3e 14 e3 36 cb f8 03 a3","No Asset Tag","'+02:00","2025-02-13T11:49:26.000+02:00","cybreconcile","Cloud Agent","a6ae2468-fc2c-4f6b-9218-735ddd4c618c","2022-07-12T15:17:38.000+02:00","2026-04-22T11:17:29.000+02:00","x86_64","3","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,BDD-POS DYN,Cloud Agent,Linux Server,Exploitation IT,Production,DSI,Obsolete,log4j,TALEND,VRF_INCONNUE","513.0"
"195833595","241948707","lptrabgas1.sanef.groupe","","ee:50:33:80:00:70","10.41.40.151","fe80::ec50:33ff:fe80:70","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","63821","HPE I44 06/13/2025","VCGCIOJ00E","/n/Bios Asset Tag :","'+02:00","2026-01-20T17:04:55.000+02:00","cybastapp","Cloud Agent","0978afd0-9c46-4f22-a50d-1649fc9c7717","2023-10-26T15:25:02.000+02:00","2026-04-22T10:58:12.000+02:00","x86_64","3","SCA,VM,PM,GAV","Gaspar,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX","504.0"
"349742049","340111944","vrechaetl1","","00:50:56:9c:b3:8b","10.45.11.206","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15732","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 99 db c1 19 74 57-95 63 73 08 d3 47 aa 2e","No Asset Tag","'+02:00","2026-01-08T12:05:43.000+02:00","cybadmsys","Cloud Agent","51bb8d70-ced7-4155-a860-a33fd1eae820","2025-08-07T10:28:44.000+02:00","2026-04-22T11:18:40.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,Recette","340.0"
"175948572","229617189","vvbotatsp1.sanef-rec.fr","","00:50:56:9c:c3:f7, 42:6a:d1:c0:a3:49, 86:ef:5a:6f:8b:1d, aa:8f:7b:e3:dd:40, aa:75:42:9d:f4:82, 36:15:78:10:a8:1d, 9e:26:58:5f:42:2f, 2e:a0:54:8a:8d:77","10.45.6.138,10.89.0.1","fe80::250:56ff:fe9c:c3f7,fe80::406a:d1ff:fec0:a349,fe80::84ef:5aff:fe6f:8b1d,fe80::a88f:7bff:fee3:dd40,fe80::a875:42ff:fe9d:f482,fe80::3415:78ff:fe10:a81d,fe80::9c26:58ff:fe5f:422f,fe80::2ca0:54ff:fe8a:8d77","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c bc f3 f5 a6 3e cb-a7 c7 a3 b8 4a 0b f7 0a","No Asset Tag","'+02:00","2026-03-12T15:49:55.000+02:00","kapschsysuser","Cloud Agent","8971266d-8f79-45c1-9c5a-cf5a291472ff","2023-06-26T16:30:04.000+02:00","2026-04-22T10:58:46.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,flux_libre,Flux Libre,FreeFlow,Cloud Agent,Linux Server,OS-LIN-SRV DYN","142.0"
"349775782","340136515","vpodaboem1.sanef.groupe","","52:54:00:c0:56:44, 52:54:00:b3:54:bb, 52:54:00:45:b9:77","192.168.17.129,192.168.17.4,10.42.15.100,10.42.15.102,10.42.15.105,10.42.15.106","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","ebe237cd-1827-4e0c-8fa2-7e65f82d01a5","2025-08-07T14:49:20.000+02:00","2026-04-22T11:02:42.000+02:00","x86_64","2","SCA,VM,PM,GAV","MID-APACHE-TOMCAT DYN,Linux Server,Cloud Agent","339.0"
"349790308","340136517","vpodaboem4.sanef.groupe","","52:54:00:44:a7:4f, 52:54:00:0d:d3:d8, 52:54:00:a4:3c:f9","192.168.17.130,192.168.17.5,10.42.15.91,10.42.15.93,10.42.15.94","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-10-03T14:51:30.000+02:00","oracle","Cloud Agent","eceb77e5-0bb7-4372-a44f-29005e436230","2025-08-07T14:49:18.000+02:00","2026-04-22T11:17:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0"
"152272093","206868500","vrintaprx2.sanef.groupe","","00:50:56:82:e3:56","192.168.20.4","fe80::250:56ff:fe82:e356","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 38 e0 f4 be 5d d8-0a ca 30 d2 61 81 d5 eb","No Asset Tag","'+02:00","2026-02-23T13:29:47.000+02:00","cybadmsys","Cloud Agent","12f16116-8e69-4534-b153-8625040e394f","2022-12-16T17:48:50.000+02:00","2026-04-22T11:20:58.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Recette,Gestion institutionnel,OS-LIN-SRV DYN","55.0"
"130586828","192835989","vmamrpmv1","","00:50:56:82:2A:C2, 00:50:56:82:5F:9D, 00:50:56:82:1B:6C","10.33.16.80,10.30.16.72,10.30.16.80,10.30.16.83,10.30.16.85,10.30.16.87,10.30.16.89,10.32.16.72,10.32.16.80,10.32.16.83,10.32.16.85,10.32.16.87,10.32.16.89","fe80::250:56ff:fe82:2ac2,fe80::250:56ff:fe82:5f9d,fe80::250:56ff:fe82:1b6c","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 24 45 67 6c 6f a4-0d 0b 07 05 70 c2 d5 c8","No Asset Tag","'+02:00","2025-10-09T14:46:27.000+02:00","delcour","Cloud Agent","9e6775b2-b6f9-4250-93a0-ab50a67c0e91","2022-07-07T12:01:59.000+02:00","2026-04-22T11:16:36.000+02:00","x86_64","5","SCA,VM,PM,GAV","log4j,Cloud Agent,Linux Server,OS-LIN-SRV DYN,MIVISU,DEX,Obsolete,Sans,Recette,Trafic,VRF_INCONNUE","873.0"
"287926188","311535929","vrosapapp1.sanef-rec.fr","","00:50:56:9c:d7:4e","10.45.9.70","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 77 b6 59 f3 4f f2-8e 9e ca 27 86 09 c9 25","No Asset Tag","'+02:00","2026-02-16T11:59:55.000+02:00","cybintsys","Cloud Agent","3255e4fb-6a64-490b-8eb8-51ab95621d88","2024-12-20T12:48:26.000+02:00","2026-04-22T11:07:43.000+02:00","x86_64","2","SCA,VM,PM,GAV","Péage,OS-LIN-SRV DYN,Cloud Agent,Linux Server","142.0"
"395540025","359520751","vrsigaapp1.sanef-rec.fr","","00:50:56:9c:05:30","10.45.2.31","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31836","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c 7b b0 e0 75 2d 89-f1 b3 22 04 c9 78 ad e9","No Asset Tag","'+02:00","2026-02-05T16:23:38.000+02:00","cybsupapp","Cloud Agent","4da548de-ca05-4cd7-b695-9750ff6b0a51","2026-01-28T11:51:58.000+02:00","2026-04-22T11:15:35.000+02:00","x86_64","3","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN,SIG,Recette","221.0"
"349797065","340136519","vpodaboem3.sanef.groupe","","52:54:00:3d:a8:66, 52:54:00:ad:d4:bb, 52:54:00:1a:17:e6","10.42.15.101,10.42.15.103,10.42.15.104,192.168.17.5,192.168.17.130","","Linux / Server","Oracle Linux 8.10","8.10","Virtualized / Virtual Machine","QEMU QEMU Standard PC Q35 Virtual Machine","8","","AMD EPYC 9J15 32-Core Processor","31625","SeaBIOS 1.16.0-4.module+el8.10.0+90435+7a571643 04/01/2014","Not Specified","Not Specified","'+02:00","2025-07-31T08:56:17.000+02:00","oracle","Cloud Agent","15a33704-1218-4419-b52e-21f40487c096","2025-08-07T14:49:20.000+02:00","2026-04-22T11:07:20.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent","339.0"
"304604398","322521242","vrpeabbst1","","00:50:56:9c:39:61","192.168.31.13","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 90 7c 63 5e 53 f5-1f 9c aa fc be ca 40 80","No Asset Tag","'+02:00","2026-02-18T18:42:45.000+02:00","cybastapp","Cloud Agent","0da30718-32bf-4ba7-9e42-831875d498e0","2025-03-03T12:50:05.000+02:00","2026-04-22T10:47:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,MID-NGINX DYN,Péage,Cloud Agent,Linux Server","142.0"
"377808411","352213443","vpdsiahap2.sanef.groupe","","00:50:56:90:9a:cd","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 98 aa fe 00 2a 65-e3 4b 29 19 60 ab 75 e9","No Asset Tag","'+02:00","2026-04-13T14:20:26.000+02:00","cybreconcile","Cloud Agent","649d883a-fab2-40b2-9f81-89e61284a0f6","2025-11-19T18:53:52.000+02:00","2026-04-22T11:05:55.000+02:00","x86_64","2","SCA,VM,PM,GAV","Production,Cloud Agent,OS-LIN-SRV DYN,Linux Server","330.0"
"305733241","322855856","spsicaquo1.sanef.groupe","","20:67:7c:e6:0f:14","10.100.254.50","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31570","HPE U41 09/30/2024","CZJ84600RQ","","'+02:00","2025-11-06T13:55:17.000+02:00","cybreconcile","Cloud Agent","c73d0497-231a-417f-b8bb-3202cc8b2e09","2025-03-06T12:30:09.000+02:00","2026-04-22T11:08:01.000+02:00","x86_64","2","SCA,VM,PM,GAV","TAG-SIA,OS-LIN-SRV DYN,TAG-SIC,Linux Server,Cloud Agent","139.0"
"194005729","241200204","vvaflgsys1.sanef-rec.fr","","00:50:56:9c:37:85","10.45.7.168","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 62 29 12 cc 53 ce-71 ba f5 29 9b 33 1b 0d","No Asset Tag","'+02:00","2026-03-09T10:07:17.000+02:00","cybsupsys","Cloud Agent","c797811c-5f5a-4122-81bc-107e2387d4dc","2023-10-18T11:07:13.000+02:00","2026-04-22T11:16:29.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,FreeFlow,OS-LIN-SRV DYN,Recette,flux_libre,Flux Libre","143.0"
"340078604","336780137","lpamebrac4.sanef.groupe","","3e:33:fb:a0:00:f3, 3e:33:fb:a0:00:f7","10.41.41.113,10.41.41.117,10.41.41.119,10.43.4.141","fe80::3c33:fbff:fea0:f3,fe80::3c33:fbff:fea0:f7","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE Synergy 480 G10 Plus Server","16","2800","Intel(R) Xeon(R) Silver 4309Y CPU @ 2.80GHz","515150","HPE I44 06/13/2025","VCGBW52015","/n/Bios Asset Tag :","'+02:00","2025-11-19T12:19:37.000+02:00","cybreconcile","Cloud Agent","307d4f95-68a7-49e0-887e-2904dced3c48","2025-07-08T10:21:22.000+02:00","2026-04-22T11:28:29.000+02:00","x86_64","2","SCA,VM,GAV","Production,Amelie,OS-LIN-SRV DYN,Cloud Agent,Linux Server","335.0"
"180395955","232824862","vrcosaapp1.sanef-rec.fr","","00:50:56:9c:2c:bc","10.45.9.195","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","31888","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c cc cc 7f 17 24 62-7e 52 35 14 aa 3d 49 cc","No Asset Tag","'+02:00","2026-03-03T15:14:46.000+02:00","cybadmsys","Cloud Agent","19e13af6-03e7-4cd2-9244-bc0b33de9b6a","2023-07-28T12:58:06.000+02:00","2026-04-22T11:34:23.000+02:00","x86_64","3","SCA,VM,PM,GAV","log4j,MID-NGINX DYN,OS-LIN-SRV DYN,COSWIN,DSI,MID-APACHE-TOMCAT DYN,Cloud Agent,Linux Server","512.0"
"295368261","317190257","vvpeaabst3.sanef-rec.fr","","00:50:56:9c:3b:0a","10.45.10.104","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c de 43 23 21 2f 31-fc 6b e2 de 55 4d 8c a8","No Asset Tag","'+02:00","2026-03-10T10:01:59.000+02:00","cybsupapp","Cloud Agent","1d147632-02e4-4e6c-b4d3-d15d33be5555","2025-01-28T18:14:56.000+02:00","2026-04-22T11:11:26.000+02:00","x86_64","2","SCA,VM,PM,GAV","Recette,OS-LIN-SRV DYN,MID-NGINX DYN,Linux Server,Cloud Agent,BOOST","140.0"
"130586773","192835845","lamarrac3.sanef.groupe","","00:17:A4:77:08:B8, 00:17:A4:77:08:C4, 00:17:A4:77:08:BC, 00:17:A4:77:08:C0","10.45.2.104,10.45.2.105,10.45.2.109,10.45.3.102,10.45.5.4,169.254.214.108,10.45.5.20","fe80::217:a4ff:fe77:8b8,fe80::217:a4ff:fe77:8c4,fe80::217:a4ff:fe77:8bc,fe80::217:a4ff:fe77:8c0","Linux / Server","Red Hat Enterprise Linux Server 6.10","6.10","Computers / Server","HPE ProLiant BL460c G8 Server","8","3300","Intel(R) Xeon(R) CPU E5-2643 0 @ 3.30GHz","48359","HP I31 05/24/2019","VCX000010L","","'+02:00","2026-02-25T16:01:27.000+02:00","cybadmsys","Cloud Agent","8056d027-67c8-4f74-b1e3-63678907b110","2022-07-07T11:56:50.000+02:00","2026-04-22T11:31:45.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,DEX,Sextan,Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,log4j,Trafic,Sans,Recette","693.0"
"191420571","239727390","vibooosea2.sanef.groupe","","00:50:56:90:11:1b","10.41.22.201","fe80::250:56ff:fe90:111b","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 6e 23 07 d6 d2 49-7c 08 13 af b9 04 a5 7a","No Asset Tag","'+02:00","2026-03-17T16:27:11.000+02:00","cybreconcile","Cloud Agent","d0dd40d7-7870-40a4-8102-3d8fb7c8786e","2023-10-04T17:50:38.000+02:00","2026-04-22T11:01:27.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Flux Libre,Cloud Agent,Linux Server,Production,flux_libre,FreeFlow","141.0"
"131270890","193320476","vpaiiapol1","","00:50:56:82:d9:5d","10.30.12.125","fe80::88d2:6e86:b660:94e8","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","3789","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 3d 4e a5 fd e2 ca-c1 b3 12 6c db 8b df 7d","No Asset Tag","'+02:00","2025-11-06T09:07:19.000+02:00","cybreconcile","Cloud Agent","8a44c204-9168-4913-a93e-b83e3814dee2","2022-07-12T15:42:46.000+02:00","2026-04-22T11:09:53.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Production,Sans,Outils prod (Monitoring, NMS, gestion de parc),BDD-ELA DYN,BDD-SQL DYN,BDD-POS DYN,Centreon,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,DSI,Obsolete,Cloud Agent,Linux Server","82.0"
"211609269","250177509","vpbotcach1.sanef.groupe","","00:50:56:90:8c:8f","10.41.23.17","fe80::250:56ff:fe90:8c8f","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 f5 e9 69 31 75 b8-54 62 12 29 b3 d0 a0 9e","No Asset Tag","'+02:00","2026-04-21T15:45:49.000+02:00","cybreconcile","Cloud Agent","76495e4b-6c1a-4310-9b1e-dffb951e6514","2024-01-24T13:59:33.000+02:00","2026-04-22T11:09:08.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,flux_libre,OS-LIN-SRV DYN,Cloud Agent,Linux Server,Production","140.0"
"236549774","265276979","vpechatre1.sanef.groupe","","00:50:56:90:e6:a8","10.42.16.133","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","31888","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 10 05 a5 ff 9f 6e 64-19 af 44 5f 75 4d bb cb","No Asset Tag","'+02:00","2025-11-18T15:18:21.000+02:00","cybreconcile","Cloud Agent","2e64d7e9-2c54-44b9-90cc-779390b12af5","2024-05-14T14:27:56.000+02:00","2026-04-22T11:01:30.000+02:00","x86_64","3","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,TALEND,Production","208.0"
"143625406","201026504","vpemvantp2.sanef.groupe","","00:50:56:82:32:aa","192.168.100.133","fe80::250:56ff:fe82:32aa","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","1999","Phoenix Technologies LTD 6.00 09/21/2015","VMware-42 02 33 c0 84 b1 d7 cf-d7 b9 40 d5 02 3f 34 cd","No Asset Tag","'+02:00","2024-09-11T10:18:20.000+02:00","root","Cloud Agent","34f7059e-9f6e-4ac9-99e0-c8efd0309db3","2022-10-11T17:43:44.000+02:00","2026-04-22T10:52:11.000+02:00","x86_64","4","SCA,VM,PM,GAV","VRF_INCONNUE,Obsolete,EMV,Cloud Agent,Linux Server,PCI Bunker EMV - VLAN Supervision/Admin,DEX,BDD-POS DYN","107.0"
"349449582","340001447","vrpwdapod1","","00:50:56:9c:d8:ee","10.45.14.100","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3665","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c d6 eb 75 59 64 c4-2c dd a2 b8 ac a1 ed 24","No Asset Tag","'+02:00","2026-03-31T14:12:12.000+02:00","cybintsys","Cloud Agent","e0a9367a-aa6e-4bec-a4fc-b27a74a7b4e3","2025-08-06T11:08:56.000+02:00","2026-04-22T11:09:23.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","140.0"
"359801327","344907764","vrcybapsp2.sanef-rec.fr","","00:50:56:9c:af:56","10.45.11.104","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3655","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c cc 5f 7e ab f4 11-e1 4d b3 66 17 7b ab 3a","No Asset Tag","'+02:00","2026-04-16T11:15:02.000+02:00","cybreconcile","Cloud Agent","bd126235-c4e6-4b54-8341-6e7b62820203","2025-09-15T15:56:10.000+02:00","2026-04-22T11:23:36.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Recette,Linux Server,Cloud Agent,CyberArk","66.0"
"399660876","361235534","vodsiaito1.sanef.groupe","","00:50:56:9c:f3:92","10.46.39.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7681","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c 5e 94 be 8f a0 16-75 6f f5 a0 50 3b ba 52","No Asset Tag","'+02:00","2026-02-12T17:05:50.000+02:00","cybreconcile","Cloud Agent","1bd870a4-e1d1-4573-8ce3-a6829334b652","2026-02-12T17:06:40.000+02:00","2026-04-22T11:20:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,MID-NGINX DYN","140.0"
"377822105","352213229","vpdsiahap1.sanef.groupe","","00:50:56:90:90:f8","192.168.19.132","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 92 86 8f 71 15 09-de 5c 7a f3 46 4b 40 25","No Asset Tag","'+02:00","2026-04-13T14:14:05.000+02:00","cybreconcile","Cloud Agent","38afdf12-d722-44ea-800e-8651b44ab20a","2025-11-19T18:51:53.000+02:00","2026-04-22T11:15:51.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent,Production","330.0"
"241563039","276522521","vpvsaages1.sanef.groupe","","00:50:56:9c:f9:12","10.42.16.82","fe80::250:56ff:fe9c:f912","Linux / Server","Oracle Linux 8.6","8.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 1c 0a d5 e7 9f 5f dd-22 29 5d 69 ed f7 05 85","No Asset Tag","'-04:00","2026-02-04T15:40:16.000+02:00","tbaad","Cloud Agent","f7872d0c-582a-48b5-99f2-9aadbc1b488d","2024-06-04T13:52:42.000+02:00","2026-04-22T11:14:18.000+02:00","x86_64","2","SCA,VM,PM,GAV","Gestion SAUVEGARDE,Cloud Agent,Linux Server","52.0"
"349748226","340121296","vrlogbquo1","","00:50:56:9c:b4:5a","10.100.16.105","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","7681","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c b5 be be 2a 87 74-3b 74 4d ba 64 e3 e4 86","No Asset Tag","'+02:00","2026-02-17T11:00:44.000+02:00","cybintsys","Cloud Agent","edfd80fc-bb74-479e-8fe5-b25f8e07b45f","2025-08-07T12:08:27.000+02:00","2026-04-22T10:55:37.000+02:00","x86_64","2","SCA,VM,PM,GAV","Elasticsearch,Recette,BDD-ELA DYN,OS-LIN-SRV DYN,Cloud Agent,Linux Server","138.0"
"131275361","193321031","vpaiiapol5","","00:50:56:82:94:70","10.40.2.46","fe80::75b1:7b5c:c524:6458,fe80::f1ce:6ca5:db90:1274","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2300","Intel(R) Xeon(R) Gold 6140 CPU @ 2.30GHz","7820","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 6e a8 95 50 3b 27-85 58 35 bb e3 53 b5 eb","No Asset Tag","'+02:00","2024-06-05T11:39:28.000+02:00","cybreconcile","Cloud Agent","d6b6f887-84de-4656-8aed-6d6620e18881","2022-07-12T15:47:48.000+02:00","2026-04-22T11:22:12.000+02:00","x86_64","4","SCA,VM,PM,GAV","DSI,MID-NGINX DYN,MID-APACHE-TOMCAT DYN,BDD-SQL DYN,BDD-POS DYN,BDD-ELA DYN,Outils prod (Monitoring, NMS, gestion de parc),Production,Sans,Centreon,Obsolete,Linux Server,Cloud Agent,VRF_INCONNUE","462.0"
"159557652","212130482","vpintaweb2.sanef.groupe","","02:42:b5:4e:0c:dd, 00:50:56:82:64:bf","172.17.0.1,192.168.20.36","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 c1 7b d8 5a 03 8a-7e 0b 01 96 df cb 9c b6","No Asset Tag","'+02:00","2026-04-15T14:54:46.000+02:00","cybreconcile","Cloud Agent","fbc331e5-6829-47d9-9ce7-d4429dcf4a02","2023-02-16T13:41:17.000+02:00","2026-04-22T10:59:47.000+02:00","x86_64","4","SCA,VM,PM,GAV","Gestion institutionnel,OS-LIN-SRV DYN,BDD-POS DYN,MID-NGINX DYN,TAG-SRVEXPOSEINDIRECT,VRF_INCONNUE,Cloud Agent,Linux Server","130.0"
"148436350","204914682","vrexpbtex1","","00:50:56:82:09:ce","10.45.2.226","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","31889","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 ca d0 16 1b 0c 4e-87 84 fd 26 39 0c 54 49","No Asset Tag","'+02:00","2026-04-15T15:32:58.000+02:00","cybadmsys","Cloud Agent","8b1511b6-7b10-4895-96d6-efc9bafc4f15","2022-11-17T19:47:18.000+02:00","2026-04-22T10:50:51.000+02:00","x86_64","4","SCA,VM,PM,GAV","TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,Cloud Agent,Linux Server,BDD-POS DYN,Transports Exceptionnels","27.0"
"131267086","193317133","vpadvaapp4.sanef.groupe","","00:50:56:82:66:86","10.30.10.46","fe80::ecd1:9383:fcf1:dd35","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 bf ea 65 0e 1e 53-60 54 30 ec b6 94 41 f0","No Asset Tag","'+02:00","2024-09-05T14:16:38.000+02:00","cybreconcile","Cloud Agent","d630674c-0f84-4895-97fe-f794da697d55","2022-07-12T15:04:23.000+02:00","2026-04-22T10:54:57.000+02:00","x86_64","2","SCA,VM,PM,GAV","VRF_INCONNUE,Production,BDD-POS DYN,Gestion commerciale,Cloud Agent,Linux Server,DEX,Obsolete,ADV-U","336.0"
"139158036","198270705","vmampsxt3","","00:50:56:82:48:7B, 00:50:56:82:2F:B3, 00:50:56:82:60:FD","10.43.4.32,10.43.40.32,10.41.40.32","fe80::250:56ff:fe82:487b,fe80::250:56ff:fe82:2fb3,fe80::250:56ff:fe82:60fd","Linux / Server","Red Hat Enterprise Linux Server 6.8","6.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 8f 04 7b 29 62 51-77 87 c2 cf 93 91 e2 58","No Asset Tag","'+02:00","2025-12-11T15:55:16.000+02:00","cybreconcile","Cloud Agent","3f1d4ed6-923d-4649-a944-e6c72d8fc086","2022-09-07T14:35:22.000+02:00","2026-04-22T10:55:35.000+02:00","x86_64","4","SCA,VM,PM,GAV","Obsolete,log4j,DEX,OS-LIN-SRV DYN,Sextan,VRF_TRAFIC_DC,MID-APACHE-TOMCAT DYN,Production,Trafic,Linux Server,Cloud Agent","699.0"
"213849189","251125497","spemvalog1.sanef.groupe","","54:80:28:4e:67:5a","192.168.100.74","fe80::46c:6cb9:10b9:4392","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Computers / Server","HPE ProLiant DL380 G10 Server","32","2100","Intel(R) Xeon(R) Silver 4110 CPU @ 2.10GHz","31829","HPE U30 08/06/2025","CZ28450153","","'+02:00","2026-01-19T17:20:57.000+02:00","root","Cloud Agent","14d73869-4e52-41ff-9546-b2ea4392cdfc","2024-02-05T19:36:04.000+02:00","2026-04-22T10:45:02.000+02:00","x86_64","4","SCA,VM,PM,GAV","Forescout,PCI Bunker EMV - VLAN Supervision/Admin,DSI,OS-LIN-SRV DYN,Splunk,Cloud Agent,Linux Server","673.0"
"241536911","276509649","vpvsaaafz2.sanef.groupe","","00:50:56:90:7a:80","192.168.18.79","fe80::250:56ff:fe90:7a80","Linux / Server","Oracle Linux 8.8","8.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7651","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 23 07 9c d7 fc 84-af eb a1 31 0d 4d f5 03","No Asset Tag","'+02:00","2026-02-04T12:51:21.000+02:00","tbaad","Cloud Agent","13f17acb-fa02-4c85-84f0-2e3c2e12022d","2024-06-04T12:01:16.000+02:00","2026-04-22T11:03:52.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,Gestion SAUVEGARDE","52.0"
"193226489","240735961","vpbocs4ci1.sanef.groupe","","00:50:56:90:6e:15","10.41.22.5","fe80::250:56ff:fe90:6e15","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","92112","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 1e 89 b0 76 c1 7b-6a 8e 22 88 02 10 4d cb","No Asset Tag","'+02:00","2026-04-01T21:45:11.000+02:00","cybreconcile","Cloud Agent","3cdf60b5-1dc5-41a8-a2d3-c561cd8fa947","2023-10-13T13:29:39.000+02:00","2026-04-22T10:50:56.000+02:00","x86_64","2","SCA,VM,PM,GAV","flux_libre,Production,Flux Libre,OS-LIN-SRV DYN,FreeFlow,Cloud Agent,Linux Server","332.0"
"205781540","247056237","vpbocaprx1.sanef.groupe","","00:50:56:90:74:89","192.168.21.195","fe80::250:56ff:fe90:7489","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","31889","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 f7 cb 90 98 b5 11-3f d7 f2 04 60 73 60 0e","No Asset Tag","'+02:00","2026-04-01T22:02:40.000+02:00","root","Cloud Agent","21d995fb-3719-4d8d-aa67-d163aafa15f8","2023-12-22T18:22:14.000+02:00","2026-04-22T10:55:13.000+02:00","x86_64","2","SCA,VM,PM,GAV","ServersInCyberark,OS-LIN-SRV DYN,MID-NGINX DYN,Cloud Agent,Linux Server,flux_libre,FreeFlow,Flux Libre,Production","66.0"
"416076516","367729274","vrzbxbpgs2.sanef-rec.fr","","00:50:56:9c:c2:6c","10.45.15.203,10.45.15.202","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","3655","VMware, Inc. VMW201.00V.24504846.B64.2501180339 01/18/2025","VMware-42 1c e7 97 67 50 ba 06-33 b4 74 8a eb a1 79 91","No Asset Tag","'+02:00","2026-04-17T16:46:21.000+02:00","cybsecope","Cloud Agent","1246f772-6461-4ea3-a1b8-da1005acddb6","2026-04-15T17:05:41.000+02:00","2026-04-22T11:25:54.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,OS-LIN-SRV DYN,Cloud Agent","66.0"
"173355718","227827566","vvbooosea1.sanef-rec.fr","","00:50:56:9c:b3:11","10.45.6.69","fe80::250:56ff:fe9c:b311","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c c5 9e d6 a0 56 60-69 20 4f 09 f0 dd 32 86","No Asset Tag","'+02:00","2026-03-12T11:45:33.000+02:00","cybreconcile","Cloud Agent","3a4a7f04-ade1-4811-b513-86fa27408488","2023-06-07T10:37:31.000+02:00","2026-04-20T19:19:32.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,FreeFlow,Recette,Flux Libre,flux_libre","141.0"
"269316158","299220499","vtdsiaels1.sanef-rec.fr","","00:50:56:9c:69:b1","10.45.1.170","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15760","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f2 4c ab be 7e 59-88 61 ac 1e 41 bf dd d3","No Asset Tag","'+02:00","2026-01-06T13:57:31.000+02:00","cybsecope","Cloud Agent","cc8c6fbd-9bf1-48b9-8d0a-e937aad5fa4a","2024-10-01T10:52:18.000+02:00","2026-04-18T07:09:30.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,BDD-ELA DYN,Recette,Linux Server,Cloud Agent,Elasticsearch","139.0"
"195400913","241773072","vpbotatvv1.sanef.groupe","","00:50:56:90:02:fb","10.41.23.11","fe80::250:56ff:fe90:2fb","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 d4 dd 86 65 f5 16-0b 8c 6e ec d1 4f 4a 7c","No Asset Tag","'+02:00","2026-04-16T15:47:04.000+02:00","cybreconcile","Cloud Agent","dcecd626-4a64-423b-b159-743ec40ae678","2023-10-24T23:32:36.000+02:00","2026-04-16T16:37:59.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,FreeFlow,Flux Libre,Production,flux_libre","140.0"
"415474522","367481217","vpdsiangx2.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:1b:dd","192.168.19.161","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 4e f9 6e 78 ec d3-fa f1 ed 76 57 63 30 fe","","'+02:00","","","Cloud Agent","9f2559d4-1234-49aa-8f55-5057c02d8470","2026-04-13T14:27:05.000+02:00","2026-04-13T14:27:04.000+02:00","x64","2","SCA,VM,PM,GAV","Cloud Agent,OS-LIN-SRV DYN,Linux Server","0.0"
"415486980","367481218","vpdsiangx1.sanef.groupe","","00:00:00:00:00:00, 00:50:56:90:ae:4a","192.168.19.160","::1","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","Server","","","","","","VMware-42 10 8d 88 c9 1d 51 81-80 87 7e a2 d2 d0 a2 4c","","'+02:00","","","Cloud Agent","ec715c55-d9d9-4497-9159-deb3d95c5181","2026-04-13T14:23:28.000+02:00","2026-04-13T14:23:26.000+02:00","x64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","0.0"
"415479841","367480545","vpdsiahap2.sanef.groupe","","00:50:56:90:a5:70","192.168.19.133","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 79 42 7e 15 dd 6d-44 e3 7d 75 da f1 8e f6","","'+02:00","2026-04-13T14:17:29.000+02:00","cybintsys","Cloud Agent","94925ce9-7329-428f-a9fe-48b21f42a1c3","2026-04-13T14:17:35.000+02:00","2026-04-13T14:19:28.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server","0.0"
"415483225","367480191","vpdsiahap1.sanef.groupe","","00:50:56:90:08:f8","192.168.19.132,192.168.19.134","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7680","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 2e 4a 83 50 cb 8e-0e 6c ef 83 29 6e 3c 7a","","'+02:00","2026-04-13T14:11:12.000+02:00","cybintsys","Cloud Agent","d2e411da-48eb-4fa6-8177-640b7de770a9","2026-04-13T14:11:22.000+02:00","2026-04-13T14:13:11.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Linux Server,Cloud Agent","0.0"
"403289818","362453582","vrintaweb2.sanef.groupe","","02:42:78:ef:31:30, 00:50:56:82:ef:41","172.17.0.1,192.168.20.3","fe80::42:78ff:feef:3130,fe80::250:56ff:fe82:ef41","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 fd 8b 9c 89 53 12-a7 fc a4 c1 f5 3c cd 70","No Asset Tag","'+02:00","2026-02-23T13:29:29.000+02:00","husson-ext","Cloud Agent","67172794-53f1-4c5c-9922-dd6e8838fd8f","2026-02-23T15:45:41.000+02:00","2026-04-01T21:54:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","DMZ,Gestion institutionnel,Cloud Agent,OS-LIN-SRV DYN,Linux Server,Recette,Sans,Communication et Collaboration,VRF_INCONNUE,MID-NGINX DYN,BDD-POS DYN","139.0"
"392184545","358112878","srdsiabkp1.sanef-rec.fr","","ec:eb:b8:9d:5f:98","10.43.253.30","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","15293","HPE U41 07/20/2023","CZJ82213V0","","'+02:00","2026-01-14T18:15:28.000+02:00","cybadmsys","Cloud Agent","83b1a7cf-656d-4934-89ac-69be2d111e12","2026-01-14T18:18:30.000+02:00","2026-04-01T10:21:05.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-POS DYN,BDD-ELA DYN,Cloud Agent,OS-LIN-SRV DYN,Linux Server","336.0"
"403260902","362450986","vvbooosea2.sanef-rec.fr","","00:50:56:9c:8c:2a","10.45.6.75","fe80::250:56ff:fe9c:8c2a","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c f8 de c1 d6 0d f9-43 43 4e 03 73 fc 6b d8","No Asset Tag","'+02:00","2026-03-09T17:00:55.000+02:00","cybadmsys","Cloud Agent","77417873-5a3e-49ef-871a-bf0fe50063d6","2026-02-23T15:08:48.000+02:00","2026-04-01T05:34:15.000+02:00","x86_64","2","SCA,VM,PM,GAV","Flux Libre,FreeFlow,Recette,flux_libre,Linux Server,OS-LIN-SRV DYN,Cloud Agent","134.0"
"364171253","346469322","vpdsiaito1.sanef.groupe","","00:50:56:9c:fa:7c","10.46.33.35","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","8","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15731","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 29 1a 4f 84 a5 cf-aa 45 de 5e 04 ad 47 37","No Asset Tag","'+01:00","2025-11-24T16:14:16.000+02:00","cybreconcile","Cloud Agent","322b6db7-30b2-4bb8-a774-afb954e818d0","2025-09-30T11:25:11.000+02:00","2026-03-19T11:36:06.000+02:00","x86_64","3","SCA,VM,PM,GAV","Production,MID-NGINX DYN,OS-LIN-SRV DYN,ITOP,Cloud Agent,Linux Server","490.0"
"269330646","299220500","vtdsiaels2.sanef-rec.fr","","00:50:56:9c:b1:54","10.45.1.171","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 1c 26 34 94 6b 39 1a-41 6e ad b0 05 e4 02 2c","No Asset Tag","'+01:00","2026-01-06T13:59:06.000+02:00","cybadmbdd","Cloud Agent","505b4524-cc17-4108-81d8-1342e34dd5f3","2024-10-01T10:52:14.000+02:00","2026-03-14T04:22:34.000+02:00","x86_64","2","SCA,VM,PM,GAV","BDD-ELA DYN,OS-LIN-SRV DYN,Elasticsearch,Recette,Cloud Agent,Linux Server","140.0"
"177200698","230572089","vraiibsql2","","00:50:56:82:e5:f3","10.45.1.190","fe80::18c1:e4dc:8578:9b13","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","7982","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 77 61 d4 93 28 26-ec 72 e7 64 45 3b 89 cc","No Asset Tag","'+01:00","2024-09-24T15:52:18.000+02:00","cybintsys","Cloud Agent","f2024917-d356-4795-a0cb-71c54797c320","2023-07-05T10:31:24.000+02:00","2026-03-03T12:40:04.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,BDD-POS DYN,Obsolete,BDD,DSI","55.0"
"284390018","309489719","vtdsibpgs3.sanef-rec.fr","","00:50:56:9c:ef:d2","10.45.1.174","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","15761","VMware, Inc. VMW71.00V.21100432.B64.2301110304 01/11/2023","VMware-42 1c 40 0e b3 d6 4a 89-59 fc 75 25 ef 2b 8e c2","No Asset Tag","'+01:00","2026-01-06T16:12:10.000+02:00","cybsecope","Cloud Agent","ce12673a-6c4d-4541-bad9-cf7379504c1e","2024-12-05T13:41:16.000+02:00","2026-02-11T19:19:30.000+02:00","x86_64","2","SCA,VM,GAV","Recette,Linux Server,Cloud Agent,OS-LIN-SRV DYN,BDD-POS DYN,PATRIMOINE","139.0"
"186457322","236788723","vpemvgrid1.sanef.groupe","","00:50:56:98:14:19","192.168.100.134","fe80::250:56ff:fe98:1419","Linux / Server","Red Hat Enterprise Linux Server 7.9","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2400","Intel(R) Xeon(R) CPU E5-2640 v4 @ 2.40GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 18 95 87 91 62 e8 ae-fb b8 a7 90 97 33 30 c4","No Asset Tag","'+01:00","2025-06-03T10:52:46.000+02:00","root","Cloud Agent","47d1d836-0046-46a8-af82-d754165cac46","2023-09-06T10:20:05.000+02:00","2026-02-11T15:27:48.000+02:00","x86_64","4","SCA,VM,PM,GAV","OS-LIN-SRV DYN,Cloud Agent,Linux Server,EMV,PCI Bunker EMV - VLAN Supervision/Admin,DEX","683.0"
"379376176","352802109","srdsiatmp1.sanef.groupe","","08:f1:ea:76:20:78","10.43.253.20","","Linux / Server","Red Hat Enterprise Linux 9.7","9.7","Computers / Server","HPE ProLiant ML350 G10 Server","6","1700","Intel(R) Xeon(R) Bronze 3104 CPU @ 1.70GHz","31496","HPE U41 07/20/2023","CZJ95002KN","","'+01:00","2025-12-15T12:25:22.000+02:00","cybintsys","Cloud Agent","3afff1a8-62a3-4e81-a611-0f02125d4c10","2025-11-25T19:39:12.000+02:00","2026-02-03T16:37:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Linux Server,Cloud Agent,OS-LIN-SRV DYN","325.0"
"160946714","214305484","lampoct1.sanef.groupe","","00:17:A4:77:08:90","10.42.40.140","fe80::217:a4ff:fe77:890","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G7 Server","24","2930","Intel(R) Xeon(R) CPU X5670 @ 2.93GHz","48298","","VCX000020F","","'+01:00","2022-06-20T11:45:34.000+02:00","cybadmsys","Cloud Agent","881f98f1-c501-4042-b9df-c64d6cd7a79a","2023-02-28T16:20:23.000+02:00","2025-11-14T06:06:33.000+02:00","x86_64","3","SCA,VM,GAV","Obsolete,DFIN,Cloud Agent,Linux Server,Satisf'aire,log4j,BDD-POS DYN,OS-LIN-SRV DYN","527.0"
"213853736","251126729","lamppea1","","00:17:A4:77:00:00, 00:17:A4:77:00:04","10.41.20.10,10.41.20.12,192.168.70.10","fe80::217:a4ff:fe77:0,fe80::217:a4ff:fe77:4","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32182","","VCX0000000","","'+01:00","2025-09-23T10:32:45.000+02:00","admpea07","Cloud Agent","59355bb3-2085-4d63-b9b5-39ca69986e8c","2024-02-05T20:00:29.000+02:00","2025-11-14T05:56:44.000+02:00","x86_64","2","SCA,VM,GAV","log4j,DEX,OS-LIN-SRV DYN,BDD-POS DYN,Cloud Agent,Linux Server,Central péage,Obsolete","348.0"
"213859268","251132944","lampadp1","","00:17:A4:77:00:20, 00:17:A4:77:00:24","10.41.20.15,10.41.20.17,10.41.20.19,192.168.70.20","fe80::217:a4ff:fe77:20,fe80::217:a4ff:fe77:24","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32182","","VCX0000002","","'+01:00","2025-05-26T09:59:11.000+02:00","oracle","Cloud Agent","22052064-e40c-4332-b57d-e43591418bdc","2024-02-05T21:10:26.000+02:00","2025-11-14T05:52:10.000+02:00","x86_64","2","SCA,VM,GAV","DEX,OS-LIN-SRV DYN,Obsolete,BDD-POS DYN,Central péage,Cloud Agent,Linux Server,log4j","348.0"
"139144075","198259285","vadvpapp3","","00:50:56:AC:00:77","10.30.11.59","","Linux / Server","Red Hat Enterprise Linux Server 5.6","5.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5963","","VMware-42 2c e1 b7 71 43 b6 86-3c 61 d3 c8 e9 b2 0a d3","No Asset Tag","'+01:00","2025-05-15T10:38:32.000+02:00","cybrecon","Cloud Agent","cee15a96-8f06-4018-8103-839770b1fdb4","2022-09-07T12:13:13.000+02:00","2025-11-14T05:42:31.000+02:00","x86_64","2","SCA,VM,GAV","DEX,ServersInCyberark,log4j,Obsolete,ADV-U,Cloud Agent,Linux Server,OS-LIN-SRV DYN,Production,Gestion commerciale,VRF_INCONNUE","350.0"
"137349545","197589746","vairtom1.sanef.groupe","","00:50:56:AC:00:43","10.42.40.134","","Linux / Server","Red Hat Enterprise Linux Server 5.8","5.8","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v4 @ 3.20GHz","12010","","VMware-56 4d d2 69 8c da 52 b9-43 4d 37 e7 3f b1 4b 3d","No Asset Tag","'+01:00","2023-01-13T12:17:05.000+02:00","cybreconcile","Cloud Agent","21f35f97-dc8b-4b3d-8771-4434127a33cc","2022-08-30T17:17:45.000+02:00","2025-11-14T05:39:04.000+02:00","x86_64","3","SCA,VM,GAV","Obsolete,Aires,Production,VRF_AIRES_DC,Satisf'aire,Cloud Agent,Linux Server,MID-APACHE-TOMCAT DYN,OS-LIN-SRV DYN,DFIN,ServersInCyberark,log4j,BDD-POS DYN","525.0"
"113463686","181096708","vadvpapp1","","00:50:56:AC:00:06","10.30.11.51","","Linux / Server","Red Hat Enterprise Linux Server 5.6","5.6","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","1","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","5963","","VMware-42 2c 75 05 0f 51 69 51-a5 35 f7 07 ab ac 41 95","No Asset Tag","'+01:00","2025-05-15T10:05:04.000+02:00","cybrecon","Cloud Agent","92d7bf22-b54e-474d-86da-56329c4ef959","2022-02-14T16:25:37.000+02:00","2025-11-14T05:30:02.000+02:00","x86_64","2","SCA,VM,GAV","OS-LIN-SRV DYN,Gestion commerciale,Production,Sans,VRF_INCONNUE,DEX,ADV-U,Cloud Agent,Obsolete,Linux Server,log4j","349.0"
"130580382","192830726","lamtpfe1.sanef.groupe","","00:17:A4:77:14:CA","10.45.11.222","fe80::217:a4ff:fe77:14ca","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G8 Server","32","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","64422","","CZ3232T6J5","","'+01:00","2025-06-11T15:43:01.000+02:00","cybsupapp","Cloud Agent","e985d185-db61-458a-850a-d6f7f5ba3130","2022-07-07T10:57:53.000+02:00","2025-11-14T05:26:57.000+02:00","x86_64","2","SCA,VM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV DYN,VRF_INCONNUE,Obsolete,log4j,BDD-POS DYN,MID-APACHE-TOMCAT DYN,DEX,XFB,Recette,Exploitation IT","352.0"
"160941710","214301549","lamppea2","","00:17:A4:77:00:10, 00:17:A4:77:00:14","10.41.20.11,10.41.20.13,10.41.20.14,192.168.70.11","fe80::217:a4ff:fe77:10,fe80::217:a4ff:fe77:14","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32183","","VCX0000001","","'+01:00","2025-09-23T09:59:26.000+02:00","cybreconcile","Cloud Agent","5bf45439-5714-47de-9d06-81c61813cc39","2023-02-28T15:30:58.000+02:00","2025-11-14T05:18:28.000+02:00","x86_64","2","SCA,VM,GAV","DEX,log4j,Cloud Agent,Linux Server,BDD-POS DYN,Obsolete,Central péage,OS-LIN-SRV DYN","348.0"
"213858623","251128418","lampadp2","","00:17:A4:77:00:30, 00:17:A4:77:00:34","10.41.20.16,10.41.20.18,192.168.70.21","fe80::217:a4ff:fe77:30,fe80::217:a4ff:fe77:34","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","32055","","VCX0000003","","'+01:00","2025-05-26T09:18:36.000+02:00","cybreconcile","Cloud Agent","67f8269a-3b2b-474b-9adf-76419084d59e","2024-02-05T20:21:26.000+02:00","2025-11-14T05:17:32.000+02:00","x86_64","2","SCA,VM,GAV","Central péage,log4j,Obsolete,OS-LIN-SRV DYN,Cloud Agent,Linux Server,DEX,BDD-POS DYN","348.0"
"130580114","192828848","lamrsip1","","00:17:A4:77:00:40, 00:17:A4:77:00:44","10.43.254.10,10.43.254.12,192.168.70.30","fe80::217:a4ff:fe77:40,fe80::217:a4ff:fe77:44","Linux / Server","Red Hat Enterprise Linux Server 5.11","5.11","Computers / Server","HPE ProLiant BL460c G6 Server","16","2930","Intel(R) Xeon(R) CPU X5570 @ 2.93GHz","48295","","VCX0000004","","'+01:00","2025-10-09T11:49:09.000+02:00","cybastapp","Cloud Agent","97a0e7ef-d966-4d51-971d-564193fba1ea","2022-07-07T10:47:06.000+02:00","2025-11-14T04:40:47.000+02:00","x86_64","2","SCA,VM,GAV","VRF_LEGACY,Obsolete,DEX,OS-LIN-SRV DYN,BDD-POS DYN,MID-APACHE-TOMCAT DYN,Central péage,log4j,Cloud Agent,Linux Server,Péage,Recette","348.0"
"154878292","208504014","nac.sanef.fr","","","10.44.2.100","","/ Unidentified","UNKNOWN","","Unidentified / Unidentified","Unidentified","","","","","","","","'+01:00","","","Cloud Agent","9bca7598-3d2b-458d-9b2f-f5daf301e1f7","2023-01-10T16:49:15.000+02:00","2025-03-13T06:20:03.000+02:00","x64","2","SCA,VM,GAV","Cloud Agent,Linux Server","0.0"
Can't render this file because it is too large.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,24 @@
Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID
vpaiiaazu1;192.168.230.40;vpaiiaazu1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:37:29Z;N/A;Windows Server, DOM-INF, DSI, BDD-SQL DYN, TYP-VIR, Sans, DMZ, TAG-SEI, Production, Sécurité IT, AD, Cloud Agent, ZONE-DMZ, OS-WIN-SRV DYN, ENV-PRD, OS-WIN-SRV, TAG-SRVEXPOSEINTERNET, VRF_INCONNUE;128129742
VPAIIADNS1;192.168.2.20;VPAIIADNS1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:49:26Z;N/A;"Réseaux et Télécom, Windows Server, OS-WIN-SRV DYN, High, TAG-SRVEXPOSEINTERNET, Cloud Agent, DOM-INF, DNS, OS-WIN-SRV, ENV-PRD, Production, ZONE-DMZ, TAG-SEI, Haute, TYP-VIR, SED, DMZ, VRF_INCONNUE, Critical, Reseau &amp; Telecom";127865511
VPAIIADNS2;192.168.2.21;VPAIIADNS2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:11:18Z;N/A;"DMZ, SED, ZONE-DMZ, ENV-PRD, OS-WIN-SRV, Windows Server, VRF_INCONNUE, DOM-INF, Reseau &amp; Telecom, TAG-SEI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINTERNET, Production, High, Cloud Agent, Haute, TYP-VIR, DNS, Réseaux et Télécom, Critical";127861636
VPAIIADNS3;192.168.2.27;VPAIIADNS3;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:09:00Z;N/A;"Haute, DNS, ENV-PRD, TYP-VIR, Production, TAG-SRVEXPOSEINTERNET, Réseaux et Télécom, SED, ZONE-DMZ, DMZ, Cloud Agent, Windows Server, OS-WIN-SRV, OS-WIN-SRV DYN, TAG-SEI, VRF_INCONNUE, DOM-INF, Critical, Reseau &amp; Telecom, High";127861245
VPAIIADNS4;192.168.2.28;VPAIIADNS4;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:12:20Z;N/A;"High, TYP-VIR, Réseaux et Télécom, Cloud Agent, Production, DOM-INF, DMZ, Reseau &amp; Telecom, VRF_INCONNUE, TAG-SRVEXPOSEINTERNET, Haute, ENV-PRD, DNS, SED, OS-WIN-SRV DYN, OS-WIN-SRV, ZONE-DMZ, Windows Server, Critical, TAG-SEI";127861380
vpbipamod1;192.168.230.19;vpbipamod1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:17:52Z;N/A;OS-WIN-SRV DYN, ENV-PRD, VRF_INCONNUE, Production, Cloud Agent, Windows Server, OS-WIN-SRV, DOM-PEA, TAG-SRVEXPOSEINTERNET, Basse, Modalisa, ZONE-DMZ, TYP-VIR, DMZ, Low, Péage, DSI, Gestion commerciale, TAG-SEI;128140111
vpburaexc1.sanef.groupe;10.42.30.10;vpburaexc1.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:24:52Z;N/A;OS-WIN-SRV DYN, DSI, ENV-PRD, Cloud Agent, TAG-SRVEXPOSEINDIRECT, High, TYP-VIR, EXCHANGE, TAG-SEI, Windows Server, OS-WIN-SRV, DOM-INF, ZONE-DMZ;222529401
vpburaexc2.sanef.groupe;10.42.30.30;vpburaexc2.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893;STATUS_ACTIVE;6.4.1.22;2026-04-22T14:46:49Z;N/A;EXCHANGE, Windows Server, OS-WIN-SRV, ENV-PRD, High, Cloud Agent, ZONE-DMZ, DSI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINDIRECT, TYP-VIR, TAG-SEI, DOM-INF;222570527
vpdecasas4;10.30.11.152;vpdecasas4.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:15:00Z;N/A;DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, TYP-VIR, TAG-SED, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, ZONE-DMZ, OS-LIN-SRV DYN, SAS, DOM-BI, OS-LIN-SRV;411394993
vpdsiaclo1.sanef.groupe;192.168.31.19;vpdsiaclo1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:32:20Z;N/A;ENV-PRD, Owncloud, TAG-SRVEXPOSEINTERNET, TAG-SEI, ZONE-DMZ, TYP-VIR, MID-NGINX DYN, DOM-INF, TAG-SRVEXPOSEINDIRECT, VRF_INCONNUE, OS-LIN-SRV, Cloud Agent, OS-LIN-SRV DYN, Linux Server;156071801
vpdsiawsus1;192.168.18.4;vpdsiawsus1;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:29:32Z;N/A;VRF_INCONNUE, Windows Server, BDD-SQL DYN, TAG-SRVEXPOSEINTERNET, DSI, WSUS, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, TAG-SEI, Cloud Agent, ENV-PRD, DOM-INF;119198010
vpexpbdech1.sanef.groupe;10.41.40.155;vpexpbdech1.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T12:27:06Z;N/A;TAG-SRVEXPOSEINDIRECT, Cloud Agent, Patrimoine, OS-LIN-SRV DYN, DECHETS, OS-LIN-SRV, ServersInCyberark, VRF_TRAFIC_DC, BDD-POS DYN, DEX, TYP-VIR, TAG-SEI, Production, DOM-GES, Obsolete, ZONE-DMZ, ENV-PRD, DOM-INF, Linux Server;137346917
vpgeoagps2;192.168.40.67;vpgeoagps2;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:04:17Z;N/A;DOM-INF, Cloud Agent, ZONE-DMZ, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, TAG-SRVEXPOSEINTERNET, ENV-PRD, TAG-SEI;280014653
vpintaweb2.sanef.groupe;192.168.20.36;vpintaweb2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T13:42:12Z;N/A;TAG-SRVEXPOSEINDIRECT, BDD-POS DYN, TYP-VIR, MID-NGINX DYN, TAG-SEI, Linux Server, ZONE-DMZ, ENV-PRD, Cloud Agent, VRF_INCONNUE, Gestion institutionnel, OS-LIN-SRV DYN, OS-LIN-SRV;159557652
vpintaweb3.sanef.groupe;192.168.20.37;vpintaweb3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:31:56Z;N/A;Gestion institutionnel, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, VRF_INCONNUE, TAG-SEI, Linux Server, ZONE-DMZ, Cloud Agent, OS-LIN-SRV, TYP-VIR, MID-NGINX DYN, BDD-POS DYN, ENV-PRD;159569521
vppeaabst1.sanef.groupe;10.41.20.51;vppeaabst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:12:43Z;N/A;flux_libre, MID-NGINX DYN, ENV-PRD, Cloud Agent, OS-LIN-SRV DYN, Linux Server, ZONE-DMZ, DM-FL, Production, OS-LIN-SRV, TAG-SRVEXPOSEINDIRECT, FreeFlow, TAG-SEI, TYP-VIR, Flux Libre;192389444
vppeaabst2.sanef.groupe;10.41.20.52;vppeaabst2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T16:28:47Z;N/A;Linux Server, ENV-PRD, Production, OS-LIN-SRV DYN, ZONE-DMZ, TYP-VIR, OS-LIN-SRV, flux_libre, DM-FL, FreeFlow, TAG-SRVEXPOSEINDIRECT, TAG-SEI, MID-NGINX DYN, Flux Libre, Cloud Agent;200012633
vppeaabst3.sanef.groupe;10.41.20.37;vppeaabst3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T14:54:30Z;N/A;flux_libre, TYP-VIR, FreeFlow, Linux Server, OS-LIN-SRV, ENV-PRD, MID-NGINX DYN, TAG-SEI, OS-LIN-SRV DYN, DM-FL, Cloud Agent, Flux Libre;216910714
vpsimaxsr1;192.168.230.31;vpsimaxsr1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:30:00Z;N/A;XFB, OS-WIN-SRV DYN, DOM-PEA, TAG-SRVEXPOSEINTERNET, ZONE-DMZ, DOM-INF, TYP-VIR, DEX, TAG-SEI, ENV-PRD, OS-WIN-SRV, Cloud Agent;332979745
vpssiandes1.sanef.groupe;192.168.162.80;vpssiandes1.sanef.groupe;Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8644;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:34:45Z;N/A;DOM-INF, Gestion_PKI, ENV-PRD, TYP-VIR, Production, Windows Server, TAG-SEI, Critical, Cloud Agent, OS-WIN-SRV, ZONE-DMZ, TAG-SRVEXPOSEINTERNET, OS-WIN-SRV DYN, DSI;225456379
VPSSIAPKI3;192.168.90.72;VPSSIAPKI3.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T14:18:17Z;N/A;TAG-SRVEXPOSEINTERNET, DOM-INF, DMZ, OS-WIN-SRV DYN, TYP-VIR, Gestion_PKI, VRF_INCONNUE, Production, Sécurité IT, DSI, Cloud Agent, TAG-SEI, ENV-PRD, OS-WIN-SRV, Windows Server, Sans, ZONE-DMZ;128143034
vrosapsrv1.sanef-rec.fr;10.45.9.67;vrosapsrv1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:15:40Z;N/A;BDD-ELA DYN, Linux Server, TAG-SEI, MID-NGINX DYN, Cloud Agent, OS-LIN-SRV, DEX, Péage, DOM-PEA, ZONE-DMZ, ENV-REC, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, TYP-VIR;181705921
vrsamaext1.recette.adds;192.168.10.3;vrsamaext1.recette.adds;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:29:06Z;N/A;DOM-INF, TAG-SEI, Cloud Agent, TAG-SRVEXPOSEINTERNET, ENV-REC, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, ZONE-DMZ;363318959
1 Nom IP FQDN OS Status Version Check-in Localisation Tags ID
2 vpaiiaazu1 192.168.230.40 vpaiiaazu1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:37:29Z N/A Windows Server, DOM-INF, DSI, BDD-SQL DYN, TYP-VIR, Sans, DMZ, TAG-SEI, Production, Sécurité IT, AD, Cloud Agent, ZONE-DMZ, OS-WIN-SRV DYN, ENV-PRD, OS-WIN-SRV, TAG-SRVEXPOSEINTERNET, VRF_INCONNUE 128129742
3 VPAIIADNS1 192.168.2.20 VPAIIADNS1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T15:49:26Z N/A Réseaux et Télécom, Windows Server, OS-WIN-SRV DYN, High, TAG-SRVEXPOSEINTERNET, Cloud Agent, DOM-INF, DNS, OS-WIN-SRV, ENV-PRD, Production, ZONE-DMZ, TAG-SEI, Haute, TYP-VIR, SED, DMZ, VRF_INCONNUE, Critical, Reseau &amp; Telecom 127865511
4 VPAIIADNS2 192.168.2.21 VPAIIADNS2 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:11:18Z N/A DMZ, SED, ZONE-DMZ, ENV-PRD, OS-WIN-SRV, Windows Server, VRF_INCONNUE, DOM-INF, Reseau &amp; Telecom, TAG-SEI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINTERNET, Production, High, Cloud Agent, Haute, TYP-VIR, DNS, Réseaux et Télécom, Critical 127861636
5 VPAIIADNS3 192.168.2.27 VPAIIADNS3 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T18:09:00Z N/A Haute, DNS, ENV-PRD, TYP-VIR, Production, TAG-SRVEXPOSEINTERNET, Réseaux et Télécom, SED, ZONE-DMZ, DMZ, Cloud Agent, Windows Server, OS-WIN-SRV, OS-WIN-SRV DYN, TAG-SEI, VRF_INCONNUE, DOM-INF, Critical, Reseau &amp; Telecom, High 127861245
6 VPAIIADNS4 192.168.2.28 VPAIIADNS4 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T15:12:20Z N/A High, TYP-VIR, Réseaux et Télécom, Cloud Agent, Production, DOM-INF, DMZ, Reseau &amp; Telecom, VRF_INCONNUE, TAG-SRVEXPOSEINTERNET, Haute, ENV-PRD, DNS, SED, OS-WIN-SRV DYN, OS-WIN-SRV, ZONE-DMZ, Windows Server, Critical, TAG-SEI 127861380
7 vpbipamod1 192.168.230.19 vpbipamod1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:17:52Z N/A OS-WIN-SRV DYN, ENV-PRD, VRF_INCONNUE, Production, Cloud Agent, Windows Server, OS-WIN-SRV, DOM-PEA, TAG-SRVEXPOSEINTERNET, Basse, Modalisa, ZONE-DMZ, TYP-VIR, DMZ, Low, Péage, DSI, Gestion commerciale, TAG-SEI 128140111
8 vpburaexc1.sanef.groupe 10.42.30.10 vpburaexc1.sanef.groupe Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T18:24:52Z N/A OS-WIN-SRV DYN, DSI, ENV-PRD, Cloud Agent, TAG-SRVEXPOSEINDIRECT, High, TYP-VIR, EXCHANGE, TAG-SEI, Windows Server, OS-WIN-SRV, DOM-INF, ZONE-DMZ 222529401
9 vpburaexc2.sanef.groupe 10.42.30.30 vpburaexc2.sanef.groupe Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893 STATUS_ACTIVE 6.4.1.22 2026-04-22T14:46:49Z N/A EXCHANGE, Windows Server, OS-WIN-SRV, ENV-PRD, High, Cloud Agent, ZONE-DMZ, DSI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINDIRECT, TYP-VIR, TAG-SEI, DOM-INF 222570527
10 vpdecasas4 10.30.11.152 vpdecasas4.sanef.groupe Red Hat Enterprise Linux Server 7.9 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:15:00Z N/A DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, TYP-VIR, TAG-SED, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, ZONE-DMZ, OS-LIN-SRV DYN, SAS, DOM-BI, OS-LIN-SRV 411394993
11 vpdsiaclo1.sanef.groupe 192.168.31.19 vpdsiaclo1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:32:20Z N/A ENV-PRD, Owncloud, TAG-SRVEXPOSEINTERNET, TAG-SEI, ZONE-DMZ, TYP-VIR, MID-NGINX DYN, DOM-INF, TAG-SRVEXPOSEINDIRECT, VRF_INCONNUE, OS-LIN-SRV, Cloud Agent, OS-LIN-SRV DYN, Linux Server 156071801
12 vpdsiawsus1 192.168.18.4 vpdsiawsus1 Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:29:32Z N/A VRF_INCONNUE, Windows Server, BDD-SQL DYN, TAG-SRVEXPOSEINTERNET, DSI, WSUS, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, TAG-SEI, Cloud Agent, ENV-PRD, DOM-INF 119198010
13 vpexpbdech1.sanef.groupe 10.41.40.155 vpexpbdech1.sanef.groupe Red Hat Enterprise Linux Server 7.9 STATUS_ACTIVE 7.3.0.40 2026-04-22T12:27:06Z N/A TAG-SRVEXPOSEINDIRECT, Cloud Agent, Patrimoine, OS-LIN-SRV DYN, DECHETS, OS-LIN-SRV, ServersInCyberark, VRF_TRAFIC_DC, BDD-POS DYN, DEX, TYP-VIR, TAG-SEI, Production, DOM-GES, Obsolete, ZONE-DMZ, ENV-PRD, DOM-INF, Linux Server 137346917
14 vpgeoagps2 192.168.40.67 vpgeoagps2 Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T15:04:17Z N/A DOM-INF, Cloud Agent, ZONE-DMZ, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, TAG-SRVEXPOSEINTERNET, ENV-PRD, TAG-SEI 280014653
15 vpintaweb2.sanef.groupe 192.168.20.36 vpintaweb2.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T13:42:12Z N/A TAG-SRVEXPOSEINDIRECT, BDD-POS DYN, TYP-VIR, MID-NGINX DYN, TAG-SEI, Linux Server, ZONE-DMZ, ENV-PRD, Cloud Agent, VRF_INCONNUE, Gestion institutionnel, OS-LIN-SRV DYN, OS-LIN-SRV 159557652
16 vpintaweb3.sanef.groupe 192.168.20.37 vpintaweb3.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T17:31:56Z N/A Gestion institutionnel, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, VRF_INCONNUE, TAG-SEI, Linux Server, ZONE-DMZ, Cloud Agent, OS-LIN-SRV, TYP-VIR, MID-NGINX DYN, BDD-POS DYN, ENV-PRD 159569521
17 vppeaabst1.sanef.groupe 10.41.20.51 vppeaabst1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T17:12:43Z N/A flux_libre, MID-NGINX DYN, ENV-PRD, Cloud Agent, OS-LIN-SRV DYN, Linux Server, ZONE-DMZ, DM-FL, Production, OS-LIN-SRV, TAG-SRVEXPOSEINDIRECT, FreeFlow, TAG-SEI, TYP-VIR, Flux Libre 192389444
18 vppeaabst2.sanef.groupe 10.41.20.52 vppeaabst2.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T16:28:47Z N/A Linux Server, ENV-PRD, Production, OS-LIN-SRV DYN, ZONE-DMZ, TYP-VIR, OS-LIN-SRV, flux_libre, DM-FL, FreeFlow, TAG-SRVEXPOSEINDIRECT, TAG-SEI, MID-NGINX DYN, Flux Libre, Cloud Agent 200012633
19 vppeaabst3.sanef.groupe 10.41.20.37 vppeaabst3.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T14:54:30Z N/A flux_libre, TYP-VIR, FreeFlow, Linux Server, OS-LIN-SRV, ENV-PRD, MID-NGINX DYN, TAG-SEI, OS-LIN-SRV DYN, DM-FL, Cloud Agent, Flux Libre 216910714
20 vpsimaxsr1 192.168.230.31 vpsimaxsr1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:30:00Z N/A XFB, OS-WIN-SRV DYN, DOM-PEA, TAG-SRVEXPOSEINTERNET, ZONE-DMZ, DOM-INF, TYP-VIR, DEX, TAG-SEI, ENV-PRD, OS-WIN-SRV, Cloud Agent 332979745
21 vpssiandes1.sanef.groupe 192.168.162.80 vpssiandes1.sanef.groupe Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8644 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:34:45Z N/A DOM-INF, Gestion_PKI, ENV-PRD, TYP-VIR, Production, Windows Server, TAG-SEI, Critical, Cloud Agent, OS-WIN-SRV, ZONE-DMZ, TAG-SRVEXPOSEINTERNET, OS-WIN-SRV DYN, DSI 225456379
22 VPSSIAPKI3 192.168.90.72 VPSSIAPKI3.sanef.groupe Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T14:18:17Z N/A TAG-SRVEXPOSEINTERNET, DOM-INF, DMZ, OS-WIN-SRV DYN, TYP-VIR, Gestion_PKI, VRF_INCONNUE, Production, Sécurité IT, DSI, Cloud Agent, TAG-SEI, ENV-PRD, OS-WIN-SRV, Windows Server, Sans, ZONE-DMZ 128143034
23 vrosapsrv1.sanef-rec.fr 10.45.9.67 vrosapsrv1.sanef-rec.fr Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T17:15:40Z N/A BDD-ELA DYN, Linux Server, TAG-SEI, MID-NGINX DYN, Cloud Agent, OS-LIN-SRV, DEX, Péage, DOM-PEA, ZONE-DMZ, ENV-REC, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, TYP-VIR 181705921
24 vrsamaext1.recette.adds 192.168.10.3 vrsamaext1.recette.adds Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:29:06Z N/A DOM-INF, TAG-SEI, Cloud Agent, TAG-SRVEXPOSEINTERNET, ENV-REC, OS-WIN-SRV DYN, OS-WIN-SRV, TYP-VIR, ZONE-DMZ 363318959

View File

@ -0,0 +1,11 @@
Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID
vipeahbst1.sanef.groupe;192.168.31.83;vipeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:10:46Z;N/A;Recette, ENV-PPR, FreeFlow, OS-LIN-SRV DYN, TYP-VIR, Flux Libre, Cloud Agent, Linux Server, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, DM-FL, TAG-SED, ZONE-DMZ, flux_libre;238272359
vpburaaov1.sanef.groupe;10.205.0.2;vpburaaov1.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:38:22Z;N/A;"VPN, ZONE-DMZ, OS-WIN-SRV, Compte &amp; Acces, Windows Server, TYP-VIR, DOM-INF, ENV-PRD, TAG-SED, Production, Cloud Agent, High, OS-WIN-SRV DYN, Haute, DSI, TAG-SRVEXPOSEINTERNET";193979918
vpburaaov2.sanef.groupe;10.205.0.3;vpburaaov2.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:10:04Z;N/A;"Haute, ZONE-DMZ, TYP-VIR, OS-WIN-SRV, VPN, Cloud Agent, TAG-SED, TAG-SRVEXPOSEINTERNET, DOM-INF, OS-WIN-SRV DYN, DSI, Compte &amp; Acces, ENV-PRD";391586124
vpburawap1;192.168.162.68;vpburawap1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:30:19Z;N/A;"AD, ENV-PRD, Cloud Agent, TYP-VIR, ZONE-DMZ, DMZ, DOM-INF, Production, VRF_INCONNUE, Sans, TAG-SED, OS-WIN-SRV DYN, DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, OS-WIN-SRV, Compte &amp; Acces";128140865
vpburawap2;192.168.162.69;vpburawap2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:09:01Z;N/A;"DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, Production, OS-WIN-SRV, TAG-SED, DOM-INF, ZONE-DMZ, Compte &amp; Acces, Cloud Agent, Sans, OS-WIN-SRV DYN, AD, ENV-PRD, TYP-VIR, DMZ, VRF_INCONNUE";128137865
vpdecasas4;10.30.11.152;vpdecasas4.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:15:00Z;N/A;DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, TYP-VIR, TAG-SED, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, ZONE-DMZ, OS-LIN-SRV DYN, SAS, DOM-BI, OS-LIN-SRV;411394993
vpintaprx2.sanef.groupe;192.168.20.35;vpintaprx2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:20:05Z;N/A;Production, ZONE-DMZ, OS-LIN-SRV DYN, OS-LIN-SRV, ServersInCyberark, Cloud Agent, ENV-PRD, VRF_INCONNUE, Linux Server, TAG-SRVEXPOSEINTERNET, TAG-SED, Gestion institutionnel, High, TYP-VIR;338807292
vppeahbst1.sanef.groupe;192.168.31.67;vppeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:28:33Z;N/A;OS-LIN-SRV DYN, Flux Libre, DM-FL, ZONE-DMZ, flux_libre, ENV-PRD, TYP-VIR, Production, Linux Server, FreeFlow, Cloud Agent, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, TAG-SED;200710325
vppintaprx1.sanef.groupe;192.168.20.19;vppintaprx1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:53:01Z;N/A;Cloud Agent, TAG-SRVEXPOSEINTERNET, OS-LIN-SRV DYN, TYP-VIR, TAG-SED, VRF_INCONNUE, ENV-PPR, Linux Server, OS-LIN-SRV, ZONE-DMZ, Gestion institutionnel;158184886
vrpeahbst1.sanef-rec.fr;192.168.31.14;vrpeahbst1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:21:51Z;N/A;Cloud Agent, FreeFlow, TAG-SRVEXPOSEINTERNET, Flux Libre, ZONE-DMZ, OS-LIN-SRV, TAG-SED, Recette, ENV-REC, OS-LIN-SRV DYN, flux_libre, TYP-VIR, Linux Server, DM-FL;359802333
1 Nom IP FQDN OS Status Version Check-in Localisation Tags ID
2 vipeahbst1.sanef.groupe 192.168.31.83 vipeahbst1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:10:46Z N/A Recette, ENV-PPR, FreeFlow, OS-LIN-SRV DYN, TYP-VIR, Flux Libre, Cloud Agent, Linux Server, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, DM-FL, TAG-SED, ZONE-DMZ, flux_libre 238272359
3 vpburaaov1.sanef.groupe 10.205.0.2 vpburaaov1.sanef.groupe Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:38:22Z N/A VPN, ZONE-DMZ, OS-WIN-SRV, Compte &amp; Acces, Windows Server, TYP-VIR, DOM-INF, ENV-PRD, TAG-SED, Production, Cloud Agent, High, OS-WIN-SRV DYN, Haute, DSI, TAG-SRVEXPOSEINTERNET 193979918
4 vpburaaov2.sanef.groupe 10.205.0.3 vpburaaov2.sanef.groupe Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:10:04Z N/A Haute, ZONE-DMZ, TYP-VIR, OS-WIN-SRV, VPN, Cloud Agent, TAG-SED, TAG-SRVEXPOSEINTERNET, DOM-INF, OS-WIN-SRV DYN, DSI, Compte &amp; Acces, ENV-PRD 391586124
5 vpburawap1 192.168.162.68 vpburawap1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T15:30:19Z N/A AD, ENV-PRD, Cloud Agent, TYP-VIR, ZONE-DMZ, DMZ, DOM-INF, Production, VRF_INCONNUE, Sans, TAG-SED, OS-WIN-SRV DYN, DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, OS-WIN-SRV, Compte &amp; Acces 128140865
6 vpburawap2 192.168.162.69 vpburawap2 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:09:01Z N/A DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, Production, OS-WIN-SRV, TAG-SED, DOM-INF, ZONE-DMZ, Compte &amp; Acces, Cloud Agent, Sans, OS-WIN-SRV DYN, AD, ENV-PRD, TYP-VIR, DMZ, VRF_INCONNUE 128137865
7 vpdecasas4 10.30.11.152 vpdecasas4.sanef.groupe Red Hat Enterprise Linux Server 7.9 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:15:00Z N/A DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, TYP-VIR, TAG-SED, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, ZONE-DMZ, OS-LIN-SRV DYN, SAS, DOM-BI, OS-LIN-SRV 411394993
8 vpintaprx2.sanef.groupe 192.168.20.35 vpintaprx2.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T17:20:05Z N/A Production, ZONE-DMZ, OS-LIN-SRV DYN, OS-LIN-SRV, ServersInCyberark, Cloud Agent, ENV-PRD, VRF_INCONNUE, Linux Server, TAG-SRVEXPOSEINTERNET, TAG-SED, Gestion institutionnel, High, TYP-VIR 338807292
9 vppeahbst1.sanef.groupe 192.168.31.67 vppeahbst1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:28:33Z N/A OS-LIN-SRV DYN, Flux Libre, DM-FL, ZONE-DMZ, flux_libre, ENV-PRD, TYP-VIR, Production, Linux Server, FreeFlow, Cloud Agent, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, TAG-SED 200710325
10 vppintaprx1.sanef.groupe 192.168.20.19 vppintaprx1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:53:01Z N/A Cloud Agent, TAG-SRVEXPOSEINTERNET, OS-LIN-SRV DYN, TYP-VIR, TAG-SED, VRF_INCONNUE, ENV-PPR, Linux Server, OS-LIN-SRV, ZONE-DMZ, Gestion institutionnel 158184886
11 vrpeahbst1.sanef-rec.fr 192.168.31.14 vrpeahbst1.sanef-rec.fr Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:21:51Z N/A Cloud Agent, FreeFlow, TAG-SRVEXPOSEINTERNET, Flux Libre, ZONE-DMZ, OS-LIN-SRV, TAG-SED, Recette, ENV-REC, OS-LIN-SRV DYN, flux_libre, TYP-VIR, Linux Server, DM-FL 359802333

11
inputs/DMZ/tag-sed.csv Normal file
View File

@ -0,0 +1,11 @@
Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID
vipeahbst1.sanef.groupe;192.168.31.83;vipeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:08:29Z;N/A;Recette, ENV-PPR, FreeFlow, OS-LIN-SRV DYN, EQT-VIR, Flux Libre, Cloud Agent, Linux Server, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, POS-FL, TAG-SED, POS-DMZ, flux_libre;238272359
vpburaaov1.sanef.groupe;10.205.0.2;vpburaaov1.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:38:22Z;N/A;"VPN, POS-DMZ, OS-WIN-SRV, Compte &amp; Acces, Windows Server, EQT-VIR, POS-INF, ENV-PRD, TAG-SED, Production, Cloud Agent, High, OS-WIN-SRV DYN, Haute, DSI, TAG-SRVEXPOSEINTERNET";193979918
vpburaaov2.sanef.groupe;10.205.0.3;vpburaaov2.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:10:04Z;N/A;"Haute, POS-DMZ, EQT-VIR, OS-WIN-SRV, VPN, Cloud Agent, TAG-SED, TAG-SRVEXPOSEINTERNET, POS-INF, OS-WIN-SRV DYN, DSI, Compte &amp; Acces, ENV-PRD";391586124
vpburawap1;192.168.162.68;vpburawap1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:37:49Z;N/A;"AD, ENV-PRD, Cloud Agent, EQT-VIR, POS-DMZ, DMZ, POS-INF, Production, VRF_INCONNUE, Sans, TAG-SED, OS-WIN-SRV DYN, DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, OS-WIN-SRV, Compte &amp; Acces";128140865
vpburawap2;192.168.162.69;vpburawap2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:52:54Z;N/A;"DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, Production, OS-WIN-SRV, TAG-SED, POS-INF, POS-DMZ, Compte &amp; Acces, Cloud Agent, Sans, OS-WIN-SRV DYN, AD, ENV-PRD, EQT-VIR, DMZ, VRF_INCONNUE";128137865
vpdsiawsus1;192.168.18.4;vpdsiawsus1;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:29:32Z;N/A;VRF_INCONNUE, Windows Server, TAG-SED, BDD-SQL DYN, TAG-SRVEXPOSEINTERNET, DSI, WSUS, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, Cloud Agent, ENV-PRD, POS-INF;119198010
vpintaprx2.sanef.groupe;192.168.20.35;vpintaprx2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:20:05Z;N/A;Production, POS-DMZ, OS-LIN-SRV DYN, OS-LIN-SRV, ServersInCyberark, Cloud Agent, ENV-PRD, VRF_INCONNUE, Linux Server, TAG-SRVEXPOSEINTERNET, TAG-SED, Gestion institutionnel, High, EQT-VIR;338807292
vppeahbst1.sanef.groupe;192.168.31.67;vppeahbst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:28:33Z;N/A;OS-LIN-SRV DYN, Flux Libre, POS-FL, POS-DMZ, flux_libre, ENV-PRD, EQT-VIR, Production, Linux Server, FreeFlow, Cloud Agent, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, TAG-SED;200710325
vppintaprx1.sanef.groupe;192.168.20.19;vppintaprx1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:53:01Z;N/A;Cloud Agent, TAG-SRVEXPOSEINTERNET, OS-LIN-SRV DYN, EQT-VIR, TAG-SED, VRF_INCONNUE, ENV-PPR, Linux Server, OS-LIN-SRV, POS-DMZ, Gestion institutionnel;158184886
vrpeahbst1.sanef-rec.fr;192.168.31.14;vrpeahbst1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:21:51Z;N/A;Cloud Agent, FreeFlow, TAG-SRVEXPOSEINTERNET, Flux Libre, POS-DMZ, OS-LIN-SRV, TAG-SED, Recette, ENV-REC, OS-LIN-SRV DYN, flux_libre, EQT-VIR, Linux Server, POS-FL;359802333
1 Nom IP FQDN OS Status Version Check-in Localisation Tags ID
2 vipeahbst1.sanef.groupe 192.168.31.83 vipeahbst1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T18:08:29Z N/A Recette, ENV-PPR, FreeFlow, OS-LIN-SRV DYN, EQT-VIR, Flux Libre, Cloud Agent, Linux Server, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, POS-FL, TAG-SED, POS-DMZ, flux_libre 238272359
3 vpburaaov1.sanef.groupe 10.205.0.2 vpburaaov1.sanef.groupe Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:38:22Z N/A VPN, POS-DMZ, OS-WIN-SRV, Compte &amp; Acces, Windows Server, EQT-VIR, POS-INF, ENV-PRD, TAG-SED, Production, Cloud Agent, High, OS-WIN-SRV DYN, Haute, DSI, TAG-SRVEXPOSEINTERNET 193979918
4 vpburaaov2.sanef.groupe 10.205.0.3 vpburaaov2.sanef.groupe Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:10:04Z N/A Haute, POS-DMZ, EQT-VIR, OS-WIN-SRV, VPN, Cloud Agent, TAG-SED, TAG-SRVEXPOSEINTERNET, POS-INF, OS-WIN-SRV DYN, DSI, Compte &amp; Acces, ENV-PRD 391586124
5 vpburawap1 192.168.162.68 vpburawap1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T18:37:49Z N/A AD, ENV-PRD, Cloud Agent, EQT-VIR, POS-DMZ, DMZ, POS-INF, Production, VRF_INCONNUE, Sans, TAG-SED, OS-WIN-SRV DYN, DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, OS-WIN-SRV, Compte &amp; Acces 128140865
6 vpburawap2 192.168.162.69 vpburawap2 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T18:52:54Z N/A DSI, TAG-SRVEXPOSEINDIRECT, Windows Server, Production, OS-WIN-SRV, TAG-SED, POS-INF, POS-DMZ, Compte &amp; Acces, Cloud Agent, Sans, OS-WIN-SRV DYN, AD, ENV-PRD, EQT-VIR, DMZ, VRF_INCONNUE 128137865
7 vpdsiawsus1 192.168.18.4 vpdsiawsus1 Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:29:32Z N/A VRF_INCONNUE, Windows Server, TAG-SED, BDD-SQL DYN, TAG-SRVEXPOSEINTERNET, DSI, WSUS, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, Cloud Agent, ENV-PRD, POS-INF 119198010
8 vpintaprx2.sanef.groupe 192.168.20.35 vpintaprx2.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T17:20:05Z N/A Production, POS-DMZ, OS-LIN-SRV DYN, OS-LIN-SRV, ServersInCyberark, Cloud Agent, ENV-PRD, VRF_INCONNUE, Linux Server, TAG-SRVEXPOSEINTERNET, TAG-SED, Gestion institutionnel, High, EQT-VIR 338807292
9 vppeahbst1.sanef.groupe 192.168.31.67 vppeahbst1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:28:33Z N/A OS-LIN-SRV DYN, Flux Libre, POS-FL, POS-DMZ, flux_libre, ENV-PRD, EQT-VIR, Production, Linux Server, FreeFlow, Cloud Agent, OS-LIN-SRV, TAG-SRVEXPOSEINTERNET, TAG-SED 200710325
10 vppintaprx1.sanef.groupe 192.168.20.19 vppintaprx1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:53:01Z N/A Cloud Agent, TAG-SRVEXPOSEINTERNET, OS-LIN-SRV DYN, EQT-VIR, TAG-SED, VRF_INCONNUE, ENV-PPR, Linux Server, OS-LIN-SRV, POS-DMZ, Gestion institutionnel 158184886
11 vrpeahbst1.sanef-rec.fr 192.168.31.14 vrpeahbst1.sanef-rec.fr Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:21:51Z N/A Cloud Agent, FreeFlow, TAG-SRVEXPOSEINTERNET, Flux Libre, POS-DMZ, OS-LIN-SRV, TAG-SED, Recette, ENV-REC, OS-LIN-SRV DYN, flux_libre, EQT-VIR, Linux Server, POS-FL 359802333

View File

@ -0,0 +1,12 @@
"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score"
"128137865","191075741","vpburawap2","VPBURAWAP2","00:50:56:82:B9:E6","192.168.162.69","fe80::e927:80d:48e6:e7ba","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","8192","Phoenix Technologies LTD 6.00","VMware-4c 46 02 42 c5 5f 4c 05-78 4f 03 0a 88 0d 03 38","NoAssetTag","'+02:00","2026-04-16T15:01:25.000+02:00","Administrateur","Cloud Agent","6d2c3536-00e7-41d7-aee3-590b64818ecf","2022-06-16T11:32:15.000+02:00","2026-04-22T20:52:53.000+02:00","64-Bit","4","SCA,VM,PM,GAV","AD,EQT-VIR,TAG-SED,OS-WIN-SRV,OS-WIN-SRV DYN,ENV-PRD,Production,Compte & Acces,Sans,DMZ,POS-INF,VRF_INCONNUE,POS-DMZ,Windows Server,Cloud Agent,TAG-SRVEXPOSEINDIRECT,DSI","0.0"
"128140865","191076817","vpburawap1","VPBURAWAP1","00:50:56:82:5B:D4","192.168.162.68","fe80::bd50:f9cc:1fde:b9c8","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 2a 26 a5 60 4a 40-8b 7a 39 2e ea 4a 33 d1","NoAssetTag","'+02:00","2026-04-15T15:45:25.000+02:00","Administrateur","Cloud Agent","cb6e3115-fd28-47a0-b69c-d38f10a466be","2022-06-16T11:55:13.000+02:00","2026-04-22T20:37:48.000+02:00","64-Bit","4","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,OS-WIN-SRV,POS-INF,EQT-VIR,Windows Server,TAG-SED,AD,ENV-PRD,POS-DMZ,DMZ,Production,Compte & Acces,Sans,VRF_INCONNUE,DSI,TAG-SRVEXPOSEINDIRECT","0.0"
"238272359","269262153","vipeahbst1.sanef.groupe","","00:50:56:90:10:e3","192.168.31.83","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 10 de 88 b6 2b cd 2b-3c 44 43 0e b9 e9 28 23","No Asset Tag","'+02:00","2026-04-14T10:29:18.000+02:00","cybsecope","Cloud Agent","b46fa68f-ff5c-405c-bd2d-5cad329b7181","2024-05-21T14:50:12.000+02:00","2026-04-22T20:08:28.000+02:00","x86_64","4","SCA,VM,PM,GAV","ENV-PPR,EQT-VIR,FreeFlow,OS-LIN-SRV,POS-FL,TAG-SED,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,flux_libre,Flux Libre,Cloud Agent,Linux Server,POS-DMZ,Recette","132.0"
"193979918","241187013","vpburaaov1.sanef.groupe","VPBURAAOV1","00:50:56:9C:F8:67, 00:50:56:9C:29:C6","192.168.212.34,10.205.0.2","fe80::5834:ed7b:9857:836f,fe80::6cab:ada:fca1:a136","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","12","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 1c ad 2c bc b1 54 5f-f4 77 34 de 1a 89 cf 09","NoAssetTag","'+02:00","2026-03-19T11:55:38.000+02:00","SANEF.GROUPE\atrad@sanef.com","Cloud Agent","38d0f6d8-38ff-488f-91c6-e3670f7b747c","2023-10-18T09:07:27.000+02:00","2026-04-22T19:38:21.000+02:00","64-Bit","5","SCA,VM,PM,GAV","DSI,OS-WIN-SRV DYN,VPN,TAG-SED,POS-INF,POS-DMZ,EQT-VIR,OS-WIN-SRV,Compte & Acces,Cloud Agent,Windows Server,High,TAG-SRVEXPOSEINTERNET,Production,Haute,ENV-PRD","160.0"
"338807292","336780149","vpintaprx2.sanef.groupe","","00:50:56:82:0d:77","192.168.20.35","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024","VMware-42 02 46 17 6e 3f 09 37-1d fd 03 38 fd fb 2e 79","No Asset Tag","'+02:00","2026-04-15T14:51:46.000+02:00","cybreconcile","Cloud Agent","f6767056-31a2-4cd1-9c8a-288474c49fce","2025-07-03T10:02:20.000+02:00","2026-04-22T19:20:04.000+02:00","x86_64","4","SCA,VM,GAV","POS-DMZ,OS-LIN-SRV DYN,EQT-VIR,Linux Server,Cloud Agent,TAG-SED,Gestion institutionnel,TAG-SRVEXPOSEINTERNET,OS-LIN-SRV,ENV-PRD,High,VRF_INCONNUE,Production,ServersInCyberark","132.0"
"158184886","210914051","vppintaprx1.sanef.groupe","","00:50:56:82:66:76","192.168.20.19","fe80::250:56ff:fe82:6676","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7697","VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020","VMware-42 02 98 5e 01 55 5c ea-d6 a7 9f f8 28 64 bc a9","No Asset Tag","'+02:00","2026-04-14T14:21:02.000+02:00","cybreconcile","Cloud Agent","7ddfba67-cd2f-4aad-85b8-b9b1d639cab3","2023-02-06T11:51:10.000+02:00","2026-04-22T20:41:15.000+02:00","x86_64","4","SCA,VM,PM,GAV","EQT-VIR,VRF_INCONNUE,TAG-SRVEXPOSEINTERNET,TAG-SED,POS-DMZ,Gestion institutionnel,OS-LIN-SRV,OS-LIN-SRV DYN,ENV-PPR,Cloud Agent,Linux Server","132.0"
"119198010","191556755","vpdsiawsus1","VPDSIAWSUS1","00:50:56:82:92:FF","192.168.18.4","fe80::820c:cb93:ba68:92d0","Windows / Server","Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit","21H2","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","16383","VMware, Inc. VMW71.00V.21100432.B64.2301110304","VMware-42 02 7c 98 96 cc 53 df-9a 07 61 3d 1c b5 54 8d","NoAssetTag","'+02:00","2026-04-15T15:18:13.000+02:00","kmoad-ext","Cloud Agent","a77ea24f-21a4-476a-854f-886159937d56","2022-04-01T10:18:28.000+02:00","2026-04-22T18:29:31.000+02:00","64-Bit","4","SCA,VM,PM,GAV","VRF_INCONNUE,DSI,TAG-SED,OS-WIN-SRV,ENV-PRD,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,EQT-VIR,Windows Server,POS-INF,TAG-SRVEXPOSEINTERNET,WSUS","0.0"
"391586124","357917326","vpburaaov2.sanef.groupe","VPBURAAOV2","00:50:56:9C:72:71, 00:50:56:82:FE:14","10.205.0.3,192.168.212.35","fe80::2d68:92e0:5fee:78ff,fe80::3c99:3958:38b:4ed6","Windows / Server","Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit","1607","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","6","2295","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","65535","Phoenix Technologies LTD 6.00","VMware-42 02 3f 05 e0 87 0c 33-60 e8 a3 82 20 5d 77 6e","NoAssetTag","'+02:00","2026-04-22T17:22:22.000+02:00","CYBSECOPE","Cloud Agent","b4048677-779f-4d5f-8512-067be6107411","2026-01-13T11:07:36.000+02:00","2026-04-22T18:10:03.000+02:00","64-Bit","5","SCA,VM,PM,GAV","POS-INF,Haute,VPN,Compte & Acces,DSI,TAG-SRVEXPOSEINTERNET,TAG-SED,POS-DMZ,OS-WIN-SRV DYN,Cloud Agent,EQT-VIR,OS-WIN-SRV,ENV-PRD","130.0"
"200710325","244490967","vppeahbst1.sanef.groupe","","00:50:56:90:5f:20","192.168.31.67","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021","VMware-42 10 24 00 49 92 a6 38-67 0d 23 53 6e bd 74 64","No Asset Tag","'+02:00","2026-04-02T06:52:57.000+02:00","cybreconcile","Cloud Agent","a87f553d-d953-4403-97c1-3f7efa4e73bb","2023-11-24T12:50:45.000+02:00","2026-04-22T20:34:32.000+02:00","x86_64","4","SCA,VM,PM,GAV","POS-DMZ,EQT-VIR,TAG-SED,TAG-SRVEXPOSEINTERNET,Cloud Agent,Linux Server,OS-LIN-SRV DYN,OS-LIN-SRV,Production,FreeFlow,Flux Libre,ENV-PRD,flux_libre,POS-FL","132.0"
"359802333","344907561","vrpeahbst1.sanef-rec.fr","","00:50:56:9c:8a:e8","192.168.31.14","","Linux / Server","Red Hat Enterprise Linux 8.10","8.10","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2300","Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz","7697","VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025","VMware-42 1c e4 3c bb 93 a4 3d-cb 11 9e 0b ee 2c 91 f3","No Asset Tag","'+02:00","2026-04-08T11:05:10.000+02:00","root","Cloud Agent","bc9760af-f453-400d-a64a-5ca2536ef0a6","2025-09-15T15:57:45.000+02:00","2026-04-22T20:02:18.000+02:00","x86_64","4","SCA,VM,GAV","ENV-REC,flux_libre,TAG-SED,TAG-SRVEXPOSEINTERNET,Recette,FreeFlow,Flux Libre,OS-LIN-SRV,OS-LIN-SRV DYN,EQT-VIR,POS-FL,POS-DMZ,Linux Server,Cloud Agent","132.0"
"379881919","352998633","vpvpnaems1.sanef.groupe","","","10.43.192.125","","Linux / Unidentified","Canonical Ubuntu","","Computers / Unidentified","Computers","","","","","","","","","","","IP Scanner","","2025-11-27T20:00:09.000+02:00","2026-01-19T19:45:32.000+02:00","","2","VM,GAV","EQT-VIR,TAG-SED,POS-INF,ENV-PRD","47.0"
1 Asset ID Host ID Asset Name NetBIOS Name MAC Address IPV4 Address IPV6 Address Operating System Category Operating System Operating System Version Hardware Category Hardware CPU Count CPU Speed (MHz) CPU Description Total Memory (MB) BIOS Description BIOS Serial Number BIOS Asset Tag Timezone Last System Boot Last Logged On User Inventory Source Agent ID Inventory Created On Inventory Last Updated On Architecture CriticalityScore Modules Tags TruRisk Score
2 128137865 191075741 vpburawap2 VPBURAWAP2 00:50:56:82:B9:E6 192.168.162.69 fe80::e927:80d:48e6:e7ba Windows / Server Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit 1607 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 2 3196 Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz 8192 Phoenix Technologies LTD 6.00 VMware-4c 46 02 42 c5 5f 4c 05-78 4f 03 0a 88 0d 03 38 NoAssetTag '+02:00 2026-04-16T15:01:25.000+02:00 Administrateur Cloud Agent 6d2c3536-00e7-41d7-aee3-590b64818ecf 2022-06-16T11:32:15.000+02:00 2026-04-22T20:52:53.000+02:00 64-Bit 4 SCA,VM,PM,GAV AD,EQT-VIR,TAG-SED,OS-WIN-SRV,OS-WIN-SRV DYN,ENV-PRD,Production,Compte & Acces,Sans,DMZ,POS-INF,VRF_INCONNUE,POS-DMZ,Windows Server,Cloud Agent,TAG-SRVEXPOSEINDIRECT,DSI 0.0
3 128140865 191076817 vpburawap1 VPBURAWAP1 00:50:56:82:5B:D4 192.168.162.68 fe80::bd50:f9cc:1fde:b9c8 Windows / Server Microsoft Windows Server 2016 Standard (1607 Build 14393.9060) 64-Bit 1607 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 2 2295 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 8191 Phoenix Technologies LTD 6.00 VMware-42 02 2a 26 a5 60 4a 40-8b 7a 39 2e ea 4a 33 d1 NoAssetTag '+02:00 2026-04-15T15:45:25.000+02:00 Administrateur Cloud Agent cb6e3115-fd28-47a0-b69c-d38f10a466be 2022-06-16T11:55:13.000+02:00 2026-04-22T20:37:48.000+02:00 64-Bit 4 SCA,VM,PM,GAV Cloud Agent,OS-WIN-SRV DYN,OS-WIN-SRV,POS-INF,EQT-VIR,Windows Server,TAG-SED,AD,ENV-PRD,POS-DMZ,DMZ,Production,Compte & Acces,Sans,VRF_INCONNUE,DSI,TAG-SRVEXPOSEINDIRECT 0.0
4 238272359 269262153 vipeahbst1.sanef.groupe 00:50:56:90:10:e3 192.168.31.83 Linux / Server Red Hat Enterprise Linux 8.10 8.10 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 2300 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 7697 VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025 VMware-42 10 de 88 b6 2b cd 2b-3c 44 43 0e b9 e9 28 23 No Asset Tag '+02:00 2026-04-14T10:29:18.000+02:00 cybsecope Cloud Agent b46fa68f-ff5c-405c-bd2d-5cad329b7181 2024-05-21T14:50:12.000+02:00 2026-04-22T20:08:28.000+02:00 x86_64 4 SCA,VM,PM,GAV ENV-PPR,EQT-VIR,FreeFlow,OS-LIN-SRV,POS-FL,TAG-SED,OS-LIN-SRV DYN,TAG-SRVEXPOSEINTERNET,flux_libre,Flux Libre,Cloud Agent,Linux Server,POS-DMZ,Recette 132.0
5 193979918 241187013 vpburaaov1.sanef.groupe VPBURAAOV1 00:50:56:9C:F8:67, 00:50:56:9C:29:C6 192.168.212.34,10.205.0.2 fe80::5834:ed7b:9857:836f,fe80::6cab:ada:fca1:a136 Windows / Server Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit 1607 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 12 2295 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 65535 Phoenix Technologies LTD 6.00 VMware-42 1c ad 2c bc b1 54 5f-f4 77 34 de 1a 89 cf 09 NoAssetTag '+02:00 2026-03-19T11:55:38.000+02:00 SANEF.GROUPE\atrad@sanef.com Cloud Agent 38d0f6d8-38ff-488f-91c6-e3670f7b747c 2023-10-18T09:07:27.000+02:00 2026-04-22T19:38:21.000+02:00 64-Bit 5 SCA,VM,PM,GAV DSI,OS-WIN-SRV DYN,VPN,TAG-SED,POS-INF,POS-DMZ,EQT-VIR,OS-WIN-SRV,Compte & Acces,Cloud Agent,Windows Server,High,TAG-SRVEXPOSEINTERNET,Production,Haute,ENV-PRD 160.0
6 338807292 336780149 vpintaprx2.sanef.groupe 00:50:56:82:0d:77 192.168.20.35 Linux / Server Red Hat Enterprise Linux 8.10 8.10 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 2 2300 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 7697 VMware, Inc. VMW71.00V.24224532.B64.2408191458 08/19/2024 VMware-42 02 46 17 6e 3f 09 37-1d fd 03 38 fd fb 2e 79 No Asset Tag '+02:00 2026-04-15T14:51:46.000+02:00 cybreconcile Cloud Agent f6767056-31a2-4cd1-9c8a-288474c49fce 2025-07-03T10:02:20.000+02:00 2026-04-22T19:20:04.000+02:00 x86_64 4 SCA,VM,GAV POS-DMZ,OS-LIN-SRV DYN,EQT-VIR,Linux Server,Cloud Agent,TAG-SED,Gestion institutionnel,TAG-SRVEXPOSEINTERNET,OS-LIN-SRV,ENV-PRD,High,VRF_INCONNUE,Production,ServersInCyberark 132.0
7 158184886 210914051 vppintaprx1.sanef.groupe 00:50:56:82:66:76 192.168.20.19 fe80::250:56ff:fe82:6676 Linux / Server Red Hat Enterprise Linux 8.10 8.10 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 2 3200 Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz 7697 VMware, Inc. VMW71.00V.0.B64.2008052155 08/05/2020 VMware-42 02 98 5e 01 55 5c ea-d6 a7 9f f8 28 64 bc a9 No Asset Tag '+02:00 2026-04-14T14:21:02.000+02:00 cybreconcile Cloud Agent 7ddfba67-cd2f-4aad-85b8-b9b1d639cab3 2023-02-06T11:51:10.000+02:00 2026-04-22T20:41:15.000+02:00 x86_64 4 SCA,VM,PM,GAV EQT-VIR,VRF_INCONNUE,TAG-SRVEXPOSEINTERNET,TAG-SED,POS-DMZ,Gestion institutionnel,OS-LIN-SRV,OS-LIN-SRV DYN,ENV-PPR,Cloud Agent,Linux Server 132.0
8 119198010 191556755 vpdsiawsus1 VPDSIAWSUS1 00:50:56:82:92:FF 192.168.18.4 fe80::820c:cb93:ba68:92d0 Windows / Server Microsoft Windows Server 2022 Standard (21H2 Build 20348.5020) 64-Bit 21H2 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 2295 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 16383 VMware, Inc. VMW71.00V.21100432.B64.2301110304 VMware-42 02 7c 98 96 cc 53 df-9a 07 61 3d 1c b5 54 8d NoAssetTag '+02:00 2026-04-15T15:18:13.000+02:00 kmoad-ext Cloud Agent a77ea24f-21a4-476a-854f-886159937d56 2022-04-01T10:18:28.000+02:00 2026-04-22T18:29:31.000+02:00 64-Bit 4 SCA,VM,PM,GAV VRF_INCONNUE,DSI,TAG-SED,OS-WIN-SRV,ENV-PRD,BDD-SQL DYN,OS-WIN-SRV DYN,Cloud Agent,EQT-VIR,Windows Server,POS-INF,TAG-SRVEXPOSEINTERNET,WSUS 0.0
9 391586124 357917326 vpburaaov2.sanef.groupe VPBURAAOV2 00:50:56:9C:72:71, 00:50:56:82:FE:14 10.205.0.3,192.168.212.35 fe80::2d68:92e0:5fee:78ff,fe80::3c99:3958:38b:4ed6 Windows / Server Microsoft Windows Server 2016 Standard (1607 Build 14393.8957) 64-Bit 1607 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 6 2295 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 65535 Phoenix Technologies LTD 6.00 VMware-42 02 3f 05 e0 87 0c 33-60 e8 a3 82 20 5d 77 6e NoAssetTag '+02:00 2026-04-22T17:22:22.000+02:00 CYBSECOPE Cloud Agent b4048677-779f-4d5f-8512-067be6107411 2026-01-13T11:07:36.000+02:00 2026-04-22T18:10:03.000+02:00 64-Bit 5 SCA,VM,PM,GAV POS-INF,Haute,VPN,Compte & Acces,DSI,TAG-SRVEXPOSEINTERNET,TAG-SED,POS-DMZ,OS-WIN-SRV DYN,Cloud Agent,EQT-VIR,OS-WIN-SRV,ENV-PRD 130.0
10 200710325 244490967 vppeahbst1.sanef.groupe 00:50:56:90:5f:20 192.168.31.67 Linux / Server Red Hat Enterprise Linux 8.10 8.10 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 2300 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 7697 VMware, Inc. VMW71.00V.18227214.B64.2106252220 06/25/2021 VMware-42 10 24 00 49 92 a6 38-67 0d 23 53 6e bd 74 64 No Asset Tag '+02:00 2026-04-02T06:52:57.000+02:00 cybreconcile Cloud Agent a87f553d-d953-4403-97c1-3f7efa4e73bb 2023-11-24T12:50:45.000+02:00 2026-04-22T20:34:32.000+02:00 x86_64 4 SCA,VM,PM,GAV POS-DMZ,EQT-VIR,TAG-SED,TAG-SRVEXPOSEINTERNET,Cloud Agent,Linux Server,OS-LIN-SRV DYN,OS-LIN-SRV,Production,FreeFlow,Flux Libre,ENV-PRD,flux_libre,POS-FL 132.0
11 359802333 344907561 vrpeahbst1.sanef-rec.fr 00:50:56:9c:8a:e8 192.168.31.14 Linux / Server Red Hat Enterprise Linux 8.10 8.10 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 2300 Intel(R) Xeon(R) Silver 4316 CPU @ 2.30GHz 7697 VMware, Inc. VMW71.00V.24504846.B64.2501180334 01/18/2025 VMware-42 1c e4 3c bb 93 a4 3d-cb 11 9e 0b ee 2c 91 f3 No Asset Tag '+02:00 2026-04-08T11:05:10.000+02:00 root Cloud Agent bc9760af-f453-400d-a64a-5ca2536ef0a6 2025-09-15T15:57:45.000+02:00 2026-04-22T20:02:18.000+02:00 x86_64 4 SCA,VM,GAV ENV-REC,flux_libre,TAG-SED,TAG-SRVEXPOSEINTERNET,Recette,FreeFlow,Flux Libre,OS-LIN-SRV,OS-LIN-SRV DYN,EQT-VIR,POS-FL,POS-DMZ,Linux Server,Cloud Agent 132.0
12 379881919 352998633 vpvpnaems1.sanef.groupe 10.43.192.125 Linux / Unidentified Canonical Ubuntu Computers / Unidentified Computers IP Scanner 2025-11-27T20:00:09.000+02:00 2026-01-19T19:45:32.000+02:00 2 VM,GAV EQT-VIR,TAG-SED,POS-INF,ENV-PRD 47.0

23
inputs/DMZ/tag-sei.csv Normal file
View File

@ -0,0 +1,23 @@
Nom;IP;FQDN;OS;Status;Version;Check-in;Localisation;Tags;ID
vpaiiaazu1;192.168.230.40;vpaiiaazu1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:37:29Z;N/A;Windows Server, POS-INF, DSI, BDD-SQL DYN, EQT-VIR, Sans, DMZ, TAG-SEI, Production, Sécurité IT, AD, Cloud Agent, POS-DMZ, OS-WIN-SRV DYN, ENV-PRD, OS-WIN-SRV, TAG-SRVEXPOSEINTERNET, VRF_INCONNUE;128129742
VPAIIADNS1;192.168.2.20;VPAIIADNS1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:49:26Z;N/A;"Réseaux et Télécom, Windows Server, OS-WIN-SRV DYN, High, TAG-SRVEXPOSEINTERNET, Cloud Agent, POS-INF, DNS, OS-WIN-SRV, ENV-PRD, Production, POS-DMZ, TAG-SEI, Haute, EQT-VIR, SED, DMZ, VRF_INCONNUE, Critical, Reseau &amp; Telecom";127865511
VPAIIADNS2;192.168.2.21;VPAIIADNS2;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:11:18Z;N/A;"DMZ, SED, POS-DMZ, ENV-PRD, OS-WIN-SRV, Windows Server, VRF_INCONNUE, POS-INF, Reseau &amp; Telecom, TAG-SEI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINTERNET, Production, High, Cloud Agent, Haute, EQT-VIR, DNS, Réseaux et Télécom, Critical";127861636
VPAIIADNS3;192.168.2.27;VPAIIADNS3;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:55:34Z;N/A;"Haute, DNS, ENV-PRD, EQT-VIR, Production, TAG-SRVEXPOSEINTERNET, Réseaux et Télécom, SED, POS-DMZ, DMZ, Cloud Agent, Windows Server, OS-WIN-SRV, OS-WIN-SRV DYN, TAG-SEI, VRF_INCONNUE, POS-INF, Critical, Reseau &amp; Telecom, High";127861245
VPAIIADNS4;192.168.2.28;VPAIIADNS4;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:10:03Z;N/A;"High, EQT-VIR, Réseaux et Télécom, Cloud Agent, Production, POS-INF, DMZ, Reseau &amp; Telecom, VRF_INCONNUE, TAG-SRVEXPOSEINTERNET, Haute, ENV-PRD, DNS, SED, OS-WIN-SRV DYN, OS-WIN-SRV, POS-DMZ, Windows Server, Critical, TAG-SEI";127861380
vpbipamod1;192.168.230.19;vpbipamod1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:17:52Z;N/A;OS-WIN-SRV DYN, ENV-PRD, VRF_INCONNUE, Production, Cloud Agent, Windows Server, OS-WIN-SRV, POS-PEA, TAG-SRVEXPOSEINTERNET, Basse, Modalisa, POS-DMZ, EQT-VIR, DMZ, Low, Péage, DSI, Gestion commerciale, TAG-SEI;128140111
vpburaexc1.sanef.groupe;10.42.30.10;vpburaexc1.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T18:24:52Z;N/A;OS-WIN-SRV DYN, DSI, ENV-PRD, Cloud Agent, TAG-SRVEXPOSEINDIRECT, High, EQT-VIR, EXCHANGE, TAG-SEI, Windows Server, OS-WIN-SRV, POS-INF, POS-DMZ;222529401
vpburaexc2.sanef.groupe;10.42.30.30;vpburaexc2.sanef.groupe;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:30:42Z;N/A;EXCHANGE, Windows Server, OS-WIN-SRV, ENV-PRD, High, Cloud Agent, POS-DMZ, DSI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINDIRECT, EQT-VIR, TAG-SEI, POS-INF;222570527
vpdecasas4;10.30.11.152;vpdecasas4.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:01:06Z;N/A;DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, EQT-VIR, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, POS-DMZ, OS-LIN-SRV DYN, SAS, POS-BI, OS-LIN-SRV;411394993
vpdsiaclo1.sanef.groupe;192.168.31.19;vpdsiaclo1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T15:32:20Z;N/A;ENV-PRD, Owncloud, TAG-SRVEXPOSEINTERNET, TAG-SEI, POS-DMZ, EQT-VIR, MID-NGINX DYN, POS-INF, TAG-SRVEXPOSEINDIRECT, VRF_INCONNUE, OS-LIN-SRV, Cloud Agent, OS-LIN-SRV DYN, Linux Server;156071801
vpexpbdech1.sanef.groupe;10.41.40.155;vpexpbdech1.sanef.groupe;Red Hat Enterprise Linux Server 7.9;STATUS_ACTIVE;7.3.0.40;2026-04-22T12:27:06Z;N/A;TAG-SRVEXPOSEINDIRECT, Cloud Agent, Patrimoine, OS-LIN-SRV DYN, DECHETS, OS-LIN-SRV, ServersInCyberark, VRF_TRAFIC_DC, BDD-POS DYN, DEX, EQT-VIR, TAG-SEI, Production, POS-GES, Obsolete, POS-DMZ, ENV-PRD, POS-INF, Linux Server;137346917
vpgeoagps2;192.168.40.67;vpgeoagps2;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T15:04:17Z;N/A;POS-INF, Cloud Agent, POS-DMZ, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, TAG-SRVEXPOSEINTERNET, ENV-PRD, TAG-SEI;280014653
vpintaweb2.sanef.groupe;192.168.20.36;vpintaweb2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:01:24Z;N/A;TAG-SRVEXPOSEINDIRECT, BDD-POS DYN, EQT-VIR, MID-NGINX DYN, TAG-SEI, Linux Server, POS-DMZ, ENV-PRD, Cloud Agent, VRF_INCONNUE, Gestion institutionnel, OS-LIN-SRV DYN, OS-LIN-SRV;159557652
vpintaweb3.sanef.groupe;192.168.20.37;vpintaweb3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:35:47Z;N/A;Gestion institutionnel, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, VRF_INCONNUE, TAG-SEI, Linux Server, POS-DMZ, Cloud Agent, OS-LIN-SRV, EQT-VIR, MID-NGINX DYN, BDD-POS DYN, ENV-PRD;159569521
vppeaabst1.sanef.groupe;10.41.20.51;vppeaabst1.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T18:54:33Z;N/A;flux_libre, MID-NGINX DYN, ENV-PRD, Cloud Agent, OS-LIN-SRV DYN, Linux Server, POS-DMZ, POS-FL, Production, OS-LIN-SRV, TAG-SRVEXPOSEINDIRECT, FreeFlow, TAG-SEI, EQT-VIR, Flux Libre;192389444
vppeaabst2.sanef.groupe;10.41.20.52;vppeaabst2.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T16:28:47Z;N/A;Linux Server, ENV-PRD, Production, OS-LIN-SRV DYN, POS-DMZ, EQT-VIR, OS-LIN-SRV, flux_libre, POS-FL, FreeFlow, TAG-SRVEXPOSEINDIRECT, TAG-SEI, MID-NGINX DYN, Flux Libre, Cloud Agent;200012633
vppeaabst3.sanef.groupe;10.41.20.37;vppeaabst3.sanef.groupe;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T14:54:30Z;N/A;flux_libre, EQT-VIR, FreeFlow, Linux Server, OS-LIN-SRV, ENV-PRD, MID-NGINX DYN, TAG-SEI, OS-LIN-SRV DYN, POS-FL, Cloud Agent, Flux Libre;216910714
vpsimaxsr1;192.168.230.31;vpsimaxsr1;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T16:30:00Z;N/A;XFB, OS-WIN-SRV DYN, POS-PEA, TAG-SRVEXPOSEINTERNET, POS-DMZ, POS-INF, EQT-VIR, DEX, TAG-SEI, ENV-PRD, OS-WIN-SRV, Cloud Agent;332979745
vpssiandes1.sanef.groupe;192.168.162.80;vpssiandes1.sanef.groupe;Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8644;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:34:45Z;N/A;POS-INF, Gestion_PKI, ENV-PRD, EQT-VIR, Production, Windows Server, TAG-SEI, Critical, Cloud Agent, OS-WIN-SRV, POS-DMZ, TAG-SRVEXPOSEINTERNET, OS-WIN-SRV DYN, DSI;225456379
VPSSIAPKI3;192.168.90.72;VPSSIAPKI3.sanef.groupe;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:10:46Z;N/A;TAG-SRVEXPOSEINTERNET, POS-INF, DMZ, OS-WIN-SRV DYN, EQT-VIR, Gestion_PKI, VRF_INCONNUE, Production, Sécurité IT, DSI, Cloud Agent, TAG-SEI, ENV-PRD, OS-WIN-SRV, Windows Server, Sans, POS-DMZ;128143034
vrosapsrv1.sanef-rec.fr;10.45.9.67;vrosapsrv1.sanef-rec.fr;Red Hat Enterprise Linux 8.10;STATUS_ACTIVE;7.3.0.40;2026-04-22T17:56:17Z;N/A;BDD-ELA DYN, Linux Server, TAG-SEI, MID-NGINX DYN, Cloud Agent, OS-LIN-SRV, DEX, Péage, POS-PEA, POS-DMZ, ENV-REC, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, EQT-VIR;181705921
vrsamaext1.recette.adds;192.168.10.3;vrsamaext1.recette.adds;Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020;STATUS_ACTIVE;6.4.1.22;2026-04-22T17:50:16Z;N/A;POS-INF, TAG-SEI, Cloud Agent, TAG-SRVEXPOSEINTERNET, ENV-REC, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, POS-DMZ;363318959
1 Nom IP FQDN OS Status Version Check-in Localisation Tags ID
2 vpaiiaazu1 192.168.230.40 vpaiiaazu1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:37:29Z N/A Windows Server, POS-INF, DSI, BDD-SQL DYN, EQT-VIR, Sans, DMZ, TAG-SEI, Production, Sécurité IT, AD, Cloud Agent, POS-DMZ, OS-WIN-SRV DYN, ENV-PRD, OS-WIN-SRV, TAG-SRVEXPOSEINTERNET, VRF_INCONNUE 128129742
3 VPAIIADNS1 192.168.2.20 VPAIIADNS1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T15:49:26Z N/A Réseaux et Télécom, Windows Server, OS-WIN-SRV DYN, High, TAG-SRVEXPOSEINTERNET, Cloud Agent, POS-INF, DNS, OS-WIN-SRV, ENV-PRD, Production, POS-DMZ, TAG-SEI, Haute, EQT-VIR, SED, DMZ, VRF_INCONNUE, Critical, Reseau &amp; Telecom 127865511
4 VPAIIADNS2 192.168.2.21 VPAIIADNS2 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:11:18Z N/A DMZ, SED, POS-DMZ, ENV-PRD, OS-WIN-SRV, Windows Server, VRF_INCONNUE, POS-INF, Reseau &amp; Telecom, TAG-SEI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINTERNET, Production, High, Cloud Agent, Haute, EQT-VIR, DNS, Réseaux et Télécom, Critical 127861636
5 VPAIIADNS3 192.168.2.27 VPAIIADNS3 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T18:55:34Z N/A Haute, DNS, ENV-PRD, EQT-VIR, Production, TAG-SRVEXPOSEINTERNET, Réseaux et Télécom, SED, POS-DMZ, DMZ, Cloud Agent, Windows Server, OS-WIN-SRV, OS-WIN-SRV DYN, TAG-SEI, VRF_INCONNUE, POS-INF, Critical, Reseau &amp; Telecom, High 127861245
6 VPAIIADNS4 192.168.2.28 VPAIIADNS4 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T18:10:03Z N/A High, EQT-VIR, Réseaux et Télécom, Cloud Agent, Production, POS-INF, DMZ, Reseau &amp; Telecom, VRF_INCONNUE, TAG-SRVEXPOSEINTERNET, Haute, ENV-PRD, DNS, SED, OS-WIN-SRV DYN, OS-WIN-SRV, POS-DMZ, Windows Server, Critical, TAG-SEI 127861380
7 vpbipamod1 192.168.230.19 vpbipamod1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:17:52Z N/A OS-WIN-SRV DYN, ENV-PRD, VRF_INCONNUE, Production, Cloud Agent, Windows Server, OS-WIN-SRV, POS-PEA, TAG-SRVEXPOSEINTERNET, Basse, Modalisa, POS-DMZ, EQT-VIR, DMZ, Low, Péage, DSI, Gestion commerciale, TAG-SEI 128140111
8 vpburaexc1.sanef.groupe 10.42.30.10 vpburaexc1.sanef.groupe Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T18:24:52Z N/A OS-WIN-SRV DYN, DSI, ENV-PRD, Cloud Agent, TAG-SRVEXPOSEINDIRECT, High, EQT-VIR, EXCHANGE, TAG-SEI, Windows Server, OS-WIN-SRV, POS-INF, POS-DMZ 222529401
9 vpburaexc2.sanef.groupe 10.42.30.30 vpburaexc2.sanef.groupe Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 4893 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:30:42Z N/A EXCHANGE, Windows Server, OS-WIN-SRV, ENV-PRD, High, Cloud Agent, POS-DMZ, DSI, OS-WIN-SRV DYN, TAG-SRVEXPOSEINDIRECT, EQT-VIR, TAG-SEI, POS-INF 222570527
10 vpdecasas4 10.30.11.152 vpdecasas4.sanef.groupe Red Hat Enterprise Linux Server 7.9 STATUS_ACTIVE 7.3.0.40 2026-04-22T18:01:06Z N/A DSI, Obsolete, TAG-SEI, Finances Comptabilité / Consolidation, Production, EQT-VIR, Linux Server, VRF_INCONNUE, ENV-PRD, Cloud Agent, POS-DMZ, OS-LIN-SRV DYN, SAS, POS-BI, OS-LIN-SRV 411394993
11 vpdsiaclo1.sanef.groupe 192.168.31.19 vpdsiaclo1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T15:32:20Z N/A ENV-PRD, Owncloud, TAG-SRVEXPOSEINTERNET, TAG-SEI, POS-DMZ, EQT-VIR, MID-NGINX DYN, POS-INF, TAG-SRVEXPOSEINDIRECT, VRF_INCONNUE, OS-LIN-SRV, Cloud Agent, OS-LIN-SRV DYN, Linux Server 156071801
12 vpexpbdech1.sanef.groupe 10.41.40.155 vpexpbdech1.sanef.groupe Red Hat Enterprise Linux Server 7.9 STATUS_ACTIVE 7.3.0.40 2026-04-22T12:27:06Z N/A TAG-SRVEXPOSEINDIRECT, Cloud Agent, Patrimoine, OS-LIN-SRV DYN, DECHETS, OS-LIN-SRV, ServersInCyberark, VRF_TRAFIC_DC, BDD-POS DYN, DEX, EQT-VIR, TAG-SEI, Production, POS-GES, Obsolete, POS-DMZ, ENV-PRD, POS-INF, Linux Server 137346917
13 vpgeoagps2 192.168.40.67 vpgeoagps2 Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T15:04:17Z N/A POS-INF, Cloud Agent, POS-DMZ, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, TAG-SRVEXPOSEINTERNET, ENV-PRD, TAG-SEI 280014653
14 vpintaweb2.sanef.groupe 192.168.20.36 vpintaweb2.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T17:01:24Z N/A TAG-SRVEXPOSEINDIRECT, BDD-POS DYN, EQT-VIR, MID-NGINX DYN, TAG-SEI, Linux Server, POS-DMZ, ENV-PRD, Cloud Agent, VRF_INCONNUE, Gestion institutionnel, OS-LIN-SRV DYN, OS-LIN-SRV 159557652
15 vpintaweb3.sanef.groupe 192.168.20.37 vpintaweb3.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T18:35:47Z N/A Gestion institutionnel, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, VRF_INCONNUE, TAG-SEI, Linux Server, POS-DMZ, Cloud Agent, OS-LIN-SRV, EQT-VIR, MID-NGINX DYN, BDD-POS DYN, ENV-PRD 159569521
16 vppeaabst1.sanef.groupe 10.41.20.51 vppeaabst1.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T18:54:33Z N/A flux_libre, MID-NGINX DYN, ENV-PRD, Cloud Agent, OS-LIN-SRV DYN, Linux Server, POS-DMZ, POS-FL, Production, OS-LIN-SRV, TAG-SRVEXPOSEINDIRECT, FreeFlow, TAG-SEI, EQT-VIR, Flux Libre 192389444
17 vppeaabst2.sanef.groupe 10.41.20.52 vppeaabst2.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T16:28:47Z N/A Linux Server, ENV-PRD, Production, OS-LIN-SRV DYN, POS-DMZ, EQT-VIR, OS-LIN-SRV, flux_libre, POS-FL, FreeFlow, TAG-SRVEXPOSEINDIRECT, TAG-SEI, MID-NGINX DYN, Flux Libre, Cloud Agent 200012633
18 vppeaabst3.sanef.groupe 10.41.20.37 vppeaabst3.sanef.groupe Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T14:54:30Z N/A flux_libre, EQT-VIR, FreeFlow, Linux Server, OS-LIN-SRV, ENV-PRD, MID-NGINX DYN, TAG-SEI, OS-LIN-SRV DYN, POS-FL, Cloud Agent, Flux Libre 216910714
19 vpsimaxsr1 192.168.230.31 vpsimaxsr1 Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T16:30:00Z N/A XFB, OS-WIN-SRV DYN, POS-PEA, TAG-SRVEXPOSEINTERNET, POS-DMZ, POS-INF, EQT-VIR, DEX, TAG-SEI, ENV-PRD, OS-WIN-SRV, Cloud Agent 332979745
20 vpssiandes1.sanef.groupe 192.168.162.80 vpssiandes1.sanef.groupe Microsoft Windows Server 2019 Standard 10.0.17763 64 bits N/A Build 17763 UBR 8644 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:34:45Z N/A POS-INF, Gestion_PKI, ENV-PRD, EQT-VIR, Production, Windows Server, TAG-SEI, Critical, Cloud Agent, OS-WIN-SRV, POS-DMZ, TAG-SRVEXPOSEINTERNET, OS-WIN-SRV DYN, DSI 225456379
21 VPSSIAPKI3 192.168.90.72 VPSSIAPKI3.sanef.groupe Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 9060 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:10:46Z N/A TAG-SRVEXPOSEINTERNET, POS-INF, DMZ, OS-WIN-SRV DYN, EQT-VIR, Gestion_PKI, VRF_INCONNUE, Production, Sécurité IT, DSI, Cloud Agent, TAG-SEI, ENV-PRD, OS-WIN-SRV, Windows Server, Sans, POS-DMZ 128143034
22 vrosapsrv1.sanef-rec.fr 10.45.9.67 vrosapsrv1.sanef-rec.fr Red Hat Enterprise Linux 8.10 STATUS_ACTIVE 7.3.0.40 2026-04-22T17:56:17Z N/A BDD-ELA DYN, Linux Server, TAG-SEI, MID-NGINX DYN, Cloud Agent, OS-LIN-SRV, DEX, Péage, POS-PEA, POS-DMZ, ENV-REC, TAG-SRVEXPOSEINDIRECT, OS-LIN-SRV DYN, EQT-VIR 181705921
23 vrsamaext1.recette.adds 192.168.10.3 vrsamaext1.recette.adds Microsoft Windows Server 2022 Standard 10.0.20348 64 bits N/A Build 20348 UBR 5020 STATUS_ACTIVE 6.4.1.22 2026-04-22T17:50:16Z N/A POS-INF, TAG-SEI, Cloud Agent, TAG-SRVEXPOSEINTERNET, ENV-REC, OS-WIN-SRV DYN, OS-WIN-SRV, EQT-VIR, POS-DMZ 363318959

30
inputs/bulk_dom_dmz.txt Normal file
View File

@ -0,0 +1,30 @@
vpdecasas4
vipeahbst1
vppeaabst1
vppeaabst2
vppeahbst1
vrpeahbst1
vpintaprx2
vpintaweb2
vpintaweb3
vppintaprx1
vpaiiaazu1
vpaiiadns1
vpaiiadns2
vpaiiadns3
vpaiiadns4
vpburaaov1
vpburaaov2
vpburaexc1
vpburaexc2
vpburawap1
vpburawap2
vpdsiaclo1
vpexpbdech1
vpgeoagps2
vpsimaxsr1
vpssiandes1
vpssiapki3
vrsamaext1
vpbipamod1
vrosapsrv1

View File

@ -0,0 +1,2 @@
vmamdpmv1
vmamdpmv2.sanef.groupe

View File

@ -0,0 +1,143 @@
NALBNVR1
RC7KMIL5
RC7KMIL6
RC7KRTX5
RC7KRTX6
bly-bly1-gc1
bly-bly1-gc2
bly-bly1-ves1
bly-bly1-ves2
ceupplu1
lamapgis1
lamapgis2
lamaprac1
lamaprac2
lamaprac3
lamaprac4
lampadp1
lampadp1-pra
lampadp2
lampadp2-pra
lampadv1
lampadv1-pra
lampasu1
lampasu2
lampcrm1
lampcrm1-pra
lampdec1
lampoct1
lamppea1
lamppea1-pra
lamppea2
lamppea2-pra
lampsas1
lampwaz1
mpcecmi1
nvr-spare-alb
nvr-spare-beu
nvr-spare-eco
nvr-spare-etv
nvr-spare-mon
nvr-spare-mtz
nvr-spare-sen
nvr-spare-tqx
rmila150
rmilacs1
rmilasu1
rmilbwp1
rmilmi2
rmilrau1
rmilu2k1
rmilwdc1
rrtxu2k1
rsbcacs2
rsmiasu1
rsmiged1
rsmimas1
rsminas1
rsmirau1
rsmisvg4
rsmiwdc1
saroumane
vadvpapp1
vadvpapp3
vairtom1
vampsycapp1
vampsycapp2
vampsychtp1
vastapp1
vburadmad1
vburimp2
vburwdc1
vburwdc2
vemvrsa3
vemvrsa4
vemvsym1
vexploit2
vmampdif1.sanef.groupe
vmampdif2.sanef.groupe
vmampgis1
vmampgis2
vmampgis3.sanef.groupe
vmampgis4
vmampgis5
vmampgtc1
vmampgtc2
vmamphtp1
vmamphtp2
vmampmet1
vmampmet2
vmamprdt1
vmamprdt2
vmampstg1
vmampstg2
vmampsxt1
vmampsxt2
vmampsxt3
vmampsxt4
vmampsxt5
vmamptd1
vmampweb1
vmampweb2
vmcliint1
vmcmdb
vmipm1
vmkemp1
vmkemp2
vmkemplb1
vmkemplb2
vmm_stl_01
vmmgtca14c1.sanef-int.adds
vmmgtcroic1.sanef-int.adds
vmmgtctchc1.sanef-int.adds
vmmvscast1.sanef-int.adds
vmmvsccad1.sanef-int.adds
vmmvsccad2.sanef-int.adds
vmmvsccad3.sanef-int.adds
vmmvsccad4.sanef-int.adds
vmmvscdem1.sanef-int.adds
vmmvscdem2.sanef-int.adds
vmmvscdem3.sanef-int.adds
vmmvscdem4.sanef-int.adds
vmmvscdem5.sanef-int.adds
vmmvscdsi1.sanef-int.adds
vmnms1
vmntp1.sanef.groupe
vmpgmao7.sanef.groupe
vmpki1
vmpki2
vmquorum1.sanef.groupe
vmradius3.sanef.groupe
vmradius4
vmsapnrt1
vmsccm1
vmsym2
vmtelotms
vmxfb1
vmzeus.sanef.groupe
vraptcpsh1
vsapbdd1
vsccmr3
vtmd
vtpataels1
vtpatbsip1

View File

@ -0,0 +1,48 @@
vmamrdif1.sanef.groupe
vmamrgtc1
vmamrgtc2
vmamrhtp1
vmamrhtp2
vmamrmet1
vmamrmet2
vmamrpmv1
vmamrpmv2
vmamrrdt1
vmamrrdt2
vmamrstg1
vmamrstg2
vmamrsxt1
vmamrsxt2
vmamrsxt3
vmamrsxt4
vmamrtd1.sanef.groupe
vmcmdb1
vmcmdb2
vmddops01.recette.adds
vmddops02.recette.adds
vmddops03.recette.adds
vmdgest01.recette.adds
vmdgest03.recette.adds
vmdgest04.recette.adds
vmdgest05.recette.adds
vmdispt01.recette.adds
vmdpeag01.recette.adds
vmdpeag02.recette.adds
vmdpeag03.recette.adds
vmdpeag04.recette.adds
vmdpeag05.recette.adds
vmdtrac01.recette.adds
vmdtrac02.recette.adds
vmdtrac04.recette.adds
vmdtrac05.recette.adds
vmdtrac06.recette.adds
vmdtrac07.recette.adds
vmdtrac08.recette.adds
vmdtrac09.recette.adds
vmdtrac10.recette.adds
vmdtrac11.recette.adds
vmdtrac12.recette.adds
vmdtrac13.recette.adds
vmdtrac14.recette.adds
vmdtrac15.recette.adds
vmrgmao7.sanef.groupe

9
inputs/bulk_tag_sed.txt Normal file
View File

@ -0,0 +1,9 @@
vipeahbst1
vppeahbst1
vrpeahbst1
vpintaprx2
vppintaprx1
vpburaaov1
vpburaaov2
vpburawap1
vpburawap2

21
inputs/bulk_tag_sei.txt Normal file
View File

@ -0,0 +1,21 @@
vpdecasas4
vppeaabst1
vppeaabst2
vpintaweb2
vpintaweb3
vpaiiaazu1
vpaiiadns1
vpaiiadns2
vpaiiadns3
vpaiiadns4
vpburaexc1
vpburaexc2
vpdsiaclo1
vpexpbdech1
vpgeoagps2
vpsimaxsr1
vpssiandes1
vpssiapki3
vrsamaext1
vpbipamod1
vrosapsrv1

221
inputs/dom-fl.csv Normal file
View File

@ -0,0 +1,221 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
sibocbsap2;sibocbsap2.sanef.groupe;linux;Red Hat Enterprise Linux 8.10;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
siboomcla1;siboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
siboomcla2;siboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
spbocbsap1;spbocbsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
spboomcla1;spboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
spboomcla2;spboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
svboomcla2;svboomcla2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vdaflbdwh1;vdaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV
vdaflbsta1;vdaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV
vdbocbsap1;vdbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocharg1;vdbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocjump1;vdbocjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocmedi1;vdbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocs4ci1;vdbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocsman1;vdbocsman1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
viaflarat1;viaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow 1
viaflbdwh1;viaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD
viaflbsta1;viaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD
viaflperf1;viaflperf1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibocaprx1;vibocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocharg1;vibocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocmedi1;vibocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4as1;vibocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4as2;vibocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4as3;vibocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4ci1;vibocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocsman1;vibocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibooaboo1;vibooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooangx1;vibooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooaori1;vibooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooaori2;vibooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobquo1;viboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobquo2;viboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobsql1;viboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobsql2;viboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboomocr1;viboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooosea1;vibooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooosea2;vibooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibotaapm1;vibotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotakpi1;vibotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Implémentation;secops;Flux libre A13-A14 -
vibotangx1;vibotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotapps1;vibotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotapps2;vibotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotapps3;vibotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotarmq1;vibotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotarmq2;vibotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotarmq3;vibotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotasim1;vibotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatsp1;vibotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatst1;vibotatst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatst2;vibotatst2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatvv1;vibotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbquo1;vibotbquo1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbsql1;vibotbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbsql2;vibotbsql2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbtsd1;vibotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotcach1;vibotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco1;vibotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco2;vibotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco3;vibotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco4;vibotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotrssm1;vibotrssm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotrssm2;vibotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vipeaabst1;vipeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeaabst2;vipeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeaabst3;vipeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;BOOST 1.0 1 1.0
vipeaarcv1;vipeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow RCV - env PREPROD
vipeabbst2;vipeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeabbst3;vipeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeabbst4;vipeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeahbst1;vipeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;DMZ;a_definir;Production;secops;Free Flow 1 (HA proxy A13-A14)
vipeahbst3;vipeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vpaflarat1;vpaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow 1
vpaflbdwh1;vpaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpaflbsta1;vpaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpaflgsys1;vpaflgsys1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpbocaprx1;vpbocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocardp1;vpbocardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vpbocarep1;vpbocarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocasec1;vpbocasec1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocharg1;vpbocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocjump1;vpbocjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocmedi1;vpbocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocrsap1;vpbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as1;vpbocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as2;vpbocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as3;vpbocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4ci1;vpbocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocsman1;vpbocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbooaboo1;vpbooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooangx1;vpbooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooaori1;vpbooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooaori2;vpbooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooardp1;vpbooardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooarep1;vpbooarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooarep2;vpbooarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobquo1;vpboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobquo2;vpboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobsql1;vpboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobsql2;vpboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboojump1;vpboojump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboomocr1;vpboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooosea1;vpbooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooosea2;vpbooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbotaapm1;vpbotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotakpi1;vpbotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vpbotangx1;vpbotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps1;vpbotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps2;vpbotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps3;vpbotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotardp1;vpbotardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarep1;vpbotarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarep2;vpbotarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq1;vpbotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq2;vpbotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq3;vpbotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotasim1;vpbotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotatsp1;vpbotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotatvv1;vpbotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbquo1;vpbotbquo1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbsql1;vpbotbsql1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbsql2;vpbotbsql2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbtsd1;vpbotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotcach1;vpbotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotjump1;vpbotjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco1;vpbotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco2;vpbotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco3;vpbotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco4;vpbotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotrssm1;vpbotrssm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotrssm2;vpbotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpnitardp1;vpnitardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Implémentation;secops;Flux libre A13-A14 -
vppeaabst1;vppeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaabst2;vppeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaabst3;vppeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaarcv1;vppeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Free Flow RCV - env PROD
vppeabbst2;vppeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeabbst3;vppeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeabbst4;vppeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeahbst1;vppeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow 1
vppeahbst3;vppeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD
vpsupacen1;vpsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol1;vpsupapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol2;vpsupapol2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol3;vpsupapol3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol4;vpsupapol4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1
vpsupapol5;vpsupapol5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1
vpsupbcen1;vpsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupbmap1;vpsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupbmbi1;vpsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vrpeahbst1;vrpeahbst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;DMZ;a_definir;Production;secops;Free Flow 1
vrsupacen1;vrsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1
vrsupbcen1;vrsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1
vrsupbmap1;vrsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1
vrsupbmbi1;vrsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1
vvaflbdwh1;vvaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST
vvaflblog1;vvaflblog1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvaflbsta1;vvaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST
vvaflgsys1;vvaflgsys1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST
vvafljump1;vvafljump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvafljump2;vvafljump2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvaflsmtp1;vvaflsmtp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvbocaprx1;vvbocaprx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocarep1;vvbocarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocasec1;vvbocasec1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocbsap1;vvbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.8 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocharg1;vvbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocharg2;vvbocharg2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocmedi1;vvbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocmedi2;vvbocmedi2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocrsap1;vvbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4as1;vvbocs4as1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4as2;vvbocs4as2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4ci1;vvbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4ci2;vvbocs4ci2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbooaboo1;vvbooaboo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooaboo2;vvbooaboo2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooaori1;vvbooaori1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooaori2;vvbooaori2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooarep2;vvbooarep2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboobsql1;vvboobsql1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboobsql2;vvboobsql2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboojump1;vvboojump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboomocr1;vvboomocr1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboomocr2;vvboomocr2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooosea1;vvbooosea1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooosea2;vvbooosea2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbotaapm1;vvbotaapm1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotaapm2;vvbotaapm2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotapps1;vvbotapps1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotapps3;vvbotapps3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotarep1;vvbotarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotarmq1;vvbotarmq1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotarmq2;vvbotarmq2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatsp1;vvbotatsp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatsp2;vvbotatsp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatst3;vvbotatst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatst4;vvbotatst4.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatvv1;vvbotatvv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatvv2;vvbotatvv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbsql1;vvbotbsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbsql2;vvbotbsql2.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbtsd1;vvbotbtsd1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbtsd2;vvbotbtsd2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotcach1;vvbotcach1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotcach2;vvbotcach2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotjump1;vvbotjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotreco1;vvbotreco1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotreco2;vvbotreco2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssc1;vvbotrssc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssc2;vvbotrssc2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssm1;vvbotrssm1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssm2;vvbotrssm2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrtms1;;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrtms2;vvbotrtms2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvpeaabst1;vvpeaabst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST
vvpeaabst2;vvpeaabst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST
vvpeaabst3;vvpeaabst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0
vvpeaarcv1;vvpeaarcv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST
vvpeaarcv2;vvpeaarcv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 sibocbsap2 sibocbsap2.sanef.groupe linux Red Hat Enterprise Linux 8.10 Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
3 siboomcla1 siboomcla1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
4 siboomcla2 siboomcla2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
5 spbocbsap1 spbocbsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
6 spboomcla1 spboomcla1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
7 spboomcla2 spboomcla2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
8 svboomcla2 svboomcla2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
9 vdaflbdwh1 vdaflbdwh1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Développement a_definir Production secops Free Flow DWH BI - env DEV
10 vdaflbsta1 vdaflbsta1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Développement a_definir Production secops Free Flow DWH BI - env DEV
11 vdbocbsap1 vdbocbsap1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
12 vdbocharg1 vdbocharg1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
13 vdbocjump1 vdbocjump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
14 vdbocmedi1 vdbocmedi1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
15 vdbocs4ci1 vdbocs4ci1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
16 vdbocsman1 vdbocsman1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
17 viaflarat1 viaflarat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow 1
18 viaflbdwh1 viaflbdwh1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow DWH BI - env PREPROD
19 viaflbsta1 viaflbsta1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow DWH BI - env PREPROD
20 viaflperf1 viaflperf1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
21 vibocaprx1 vibocaprx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
22 vibocharg1 vibocharg1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
23 vibocmedi1 vibocmedi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
24 vibocs4as1 vibocs4as1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
25 vibocs4as2 vibocs4as2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
26 vibocs4as3 vibocs4as3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
27 vibocs4ci1 vibocs4ci1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
28 vibocsman1 vibocsman1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
29 vibooaboo1 vibooaboo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
30 vibooangx1 vibooangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
31 vibooaori1 vibooaori1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
32 vibooaori2 vibooaori2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
33 viboobquo1 viboobquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
34 viboobquo2 viboobquo2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
35 viboobsql1 viboobsql1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
36 viboobsql2 viboobsql2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
37 viboomocr1 viboomocr1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
38 vibooosea1 vibooosea1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
39 vibooosea2 vibooosea2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
40 vibotaapm1 vibotaapm1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
41 vibotakpi1 vibotakpi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Implémentation secops Flux libre A13-A14 -
42 vibotangx1 vibotangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
43 vibotapps1 vibotapps1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
44 vibotapps2 vibotapps2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
45 vibotapps3 vibotapps3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
46 vibotarmq1 vibotarmq1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
47 vibotarmq2 vibotarmq2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
48 vibotarmq3 vibotarmq3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
49 vibotasim1 vibotasim1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
50 vibotatsp1 vibotatsp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
51 vibotatst1 vibotatst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
52 vibotatst2 vibotatst2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
53 vibotatvv1 vibotatvv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
54 vibotbquo1 vibotbquo1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
55 vibotbsql1 vibotbsql1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
56 vibotbsql2 vibotbsql2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
57 vibotbtsd1 vibotbtsd1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
58 vibotcach1 vibotcach1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
59 vibotreco1 vibotreco1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
60 vibotreco2 vibotreco2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
61 vibotreco3 vibotreco3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
62 vibotreco4 vibotreco4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
63 vibotrssm1 vibotrssm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
64 vibotrssm2 vibotrssm2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
65 vipeaabst1 vipeaabst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
66 vipeaabst2 vipeaabst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
67 vipeaabst3 vipeaabst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops BOOST 1.0 1 1.0
68 vipeaarcv1 vipeaarcv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow RCV - env PREPROD
69 vipeabbst2 vipeabbst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
70 vipeabbst3 vipeabbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
71 vipeabbst4 vipeabbst4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
72 vipeahbst1 vipeahbst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod DMZ a_definir Production secops Free Flow 1 (HA proxy A13-A14)
73 vipeahbst3 vipeahbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
74 vpaflarat1 vpaflarat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow 1
75 vpaflbdwh1 vpaflbdwh1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
76 vpaflbsta1 vpaflbsta1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
77 vpaflgsys1 vpaflgsys1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
78 vpbocaprx1 vpbocaprx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
79 vpbocardp1 vpbocardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Flux libre A13-A14 -
80 vpbocarep1 vpbocarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
81 vpbocasec1 vpbocasec1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
82 vpbocharg1 vpbocharg1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
83 vpbocjump1 vpbocjump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
84 vpbocmedi1 vpbocmedi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
85 vpbocrsap1 vpbocrsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
86 vpbocs4as1 vpbocs4as1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
87 vpbocs4as2 vpbocs4as2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
88 vpbocs4as3 vpbocs4as3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
89 vpbocs4ci1 vpbocs4ci1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
90 vpbocsman1 vpbocsman1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
91 vpbooaboo1 vpbooaboo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
92 vpbooangx1 vpbooangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
93 vpbooaori1 vpbooaori1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
94 vpbooaori2 vpbooaori2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
95 vpbooardp1 vpbooardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
96 vpbooarep1 vpbooarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
97 vpbooarep2 vpbooarep2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
98 vpboobquo1 vpboobquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
99 vpboobquo2 vpboobquo2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
100 vpboobsql1 vpboobsql1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
101 vpboobsql2 vpboobsql2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
102 vpboojump1 vpboojump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
103 vpboomocr1 vpboomocr1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
104 vpbooosea1 vpbooosea1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
105 vpbooosea2 vpbooosea2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
106 vpbotaapm1 vpbotaapm1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
107 vpbotakpi1 vpbotakpi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
108 vpbotangx1 vpbotangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
109 vpbotapps1 vpbotapps1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
110 vpbotapps2 vpbotapps2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
111 vpbotapps3 vpbotapps3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
112 vpbotardp1 vpbotardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
113 vpbotarep1 vpbotarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
114 vpbotarep2 vpbotarep2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
115 vpbotarmq1 vpbotarmq1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
116 vpbotarmq2 vpbotarmq2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
117 vpbotarmq3 vpbotarmq3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
118 vpbotasim1 vpbotasim1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
119 vpbotatsp1 vpbotatsp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
120 vpbotatvv1 vpbotatvv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
121 vpbotbquo1 vpbotbquo1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
122 vpbotbsql1 vpbotbsql1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
123 vpbotbsql2 vpbotbsql2.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
124 vpbotbtsd1 vpbotbtsd1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
125 vpbotcach1 vpbotcach1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
126 vpbotjump1 vpbotjump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
127 vpbotreco1 vpbotreco1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
128 vpbotreco2 vpbotreco2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
129 vpbotreco3 vpbotreco3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
130 vpbotreco4 vpbotreco4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
131 vpbotrssm1 vpbotrssm1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
132 vpbotrssm2 vpbotrssm2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
133 vpnitardp1 vpnitardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Implémentation secops Flux libre A13-A14 -
134 vppeaabst1 vppeaabst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow SIT - env PROD
135 vppeaabst2 vppeaabst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow SIT - env PROD
136 vppeaabst3 vppeaabst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow SIT - env PROD
137 vppeaarcv1 vppeaarcv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Free Flow RCV - env PROD
138 vppeabbst2 vppeabbst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
139 vppeabbst3 vppeabbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
140 vppeabbst4 vppeabbst4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
141 vppeahbst1 vppeahbst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow 1
142 vppeahbst3 vppeahbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow SIT - env PROD
143 vpsupacen1 vpsupacen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
144 vpsupapol1 vpsupapol1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
145 vpsupapol2 vpsupapol2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
146 vpsupapol3 vpsupapol3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
147 vpsupapol4 vpsupapol4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Centreon 1
148 vpsupapol5 vpsupapol5.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Centreon 1
149 vpsupbcen1 vpsupbcen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
150 vpsupbmap1 vpsupbmap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
151 vpsupbmbi1 vpsupbmbi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
152 vrpeahbst1 vrpeahbst1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette DMZ a_definir Production secops Free Flow 1
153 vrsupacen1 vrsupacen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette a_definir Production secops Centreon 1
154 vrsupbcen1 vrsupbcen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette a_definir Production secops Centreon 1
155 vrsupbmap1 vrsupbmap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Centreon 1
156 vrsupbmbi1 vrsupbmbi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Centreon 1
157 vvaflbdwh1 vvaflbdwh1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow DWH BI - env TEST
158 vvaflblog1 vvaflblog1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow 1
159 vvaflbsta1 vvaflbsta1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow DWH BI - env TEST
160 vvaflgsys1 vvaflgsys1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow DWH BI - env TEST
161 vvafljump1 vvafljump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow 1
162 vvafljump2 vvafljump2.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow 1
163 vvaflsmtp1 vvaflsmtp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow 1
164 vvbocaprx1 vvbocaprx1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
165 vvbocarep1 vvbocarep1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
166 vvbocasec1 vvbocasec1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
167 vvbocbsap1 vvbocbsap1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.8 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
168 vvbocharg1 vvbocharg1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
169 vvbocharg2 vvbocharg2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
170 vvbocmedi1 vvbocmedi1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
171 vvbocmedi2 vvbocmedi2 linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
172 vvbocrsap1 vvbocrsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
173 vvbocs4as1 vvbocs4as1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
174 vvbocs4as2 vvbocs4as2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
175 vvbocs4ci1 vvbocs4ci1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
176 vvbocs4ci2 vvbocs4ci2 linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
177 vvbooaboo1 vvbooaboo1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
178 vvbooaboo2 vvbooaboo2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
179 vvbooaori1 vvbooaori1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
180 vvbooaori2 vvbooaori2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
181 vvbooarep2 vvbooarep2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
182 vvboobsql1 vvboobsql1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
183 vvboobsql2 vvboobsql2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
184 vvboojump1 vvboojump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
185 vvboomocr1 vvboomocr1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
186 vvboomocr2 vvboomocr2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
187 vvbooosea1 vvbooosea1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
188 vvbooosea2 vvbooosea2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
189 vvbotaapm1 vvbotaapm1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
190 vvbotaapm2 vvbotaapm2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
191 vvbotapps1 vvbotapps1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
192 vvbotapps3 vvbotapps3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
193 vvbotarep1 vvbotarep1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
194 vvbotarmq1 vvbotarmq1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
195 vvbotarmq2 vvbotarmq2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
196 vvbotatsp1 vvbotatsp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
197 vvbotatsp2 vvbotatsp2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
198 vvbotatst3 vvbotatst3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
199 vvbotatst4 vvbotatst4.sanef-rec.fr windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
200 vvbotatvv1 vvbotatvv1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
201 vvbotatvv2 vvbotatvv2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
202 vvbotbsql1 vvbotbsql1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
203 vvbotbsql2 vvbotbsql2.sanef-rec.fr windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
204 vvbotbtsd1 vvbotbtsd1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
205 vvbotbtsd2 vvbotbtsd2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
206 vvbotcach1 vvbotcach1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
207 vvbotcach2 vvbotcach2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
208 vvbotjump1 vvbotjump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
209 vvbotreco1 vvbotreco1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
210 vvbotreco2 vvbotreco2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
211 vvbotrssc1 vvbotrssc1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
212 vvbotrssc2 vvbotrssc2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
213 vvbotrssm1 vvbotrssm1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
214 vvbotrssm2 vvbotrssm2.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
215 vvbotrtms1 linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
216 vvbotrtms2 vvbotrtms2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
217 vvpeaabst1 vvpeaabst1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow SIT - env TEST
218 vvpeaabst2 vvpeaabst2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow SIT - env TEST
219 vvpeaabst3 vvpeaabst3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette a_definir Production secops BOOST 1.0 1 1.0
220 vvpeaarcv1 vvpeaarcv1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow RCV - env TEST
221 vvpeaarcv2 vvpeaarcv2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow RCV - env TEST

28
inputs/dom/dom-bi.csv Normal file
View File

@ -0,0 +1,28 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
vdrepapbi1;vdrepapbi1.recette.adds;windows;Microsoft Windows Server 2022 Standard;BI;Recette;;a_definir;Production;secops;
vpaptbjup1;vpaptbjup1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;
vpbipbdec1;vpbipbdec1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;BI;Production;;a_definir;Production;secops;
vpdecasas4;vpdecasas4.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;DMZ;a_definir;Production;secops;SAS 1
vpdecasas5;vpdecasas5.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vpdecasas6;vpdecasas6.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vpdecasas7;vpdecasas7.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vpdecasas8;vpdecasas8.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vppbiadgw1;vppbiadgw1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;BI;Production;;a_definir;Production;secops;
vpsasacpt1;vpsasacpt1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasactr1;vpsasactr1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasamic1;vpsasamic1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasapil1;vpsasapil1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk1;vpsasawrk1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk2;vpsasawrk2.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk3;vpsasawrk3.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk4;vpsasawrk4.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk5;vpsasawrk5.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk6;vpsasawrk6.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vraptbjup1;vraptbjup1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;Gestion Postgres 1
vrbipbdec1;vrbipbdec1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;BI;Recette;;a_definir;Production;secops;
vrdecasas1;vrdecasas1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;SAS 1
vrdecasas2;vrdecasas2.sanef.groupe;linux;ERROR: Timeout opening channel.;BI;Recette;;a_definir;Production;secops;SAS 1
vrdecasas3;vrdecasas3.sanef.groupe;linux;ERROR: Timeout opening channel.;BI;Recette;;a_definir;Production;secops;SAS 1
vrdecasas4;vrdecasas4.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;SAS 1
vrdecasas5;vrdecasas5.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Recette;;a_definir;Production;secops;SAS 1
vrpbiadgw1;vrpbiadgw1.recette.adds;windows;Microsoft Windows Server 2022 Standard;BI;Recette;;a_definir;Production;secops;
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 vdrepapbi1 vdrepapbi1.recette.adds windows Microsoft Windows Server 2022 Standard BI Recette a_definir Production secops
3 vpaptbjup1 vpaptbjup1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops
4 vpbipbdec1 vpbipbdec1.sanef.groupe windows Microsoft Windows Server 2016 Standard BI Production a_definir Production secops
5 vpdecasas4 vpdecasas4.sanef.groupe linux RHEL 7.9 (Maipo) BI Production DMZ a_definir Production secops SAS 1
6 vpdecasas5 vpdecasas5.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
7 vpdecasas6 vpdecasas6.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
8 vpdecasas7 vpdecasas7.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
9 vpdecasas8 vpdecasas8.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
10 vppbiadgw1 vppbiadgw1.sanef.groupe windows Microsoft Windows Server 2022 Standard BI Production a_definir Production secops
11 vpsasacpt1 vpsasacpt1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
12 vpsasactr1 vpsasactr1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
13 vpsasamic1 vpsasamic1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
14 vpsasapil1 vpsasapil1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
15 vpsasawrk1 vpsasawrk1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
16 vpsasawrk2 vpsasawrk2.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
17 vpsasawrk3 vpsasawrk3.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
18 vpsasawrk4 vpsasawrk4.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
19 vpsasawrk5 vpsasawrk5.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
20 vpsasawrk6 vpsasawrk6.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
21 vraptbjup1 vraptbjup1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) BI Recette a_definir Production secops Gestion Postgres 1
22 vrbipbdec1 vrbipbdec1.sanef.groupe windows Microsoft Windows Server 2016 Standard BI Recette a_definir Production secops
23 vrdecasas1 vrdecasas1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) BI Recette a_definir Production secops SAS 1
24 vrdecasas2 vrdecasas2.sanef.groupe linux ERROR: Timeout opening channel. BI Recette a_definir Production secops SAS 1
25 vrdecasas3 vrdecasas3.sanef.groupe linux ERROR: Timeout opening channel. BI Recette a_definir Production secops SAS 1
26 vrdecasas4 vrdecasas4.sanef.groupe linux RHEL 8.10 (Ootpa) BI Recette a_definir Production secops SAS 1
27 vrdecasas5 vrdecasas5.sanef.groupe linux RHEL 8.10 (Ootpa) BI Recette a_definir Production secops SAS 1
28 vrpbiadgw1 vrpbiadgw1.recette.adds windows Microsoft Windows Server 2022 Standard BI Recette a_definir Production secops

221
inputs/dom/dom-fl.csv Normal file
View File

@ -0,0 +1,221 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
sibocbsap2;sibocbsap2.sanef.groupe;linux;Red Hat Enterprise Linux 8.10;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
siboomcla1;siboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
siboomcla2;siboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
spbocbsap1;spbocbsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
spboomcla1;spboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
spboomcla2;spboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
svboomcla2;svboomcla2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vdaflbdwh1;vdaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV
vdaflbsta1;vdaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow DWH BI - env DEV
vdbocbsap1;vdbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocharg1;vdbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocjump1;vdbocjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocmedi1;vdbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocs4ci1;vdbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
vdbocsman1;vdbocsman1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.7 (Ootpa);Flux Libre;Développement;;a_definir;Production;secops;Free Flow BOC - env DEV
viaflarat1;viaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow 1
viaflbdwh1;viaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD
viaflbsta1;viaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow DWH BI - env PREPROD
viaflperf1;viaflperf1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibocaprx1;vibocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocharg1;vibocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocmedi1;vibocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4as1;vibocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4as2;vibocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4as3;vibocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocs4ci1;vibocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibocsman1;vibocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOC - env PREPROD
vibooaboo1;vibooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooangx1;vibooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooaori1;vibooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooaori2;vibooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobquo1;viboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobquo2;viboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobsql1;viboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboobsql2;viboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
viboomocr1;viboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooosea1;vibooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibooosea2;vibooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOO - env PREPROD
vibotaapm1;vibotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotakpi1;vibotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Implémentation;secops;Flux libre A13-A14 -
vibotangx1;vibotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotapps1;vibotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotapps2;vibotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotapps3;vibotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotarmq1;vibotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotarmq2;vibotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotarmq3;vibotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotasim1;vibotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatsp1;vibotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatst1;vibotatst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatst2;vibotatst2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotatvv1;vibotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbquo1;vibotbquo1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbsql1;vibotbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbsql2;vibotbsql2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotbtsd1;vibotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotcach1;vibotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco1;vibotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco2;vibotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco3;vibotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotreco4;vibotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotrssm1;vibotrssm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vibotrssm2;vibotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow BOT - env PREPROD
vipeaabst1;vipeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeaabst2;vipeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeaabst3;vipeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;BOOST 1.0 1 1.0
vipeaarcv1;vipeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow RCV - env PREPROD
vipeabbst2;vipeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeabbst3;vipeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeabbst4;vipeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vipeahbst1;vipeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;DMZ;a_definir;Production;secops;Free Flow 1 (HA proxy A13-A14)
vipeahbst3;vipeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Pré-Prod;;a_definir;Production;secops;Free Flow SIT - env PREPROD
vpaflarat1;vpaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow 1
vpaflbdwh1;vpaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpaflbsta1;vpaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpaflgsys1;vpaflgsys1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpbocaprx1;vpbocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocardp1;vpbocardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vpbocarep1;vpbocarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocasec1;vpbocasec1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocharg1;vpbocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocjump1;vpbocjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocmedi1;vpbocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocrsap1;vpbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as1;vpbocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as2;vpbocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as3;vpbocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4ci1;vpbocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocsman1;vpbocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbooaboo1;vpbooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooangx1;vpbooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooaori1;vpbooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooaori2;vpbooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooardp1;vpbooardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooarep1;vpbooarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooarep2;vpbooarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobquo1;vpboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobquo2;vpboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobsql1;vpboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobsql2;vpboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboojump1;vpboojump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboomocr1;vpboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooosea1;vpbooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooosea2;vpbooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbotaapm1;vpbotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotakpi1;vpbotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vpbotangx1;vpbotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps1;vpbotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps2;vpbotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps3;vpbotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotardp1;vpbotardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarep1;vpbotarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarep2;vpbotarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq1;vpbotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq2;vpbotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq3;vpbotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotasim1;vpbotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotatsp1;vpbotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotatvv1;vpbotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbquo1;vpbotbquo1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbsql1;vpbotbsql1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbsql2;vpbotbsql2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbtsd1;vpbotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotcach1;vpbotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotjump1;vpbotjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco1;vpbotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco2;vpbotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco3;vpbotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco4;vpbotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotrssm1;vpbotrssm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotrssm2;vpbotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpnitardp1;vpnitardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Implémentation;secops;Flux libre A13-A14 -
vppeaabst1;vppeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaabst2;vppeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaabst3;vppeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaarcv1;vppeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Free Flow RCV - env PROD
vppeabbst2;vppeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeabbst3;vppeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeabbst4;vppeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeahbst1;vppeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow 1
vppeahbst3;vppeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD
vpsupacen1;vpsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol1;vpsupapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol2;vpsupapol2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol3;vpsupapol3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol4;vpsupapol4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1
vpsupapol5;vpsupapol5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1
vpsupbcen1;vpsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupbmap1;vpsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupbmbi1;vpsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vrpeahbst1;vrpeahbst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;DMZ;a_definir;Production;secops;Free Flow 1
vrsupacen1;vrsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1
vrsupbcen1;vrsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;Centreon 1
vrsupbmap1;vrsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1
vrsupbmbi1;vrsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Centreon 1
vvaflbdwh1;vvaflbdwh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST
vvaflblog1;vvaflblog1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvaflbsta1;vvaflbsta1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST
vvaflgsys1;vvaflgsys1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow DWH BI - env TEST
vvafljump1;vvafljump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvafljump2;vvafljump2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvaflsmtp1;vvaflsmtp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow 1
vvbocaprx1;vvbocaprx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocarep1;vvbocarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocasec1;vvbocasec1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocbsap1;vvbocbsap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.8 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocharg1;vvbocharg1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocharg2;vvbocharg2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocmedi1;vvbocmedi1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocmedi2;vvbocmedi2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocrsap1;vvbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4as1;vvbocs4as1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4as2;vvbocs4as2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4ci1;vvbocs4ci1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbocs4ci2;vvbocs4ci2;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOC - env TEST
vvbooaboo1;vvbooaboo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooaboo2;vvbooaboo2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooaori1;vvbooaori1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooaori2;vvbooaori2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooarep2;vvbooarep2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboobsql1;vvboobsql1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboobsql2;vvboobsql2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboojump1;vvboojump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboomocr1;vvboomocr1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvboomocr2;vvboomocr2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooosea1;vvbooosea1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbooosea2;vvbooosea2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOO - env TEST
vvbotaapm1;vvbotaapm1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotaapm2;vvbotaapm2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotapps1;vvbotapps1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotapps3;vvbotapps3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotarep1;vvbotarep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotarmq1;vvbotarmq1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotarmq2;vvbotarmq2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatsp1;vvbotatsp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatsp2;vvbotatsp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatst3;vvbotatst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatst4;vvbotatst4.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatvv1;vvbotatvv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotatvv2;vvbotatvv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbsql1;vvbotbsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbsql2;vvbotbsql2.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbtsd1;vvbotbtsd1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotbtsd2;vvbotbtsd2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotcach1;vvbotcach1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotcach2;vvbotcach2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotjump1;vvbotjump1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotreco1;vvbotreco1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotreco2;vvbotreco2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssc1;vvbotrssc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssc2;vvbotrssc2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssm1;vvbotrssm1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrssm2;vvbotrssm2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrtms1;;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvbotrtms2;vvbotrtms2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow BOT - env TEST
vvpeaabst1;vvpeaabst1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST
vvpeaabst2;vvpeaabst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow SIT - env TEST
vvpeaabst3;vvpeaabst3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0
vvpeaarcv1;vvpeaarcv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST
vvpeaarcv2;vvpeaarcv2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Test;;a_definir;Production;secops;Free Flow RCV - env TEST
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 sibocbsap2 sibocbsap2.sanef.groupe linux Red Hat Enterprise Linux 8.10 Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
3 siboomcla1 siboomcla1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
4 siboomcla2 siboomcla2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
5 spbocbsap1 spbocbsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
6 spboomcla1 spboomcla1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
7 spboomcla2 spboomcla2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
8 svboomcla2 svboomcla2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
9 vdaflbdwh1 vdaflbdwh1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Développement a_definir Production secops Free Flow DWH BI - env DEV
10 vdaflbsta1 vdaflbsta1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Développement a_definir Production secops Free Flow DWH BI - env DEV
11 vdbocbsap1 vdbocbsap1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
12 vdbocharg1 vdbocharg1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
13 vdbocjump1 vdbocjump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
14 vdbocmedi1 vdbocmedi1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
15 vdbocs4ci1 vdbocs4ci1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
16 vdbocsman1 vdbocsman1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.7 (Ootpa) Flux Libre Développement a_definir Production secops Free Flow BOC - env DEV
17 viaflarat1 viaflarat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow 1
18 viaflbdwh1 viaflbdwh1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow DWH BI - env PREPROD
19 viaflbsta1 viaflbsta1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow DWH BI - env PREPROD
20 viaflperf1 viaflperf1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
21 vibocaprx1 vibocaprx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
22 vibocharg1 vibocharg1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
23 vibocmedi1 vibocmedi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
24 vibocs4as1 vibocs4as1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
25 vibocs4as2 vibocs4as2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
26 vibocs4as3 vibocs4as3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
27 vibocs4ci1 vibocs4ci1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
28 vibocsman1 vibocsman1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOC - env PREPROD
29 vibooaboo1 vibooaboo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
30 vibooangx1 vibooangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
31 vibooaori1 vibooaori1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
32 vibooaori2 vibooaori2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
33 viboobquo1 viboobquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
34 viboobquo2 viboobquo2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
35 viboobsql1 viboobsql1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
36 viboobsql2 viboobsql2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
37 viboomocr1 viboomocr1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
38 vibooosea1 vibooosea1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
39 vibooosea2 vibooosea2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOO - env PREPROD
40 vibotaapm1 vibotaapm1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
41 vibotakpi1 vibotakpi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Implémentation secops Flux libre A13-A14 -
42 vibotangx1 vibotangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
43 vibotapps1 vibotapps1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
44 vibotapps2 vibotapps2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
45 vibotapps3 vibotapps3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
46 vibotarmq1 vibotarmq1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
47 vibotarmq2 vibotarmq2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
48 vibotarmq3 vibotarmq3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
49 vibotasim1 vibotasim1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
50 vibotatsp1 vibotatsp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
51 vibotatst1 vibotatst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
52 vibotatst2 vibotatst2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
53 vibotatvv1 vibotatvv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
54 vibotbquo1 vibotbquo1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
55 vibotbsql1 vibotbsql1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
56 vibotbsql2 vibotbsql2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
57 vibotbtsd1 vibotbtsd1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
58 vibotcach1 vibotcach1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
59 vibotreco1 vibotreco1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
60 vibotreco2 vibotreco2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
61 vibotreco3 vibotreco3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
62 vibotreco4 vibotreco4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
63 vibotrssm1 vibotrssm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
64 vibotrssm2 vibotrssm2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow BOT - env PREPROD
65 vipeaabst1 vipeaabst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
66 vipeaabst2 vipeaabst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
67 vipeaabst3 vipeaabst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops BOOST 1.0 1 1.0
68 vipeaarcv1 vipeaarcv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow RCV - env PREPROD
69 vipeabbst2 vipeabbst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
70 vipeabbst3 vipeabbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
71 vipeabbst4 vipeabbst4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
72 vipeahbst1 vipeahbst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod DMZ a_definir Production secops Free Flow 1 (HA proxy A13-A14)
73 vipeahbst3 vipeahbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Pré-Prod a_definir Production secops Free Flow SIT - env PREPROD
74 vpaflarat1 vpaflarat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow 1
75 vpaflbdwh1 vpaflbdwh1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
76 vpaflbsta1 vpaflbsta1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
77 vpaflgsys1 vpaflgsys1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
78 vpbocaprx1 vpbocaprx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
79 vpbocardp1 vpbocardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Flux libre A13-A14 -
80 vpbocarep1 vpbocarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
81 vpbocasec1 vpbocasec1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
82 vpbocharg1 vpbocharg1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
83 vpbocjump1 vpbocjump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
84 vpbocmedi1 vpbocmedi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
85 vpbocrsap1 vpbocrsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
86 vpbocs4as1 vpbocs4as1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
87 vpbocs4as2 vpbocs4as2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
88 vpbocs4as3 vpbocs4as3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
89 vpbocs4ci1 vpbocs4ci1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
90 vpbocsman1 vpbocsman1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
91 vpbooaboo1 vpbooaboo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
92 vpbooangx1 vpbooangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
93 vpbooaori1 vpbooaori1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
94 vpbooaori2 vpbooaori2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
95 vpbooardp1 vpbooardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
96 vpbooarep1 vpbooarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
97 vpbooarep2 vpbooarep2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
98 vpboobquo1 vpboobquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
99 vpboobquo2 vpboobquo2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
100 vpboobsql1 vpboobsql1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
101 vpboobsql2 vpboobsql2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
102 vpboojump1 vpboojump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
103 vpboomocr1 vpboomocr1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
104 vpbooosea1 vpbooosea1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
105 vpbooosea2 vpbooosea2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
106 vpbotaapm1 vpbotaapm1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
107 vpbotakpi1 vpbotakpi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
108 vpbotangx1 vpbotangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
109 vpbotapps1 vpbotapps1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
110 vpbotapps2 vpbotapps2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
111 vpbotapps3 vpbotapps3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
112 vpbotardp1 vpbotardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
113 vpbotarep1 vpbotarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
114 vpbotarep2 vpbotarep2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
115 vpbotarmq1 vpbotarmq1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
116 vpbotarmq2 vpbotarmq2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
117 vpbotarmq3 vpbotarmq3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
118 vpbotasim1 vpbotasim1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
119 vpbotatsp1 vpbotatsp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
120 vpbotatvv1 vpbotatvv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
121 vpbotbquo1 vpbotbquo1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
122 vpbotbsql1 vpbotbsql1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
123 vpbotbsql2 vpbotbsql2.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
124 vpbotbtsd1 vpbotbtsd1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
125 vpbotcach1 vpbotcach1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
126 vpbotjump1 vpbotjump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
127 vpbotreco1 vpbotreco1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
128 vpbotreco2 vpbotreco2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
129 vpbotreco3 vpbotreco3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
130 vpbotreco4 vpbotreco4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
131 vpbotrssm1 vpbotrssm1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
132 vpbotrssm2 vpbotrssm2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
133 vpnitardp1 vpnitardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Implémentation secops Flux libre A13-A14 -
134 vppeaabst1 vppeaabst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow SIT - env PROD
135 vppeaabst2 vppeaabst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow SIT - env PROD
136 vppeaabst3 vppeaabst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow SIT - env PROD
137 vppeaarcv1 vppeaarcv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Free Flow RCV - env PROD
138 vppeabbst2 vppeabbst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
139 vppeabbst3 vppeabbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
140 vppeabbst4 vppeabbst4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
141 vppeahbst1 vppeahbst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow 1
142 vppeahbst3 vppeahbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow SIT - env PROD
143 vpsupacen1 vpsupacen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
144 vpsupapol1 vpsupapol1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
145 vpsupapol2 vpsupapol2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
146 vpsupapol3 vpsupapol3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
147 vpsupapol4 vpsupapol4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Centreon 1
148 vpsupapol5 vpsupapol5.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Centreon 1
149 vpsupbcen1 vpsupbcen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
150 vpsupbmap1 vpsupbmap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
151 vpsupbmbi1 vpsupbmbi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
152 vrpeahbst1 vrpeahbst1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette DMZ a_definir Production secops Free Flow 1
153 vrsupacen1 vrsupacen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette a_definir Production secops Centreon 1
154 vrsupbcen1 vrsupbcen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette a_definir Production secops Centreon 1
155 vrsupbmap1 vrsupbmap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Centreon 1
156 vrsupbmbi1 vrsupbmbi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Centreon 1
157 vvaflbdwh1 vvaflbdwh1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow DWH BI - env TEST
158 vvaflblog1 vvaflblog1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow 1
159 vvaflbsta1 vvaflbsta1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow DWH BI - env TEST
160 vvaflgsys1 vvaflgsys1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow DWH BI - env TEST
161 vvafljump1 vvafljump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow 1
162 vvafljump2 vvafljump2.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow 1
163 vvaflsmtp1 vvaflsmtp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow 1
164 vvbocaprx1 vvbocaprx1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
165 vvbocarep1 vvbocarep1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
166 vvbocasec1 vvbocasec1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
167 vvbocbsap1 vvbocbsap1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.8 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
168 vvbocharg1 vvbocharg1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
169 vvbocharg2 vvbocharg2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
170 vvbocmedi1 vvbocmedi1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
171 vvbocmedi2 vvbocmedi2 linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
172 vvbocrsap1 vvbocrsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
173 vvbocs4as1 vvbocs4as1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
174 vvbocs4as2 vvbocs4as2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
175 vvbocs4ci1 vvbocs4ci1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
176 vvbocs4ci2 vvbocs4ci2 linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOC - env TEST
177 vvbooaboo1 vvbooaboo1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
178 vvbooaboo2 vvbooaboo2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
179 vvbooaori1 vvbooaori1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
180 vvbooaori2 vvbooaori2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
181 vvbooarep2 vvbooarep2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
182 vvboobsql1 vvboobsql1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
183 vvboobsql2 vvboobsql2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
184 vvboojump1 vvboojump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
185 vvboomocr1 vvboomocr1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
186 vvboomocr2 vvboomocr2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
187 vvbooosea1 vvbooosea1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
188 vvbooosea2 vvbooosea2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOO - env TEST
189 vvbotaapm1 vvbotaapm1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
190 vvbotaapm2 vvbotaapm2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
191 vvbotapps1 vvbotapps1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
192 vvbotapps3 vvbotapps3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
193 vvbotarep1 vvbotarep1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
194 vvbotarmq1 vvbotarmq1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
195 vvbotarmq2 vvbotarmq2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
196 vvbotatsp1 vvbotatsp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
197 vvbotatsp2 vvbotatsp2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
198 vvbotatst3 vvbotatst3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
199 vvbotatst4 vvbotatst4.sanef-rec.fr windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
200 vvbotatvv1 vvbotatvv1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
201 vvbotatvv2 vvbotatvv2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
202 vvbotbsql1 vvbotbsql1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
203 vvbotbsql2 vvbotbsql2.sanef-rec.fr windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
204 vvbotbtsd1 vvbotbtsd1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
205 vvbotbtsd2 vvbotbtsd2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
206 vvbotcach1 vvbotcach1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
207 vvbotcach2 vvbotcach2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
208 vvbotjump1 vvbotjump1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
209 vvbotreco1 vvbotreco1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
210 vvbotreco2 vvbotreco2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
211 vvbotrssc1 vvbotrssc1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
212 vvbotrssc2 vvbotrssc2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
213 vvbotrssm1 vvbotrssm1.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
214 vvbotrssm2 vvbotrssm2.recette.adds windows Microsoft Windows Server 2022 Standard Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
215 vvbotrtms1 linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
216 vvbotrtms2 vvbotrtms2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow BOT - env TEST
217 vvpeaabst1 vvpeaabst1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow SIT - env TEST
218 vvpeaabst2 vvpeaabst2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow SIT - env TEST
219 vvpeaabst3 vvpeaabst3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Recette a_definir Production secops BOOST 1.0 1 1.0
220 vvpeaarcv1 vvpeaarcv1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow RCV - env TEST
221 vvpeaarcv2 vvpeaarcv2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Test a_definir Production secops Free Flow RCV - env TEST

View File

@ -0,0 +1,38 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
lpagtbpla1;lpagtbpla1;linux;Red Hat Enterprise Linux 8.10;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9
lragtbpla1;lragtbpla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Implémentation;secops;AgileTime 2.7.9
vdechatal3;vdechatal3.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1 - Gestion ETL et des échanges
vpagtaftp1;vpagtaftp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9
vpagtatse1;vpagtatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1
vpagtaweb1;vpagtaweb1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1
vpaiiatse2;vpaiiatse2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Gestion;Production;;a_definir;Production;secops;
vpechatre1;vpechatre1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpechatre2;vpechatre2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpechatre3;vpechatre3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpechatre4;vpechatre4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpgesbref1;vpgesbref1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;
vpintaels1;vpintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1
vpintanfs1;vpintanfs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1
vpintaprx2;vpintaprx2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1
vpintaweb2;vpintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1
vpintaweb3;vpintaweb3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1
vpintbweb2;vpintbweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1
vppintaels1;vppintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1
vppintanfs1;vppintanfs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1
vppintaprx1;vppintaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;DMZ;a_definir;Production;secops;Gestion site institutionnel 1
vppintaweb1;vppintaweb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1
vppintaweb2;vppintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1
vppintbweb1;vppintbweb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Pré-Prod;;a_definir;Production;secops;Gestion site institutionnel 1
vragtatse1;vragtatse1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;AgileTime - Sapn 1
vragtatse2;vragtatse2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;AgileTime - HR Performance 1
vragtaweb1;vragtaweb1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;AgileTime - Self service sanef 1
vraptapsh1;vraptapsh1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;Portail Sharepoint 1
vrdsiatse1;vrdsiatse1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Gestion;Recette;;a_definir;Production;secops;
vrechatre1;vrechatre1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vrechatre2;vrechatre2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vrechatre3;vrechatre3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vrgesbref1;vrgesbref1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;
vrintaels1;vrintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.6 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1
vrintaprx2;vrintaprx2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1
vrintaweb2;vrintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.9 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1
vrintbweb2;vrintbweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Recette;;a_definir;Production;secops;Gestion site institutionnel 1
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 lpagtbpla1 lpagtbpla1 linux Red Hat Enterprise Linux 8.10 Gestion Production a_definir Implémentation secops AgileTime 2.7.9
3 lragtbpla1 lragtbpla1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Recette a_definir Implémentation secops AgileTime 2.7.9
4 vdechatal3 vdechatal3.recette.adds windows Microsoft Windows Server 2022 Standard Gestion Recette a_definir Production secops TALEND IS Professional Edition - Named User 1 - Gestion ETL et des échanges
5 vpagtaftp1 vpagtaftp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Gestion Production a_definir Implémentation secops AgileTime 2.7.9
6 vpagtatse1 vpagtatse1.sanef.groupe windows Microsoft Windows Server 2022 Standard Gestion Production a_definir Implémentation secops AgileTime - Sapn 1
7 vpagtaweb1 vpagtaweb1.sanef.groupe windows Microsoft Windows Server 2022 Standard Gestion Production a_definir Implémentation secops AgileTime - Sapn 1
8 vpaiiatse2 vpaiiatse2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Gestion Production a_definir Production secops
9 vpechatre1 vpechatre1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
10 vpechatre2 vpechatre2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
11 vpechatre3 vpechatre3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
12 vpechatre4 vpechatre4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
13 vpgesbref1 vpgesbref1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops
14 vpintaels1 vpintaels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops Gestion site institutionnel 1
15 vpintanfs1 vpintanfs1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops Gestion site institutionnel 1
16 vpintaprx2 vpintaprx2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production DMZ a_definir Production secops Gestion site institutionnel 1
17 vpintaweb2 vpintaweb2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production DMZ a_definir Production secops Gestion site institutionnel 1
18 vpintaweb3 vpintaweb3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production DMZ a_definir Production secops Gestion site institutionnel 1
19 vpintbweb2 vpintbweb2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops Gestion site institutionnel 1
20 vppintaels1 vppintaels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Pré-Prod a_definir Production secops Gestion site institutionnel 1
21 vppintanfs1 vppintanfs1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Pré-Prod a_definir Production secops Gestion site institutionnel 1
22 vppintaprx1 vppintaprx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Pré-Prod DMZ a_definir Production secops Gestion site institutionnel 1
23 vppintaweb1 vppintaweb1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Pré-Prod a_definir Production secops Gestion site institutionnel 1
24 vppintaweb2 vppintaweb2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Pré-Prod a_definir Production secops Gestion site institutionnel 1
25 vppintbweb1 vppintbweb1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Pré-Prod a_definir Production secops Gestion site institutionnel 1
26 vragtatse1 vragtatse1.recette.adds windows Microsoft Windows Server 2022 Standard Gestion Recette a_definir Production secops AgileTime - Sapn 1
27 vragtatse2 vragtatse2.recette.adds windows Microsoft Windows Server 2022 Standard Gestion Recette a_definir Production secops AgileTime - HR Performance 1
28 vragtaweb1 vragtaweb1.recette.adds windows Microsoft Windows Server 2022 Standard Gestion Recette a_definir Production secops AgileTime - Self service sanef 1
29 vraptapsh1 vraptapsh1.recette.adds windows Microsoft Windows Server 2022 Standard Gestion Recette a_definir Production secops Portail Sharepoint 1
30 vrdsiatse1 vrdsiatse1.recette.adds windows Microsoft Windows Server 2022 Standard Gestion Recette a_definir Production secops
31 vrechatre1 vrechatre1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Recette a_definir Production secops TALEND IS Professional Edition - Named User 1
32 vrechatre2 vrechatre2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Recette a_definir Production secops TALEND IS Professional Edition - Named User 1
33 vrechatre3 vrechatre3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Recette a_definir Production secops TALEND IS Professional Edition - Named User 1
34 vrgesbref1 vrgesbref1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Recette a_definir Production secops
35 vrintaels1 vrintaels1.sanef.groupe linux Red Hat Enterprise Linux release 8.6 (Ootpa) Gestion Recette a_definir Production secops Gestion site institutionnel 1
36 vrintaprx2 vrintaprx2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Recette a_definir Production secops Gestion site institutionnel 1
37 vrintaweb2 vrintaweb2.sanef.groupe linux Red Hat Enterprise Linux release 8.9 (Ootpa) Gestion Recette a_definir Production secops Gestion site institutionnel 1
38 vrintbweb2 vrintbweb2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Recette a_definir Production secops Gestion site institutionnel 1

369
inputs/dom/dom-infra.csv Normal file
View File

@ -0,0 +1,369 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
lpgesanas1;lpgesanas1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;
lpgesanas2;lpgesanas2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;
lrdsibrac1;lrdsibrac1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test et recette Oracle RAC
lrdsibrac2;lrdsibrac2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test et recette Oracle RAC
nvr-spare-beu;nvr-spare-beu;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-eco;nvr-spare-eco;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-etv;nvr-spare-etv;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-mon;nvr-spare-mon;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-mtz;nvr-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-sen;nvr-spare-sen;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-tqx;nvr-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
rmilwdc1;rmilwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
rsmiwdc1;rsmiwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
spburadpe1;spburadpe1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1
spburadpi1;spburadpi1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1
spcybabkp1;spcybabkp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
spcybavlt1;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
spcybavlt2;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
specmadpr1;specmadpr1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
specmadpr2;specmadpr2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
specmadpr3;specmadpr3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
spemvalog1;spemvalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;;a_definir;Production;secops;splunk 1
sppeaanvr1;sppeaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr10;sppeaanvr10;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr11;sppeaanvr11;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr12;sppeaanvr12;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr13;sppeaanvr13;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr14;sppeaanvr14;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr15;sppeaanvr15;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr16;sppeaanvr16;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr17;sppeaanvr17;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr18;sppeaanvr18;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr19;sppeaanvr19;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr2;sppeaanvr2;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr20;sppeaanvr20;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr21;sppeaanvr21;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr22;sppeaanvr22;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr23;sppeaanvr23;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr24;sppeaanvr24;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr25;sppeaanvr25;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr26;sppeaanvr26;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr27;sppeaanvr27;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr28;sppeaanvr28;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr29;sppeaanvr29;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr3;sppeaanvr3;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr30;sppeaanvr30;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr31;sppeaanvr31;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr32;sppeaanvr32;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr33;sppeaanvr33;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr4;sppeaanvr4;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr5;sppeaanvr5;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr6;sppeaanvr6;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr7;sppeaanvr7;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr8;sppeaanvr8;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr9;sppeaanvr9;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sptrabenr1;sptrabenr1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
sptrabenr2;sptrabenr2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
srcybabkp1;SRCYBABKP1.sanef-rec.fr;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
srcybavlt1;srcybavlt1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
srcybavlt2;;windows;Microsoft Windows Server 2022 Datacenter;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
srdsiabkp1;srdsiabkp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Implémentation;secops;Gestion sauvegarde 1
srlogbels1;srlogbels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
srlogbels2;srlogbels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vburwdc1;vburwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vburwdc2;vburwdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vdlabaadm1;;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vdlabawdc1;vdlabawdc1.tiering.dev;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vdlabawdc2;vdlabawdc2;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vmpki1;vmpki1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vmpki2;vmpki2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vmsym2;vmsym2;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Symantec (Antivirus Serveur) 1
vodsiaito1;vodsiaito1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Pré-Prod;;a_definir;Production;secops;ITOP 2.6
vpabnanvr1;vpabnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpabvanvr1;vpabvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpaiia8770;vpaiia8770.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;
vpaiiaada1;vpaiiaada1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1
vpaiiaadm1;vpaiiaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1
vpaiiaast1;vpaiiaast1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1
vpaiiaazu1;vpaiiaazu1;windows;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;Infrastructure;Production;DMZ;a_definir;Production;secops;
vpaiiadba1;vpaiiadba1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion oracle 1
vpaiiadns1;vpaiiadns1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiadns2;vpaiiadns2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiadns3;vpaiiadns3;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiadns4;VPAIIADNS4;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiagml1;vpaiiagml1;windows;Windows 2016 Version 1607;Infrastructure;Production;;a_definir;Production;secops;
vpaiiairs1;vpaiiairs1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;IRS (Insight Repport Support) 1
vpamlanvr1;vpamlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpamsanvr1;vpamsanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpbckaadm1;vpbckaadm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckacse1;vpbckacse1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckacse2;vpbckacse2.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw1;vpbckangw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw2;vpbckangw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw3;vpbckangw3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw4;vpbckangw4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbmtanvr1;vpbmtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpbovanvr1;vpbovanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpburaadfs1;vpburaadfs1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1
vpburaadfs2;vpburaadfs2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1
vpburaadm1;vpburaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur Administration
vpburaaov1;vpburaaov1.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;
vpburaaov2;vpburaaov2.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;
vpburadhcp1;vpburadhcp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1
vpburadhcp2;vpburadhcp2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1
vpburadps1;vpburadps1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1
vpburaexc1;vpburaexc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013
vpburaexc2;vpburaexc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013
vpburafax1;vpburafax1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1
vpburafax2;vpburafax2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1
vpburaimp1;vpburaimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103)
vpburawap1;vpburawap1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1
vpburawap2;vpburawap2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1
vpburawdc1;vpburawdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburawdc2;vpburawdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburawdc3;vpburawdc3.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburawdc4;vpburawdc4.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburbimp1;vpburbimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103)
vpccyanvr1;vpccyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpchtanvr1;vpchtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpcotanvr1;vpcotanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpctvanvr1;vpctvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpcybacpm1;vpcybacpm1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production
vpcybapsm1;vpcybapsm1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsm2;vpcybapsm2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsm3;vpcybapsm3.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsm4;vpcybapsm4.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsp1;vpcybapsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpcybapsp2;vpcybapsp2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpcybapta1;vpcybapta1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production
vpcybapvwa1;vpcybapvwa1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapvwa2;vpcybapvwa2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpdaoalic1;vpdaoalic1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ELEC CALC 2017
vpdsiaadm1;vpdsiaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpdsiaads1;vpdsiaads1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD SelfService plus 1
vpdsiaans1;vpdsiaans1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsiaclo1;vpdsiaclo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;DMZ;a_definir;Production;secops;Owncloud 1
vpdsiacol1;vpdsiacol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1
vpdsiadep1;vpdsiadep1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Nextcloud 31.0.7
vpdsiagit1;vpdsiagit1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;CVS 1
vpdsiagrd1;vpdsiagrd1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Gestion DNS 1
vpdsiahap1;vpdsiahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiahap2;vpdsiahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiahap3;vpdsiahap3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiahap4;vpdsiahap4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiaito1;vpdsiaito1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;ITOP 2.7
vpdsiakib1;vpdsiakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsiakms1;vpdsiakms1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpdsiangx1;vpdsiangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiangx2;vpdsiangx2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiangx3;vpdsiangx3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiangx4;vpdsiangx4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiarad1;vpdsiarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiarad2;vpdsiarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiasaf1;vpdsiasaf1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiasaf2;vpdsiasaf2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiasat1;vpdsiasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsiasat2;vpdsiasat2.sanef.groupe;linux;Oracle Linux Server release 8.9;Infrastructure;Production;;a_definir;Production;secops;
vpdsiatse1;vpdsiatse1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur licence TSE
vpdsiatse2;vpdsiatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Rebond nouvel AD
vpdsiaumds1;vpdsiaumds1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VCENTER Server Standard 1
vpdsiawik1;vpdsiawik1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vpdsiawsus1;vpdsiawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vpdsiawsus2;vpdsiawsus2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vpdsibarc1;vpdsibarc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibels1;vpdsibels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsibels2;vpdsibels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsibetc1;vpdsibetc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibetc2;vpdsibetc2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibetc3;vpdsibetc3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibpmm1;vpdsibpmm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsibquo1;vpdsibquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsigrid1;vpdsigrid1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Grid control 12
vpdsismtp1;vpdsismtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsismtp2;vpdsismtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpechaetl1;vpechaetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechaetl2;vpechaetl2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechaetl3;vpechaetl3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechaetl4;vpechaetl4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechbetl1;vpechbetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;EtlTool - ordonnanceur 1
vpecmapss1;vpecmapss1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
vpecmapss3;vpecmapss3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vpecmardp1;vpecmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vpecmbsql1;vpecmbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
vpecmbsql3;vpecmbsql3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vpemvasat1;vpemvasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Red Hat Satellite Satellite
vpexpaxfb1;vpexpaxfb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;XFB Gateway 1
vpexpbdech1;vpexpbdech1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion de déchets
vpflmanvr1;vpflmanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpgawagtw1;vpgawagtw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawagtw2;vpgawagtw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawamft1;vpgawamft1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawamft2;vpgawamft2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawbpgs1;vpgawbpgs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgeoagps2;vpgeoagps2;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Implémentation;secops;
vpgesaquo1;vpgesaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;3PAR StoreServ (SSMC) 1
vpgesaquo2;vpgesaquo2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;
vpgtcawsus1;vpgtcawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vphdnanvr1;vphdnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vphrqanvr1;vphrqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpiadaada1;vpiadaada1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1
vpiadaadm1;vpiadaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1
vpiadapki1;vpiadapki1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapki2;vpiadapki2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapki3;vpiadapki3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapki4;vpiadapki4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapol1;vpiadapol1.sanef.groupe;linux;Red Hat Enterprise Linux 8 (64-bit);Infrastructure;Production;;a_definir;Production;secops;Centreon 1
vpiadawdc1;vpiadawdc1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawdc2;vpiadawdc2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawdc3;vpiadawdc3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawdc4;vpiadawdc4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawsus1;vpiadawsus1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vpisibtel1;vpisibtel1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ISI-COM 16.12
vplpeanvr1;vplpeanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpmalanvr1;vpmalanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpmetaads1;vpmetaads1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;AD SelfService plus 1
vpmetaquo1;vpmetaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1
vpnapamed1;vpnapamed1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpngwasia1;vpngwasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpngwasia2;vpngwasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpngwasic1;vpngwasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpngwasic2;vpngwasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpodabquo1;vpodabquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Oracle 19 (12.2.0.3)
vpormanvr1;vpormanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vppciaquo1;vppciaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1
vppcmardp1;vppcmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vppixatsf1;vppixatsf1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppixatsf2;vppixatsf2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppixbams1;vppixbams1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppixbams2;vppixbams2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppmrames1;vppmrames1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion Radio 3RP 1
vpppeaanvr1;vpppeaanvr1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Pré-Prod;;a_definir;Production;secops;Gestion Vidéo NVR 1
vppwdahap1;vppwdahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;
vppwdahap2;vppwdahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;
vppwdapod1;vppwdapod1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vppwdapod2;vppwdapod2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vppwdbsql1;vppwdbsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpresardp1;vpresardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1
vpresardp2;vpresardp2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1
vpsaaanvr1;vpsaaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpsamaext1;vpsamaext1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SAM - Gestion des Actifs Logiciels 1
vpsdtanvr1;vpsdtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpsecausb1;vpsecausb1.sanef.groupe;linux;Ubuntu;Infrastructure;Production;;a_definir;Production;secops;
vpsecawin1;vpsecawin1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sécurité windows 1
vpsicapol1;vpsicapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Centreon 1
vpsimaexp1;vpsimaexp1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;DOLLAR UNIVERSE 1
vpsimaxsr1;vpsimaxsr1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;XFB Gateway 1
vpsroanvr1;vpsroanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpssiandes1;vpssiandes1.sanef.groupe;windows;Windows 2019 Version 1809;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1
vpssiapki2;vpssiapki2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpssiapki3;vpssiapki3.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1
vpstqanvr1;vpstqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpthlanvr1;vpthlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vptraatai1;vptraatai1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptraatai2;vptraatai2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptraazen1;vptraazen1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptraazen2;vptraazen2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptsyanvr1;vptsyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpvidavsc1;vpvidavsc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1
vpvidavsc2;vpvidavsc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1
vpvpnaems1;vpvpnaems1.sanef.groupe;linux;;Infrastructure;Production;;a_definir;Implémentation;secops;FortiAnalyzer 1
vpvpnarad1;vpvpnarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VM de production pour l'authentification forte pour les accès distants SSL.
vpvpnarad2;vpvpnarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;VM de production pour l'authentification forte pour les accès distants SSL.
vpvsaaafl1;vpvsaaafl1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaafl2;vpvsaaafl2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaafz1;vpvsaaafz1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaafz2;vpvsaaafz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaahp2;vpvsaaahp2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaahz2;vpvsaaahz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaages1;vpvsaages1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaages2;vpvsaages2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaagez1;vpvsaagez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaagez2;vpvsaagez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaiad1;vpvsaaiad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaiad2;vpvsaaiad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamet1;vpvsaamet1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamet2;vpvsaamet2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamez1;vpvsaamez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamez2;vpvsaamez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaarec2;vpvsaarec2.sanef.groupe;linux;Oracle Linux Server release 8.10;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaarez2;vpvsaarez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasia1;vpvsaasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasia2;vpvsaasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasic1;vpvsaasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasic2;vpvsaasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsampci1;vpvsampci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsampci2;vpvsampci2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vraiibpgs4;vraiibpgs4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vraiibpgs5;vraiibpgs5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vraiibsql3;vraiibsql3;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;
vrcybacpm1;vrcybacpm1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
vrcybapsm1;vrcybapsm1.recette.adds;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
vrcybapsm2;vrcybapsm2.recette.adds;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
vrcybapsp1;vrcybapsp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;CyberArk 1
vrcybapsp2;vrcybapsp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;CyberArk 1
vrcybapta1;vrcybapta1.sanef-rec.fr;linux;;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
vrcybapvwa1;vrcybapvwa1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
vrcybapvwa2;vrcybapvwa2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Recette;;a_definir;Production;secops;CyberArk Recette
vrdsiaada1;vrdsiaada1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;AD Audit plus 1
vrdsiaadg1;vrdsiaadg1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;AD Manager plus 1
vrdsiaadm1;vrdsiaadm1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vrdsiaans1;vrdsiaans1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vrdsiaazu1;vrdsiaazu1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;
vrdsiaazu2;vrdsiaazu2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;
vrdsiadep1;vrdsiadep1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Nextcloud 31.0.7
vrdsiadev1;vrdsiadev1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Développement;;a_definir;Production;secops;Collecte Serveur 1
vrdsiagit1;vrdsiagit1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;GitLab 17.5
vrdsiahax1;vrdsiahax1;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Implémentation;secops;
vrdsiahax2;vrdsiahax2;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Implémentation;secops;
vrdsiaito1;vrdsiaito1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;ITOP 2.6
vrdsiakms1;vrdsiakms1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vrdsialab1;vrdsialab1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrdsialab2;vrdsialab2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrdsiarad1;vrdsiarad1.sanef-rec.fr;linux;;Infrastructure;Recette;;a_definir;Production;secops;Radius 1
vrdsiarad2;vrdsiarad2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Radius 1
vrdsiasaf1;vrdsiasaf1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Radius 1
vrdsiasaf2;vrdsiasaf2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Radius 1
vrdsiasat1;vrdsiasat1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Red Hat Satellite Satellite
vrdsiascr1;vrdsiascr1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Nextcloud 31.0.7
vrdsiawsus1;vrdsiawsus1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vrdsibans1;vrdsibans1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vrdsibarc1;vrdsibarc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrdsibetc1;vrdsibetc1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1
vrdsibetc2;vrdsibetc2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1
vrdsibetc3;vrdsibetc3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1
vrdsibsql1;vrdsibsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Postgres 1
vrdsismtp1;vrdsismtp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vrdsismtp2;vrdsismtp2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vrechaetl1;vrechaetl1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrechaetl2;vrechaetl2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrechbetl1;vrechbetl1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;EtlTool - ordonnanceur 1
vrecmadpr1;vrecmadpr1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;SCCM 1
vrecmapss1;vrecmapss1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Implémentation;secops;SCCM MECM
vrecmbsql1;vrecmbsql1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Implémentation;secops;SCCM MECM
vrgawagtw1;vrgawagtw1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vrgawamft1;vrgawamft1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vrgawbpgs1;vrgawbpgs1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vriadapki1;vriadapki1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Pki 1
vriadapki2;vriadapki2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Pki 1
vriadapki3;vriadapki3.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Gestion Pki 1
vriadawdc1;vriadawdc1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vriadawdc2;vriadawdc2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vriadawdc3;vriadawdc3.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Controleur de Domaine 1
vrlogaagt1;vrlogaagt1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;Gestion des logs 1
vrlogakib1;vrlogakib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrlogbels1;vrlogbels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrlogbels2;vrlogbels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrlogbquo1;vrlogbquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Recette;;a_definir;Production;secops;
vrnmsatse1;vrnmsatse1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Recette;;a_definir;Production;secops;U2000 1
vrpwdahap1;vrpwdahap1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Implémentation;secops;
vrpwdapod1;vrpwdapod1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Implémentation;secops;
vrresardp1;vrresardp1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;
vrsamaext1;vrsamaext1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;DMZ;a_definir;Production;secops;SAM - Gestion des Actifs Logiciels 1
vrvidanvr1;vrvidanvr1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1
vrvidanvr2;vrvidanvr2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1
vrvidavsc1;vrvidavsc1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1
vrvidavsc2;vrvidavsc2.recette.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1
vrvpnaaov1;vrvpnaaov1.recette.adds;windows;Windows 2016 Version 1607;Infrastructure;Recette;;a_definir;Implémentation;secops;
vrvpnaaov2;vrvpnaaov2.recette.adds;windows;Windows 2016 Version 1607;Infrastructure;Recette;;a_definir;Implémentation;secops;
vtdsiaels1;vtdsiaels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test
vtdsiaels2;vtdsiaels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test
vtdsiakib1;vtdsiakib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test
vtdsiaquo1;vtdsiaquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Test;;a_definir;Production;secops;Serveur de Test
vtdsiatmp1;vtdsiatmp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Collecte Serveur 1
vtdsibpgs1;vtdsibpgs1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test pour les DBA
vtdsibpgs2;vtdsibpgs2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vtdsibpgs3;vtdsibpgs3.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;Serveur de test pour les DBA
vtdsibpmm1;vtdsibpmm1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
vtdsibquo1;vtdsibquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Recette;;a_definir;Production;secops;
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 lpgesanas1 lpgesanas1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops
3 lpgesanas2 lpgesanas2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops
4 lrdsibrac1 lrdsibrac1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Serveur de test et recette Oracle RAC
5 lrdsibrac2 lrdsibrac2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Serveur de test et recette Oracle RAC
6 nvr-spare-beu nvr-spare-beu windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
7 nvr-spare-eco nvr-spare-eco windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
8 nvr-spare-etv nvr-spare-etv windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
9 nvr-spare-mon nvr-spare-mon windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
10 nvr-spare-mtz nvr-spare-mtz windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
11 nvr-spare-sen nvr-spare-sen windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
12 nvr-spare-tqx nvr-spare-tqx windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
13 rmilwdc1 rmilwdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
14 rsmiwdc1 rsmiwdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
15 spburadpe1 spburadpe1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops SCCM 1
16 spburadpi1 spburadpi1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM 1
17 spcybabkp1 spcybabkp1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops CyberArk Production
18 spcybavlt1 Infrastructure Production a_definir Production secops CyberArk Production
19 spcybavlt2 Infrastructure Production a_definir Production secops CyberArk Production
20 specmadpr1 specmadpr1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
21 specmadpr2 specmadpr2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
22 specmadpr3 specmadpr3.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
23 spemvalog1 spemvalog1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Infrastructure Production a_definir Production secops splunk 1
24 sppeaanvr1 sppeaanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
25 sppeaanvr10 sppeaanvr10 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
26 sppeaanvr11 sppeaanvr11 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
27 sppeaanvr12 sppeaanvr12 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
28 sppeaanvr13 sppeaanvr13 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
29 sppeaanvr14 sppeaanvr14 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
30 sppeaanvr15 sppeaanvr15 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
31 sppeaanvr16 sppeaanvr16 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
32 sppeaanvr17 sppeaanvr17 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
33 sppeaanvr18 sppeaanvr18 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
34 sppeaanvr19 sppeaanvr19 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
35 sppeaanvr2 sppeaanvr2 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
36 sppeaanvr20 sppeaanvr20 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
37 sppeaanvr21 sppeaanvr21 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
38 sppeaanvr22 sppeaanvr22 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
39 sppeaanvr23 sppeaanvr23 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
40 sppeaanvr24 sppeaanvr24 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
41 sppeaanvr25 sppeaanvr25 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
42 sppeaanvr26 sppeaanvr26 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
43 sppeaanvr27 sppeaanvr27 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
44 sppeaanvr28 sppeaanvr28 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
45 sppeaanvr29 sppeaanvr29 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
46 sppeaanvr3 sppeaanvr3 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
47 sppeaanvr30 sppeaanvr30 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
48 sppeaanvr31 sppeaanvr31 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
49 sppeaanvr32 sppeaanvr32 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
50 sppeaanvr33 sppeaanvr33 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
51 sppeaanvr4 sppeaanvr4 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
52 sppeaanvr5 sppeaanvr5 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
53 sppeaanvr6 sppeaanvr6 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
54 sppeaanvr7 sppeaanvr7 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
55 sppeaanvr8 sppeaanvr8 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
56 sppeaanvr9 sppeaanvr9 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
57 sptrabenr1 sptrabenr1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
58 sptrabenr2 sptrabenr2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
59 srcybabkp1 SRCYBABKP1.sanef-rec.fr windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops CyberArk Recette
60 srcybavlt1 srcybavlt1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops CyberArk Recette
61 srcybavlt2 windows Microsoft Windows Server 2022 Datacenter Infrastructure Recette a_definir Production secops CyberArk Recette
62 srdsiabkp1 srdsiabkp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Implémentation secops Gestion sauvegarde 1
63 srlogbels1 srlogbels1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
64 srlogbels2 srlogbels2.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
65 vburwdc1 vburwdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
66 vburwdc2 vburwdc2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
67 vdlabaadm1 windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
68 vdlabawdc1 vdlabawdc1.tiering.dev windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
69 vdlabawdc2 vdlabawdc2 windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
70 vmpki1 vmpki1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
71 vmpki2 vmpki2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
72 vmsym2 vmsym2 windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops Symantec (Antivirus Serveur) 1
73 vodsiaito1 vodsiaito1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Pré-Prod a_definir Production secops ITOP 2.6
74 vpabnanvr1 vpabnanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
75 vpabvanvr1 vpabvanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
76 vpaiia8770 vpaiia8770.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops
77 vpaiiaada1 vpaiiaada1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops AD Audit plus 1
78 vpaiiaadm1 vpaiiaadm1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops AD Manager plus 1
79 vpaiiaast1 vpaiiaast1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Collecte Serveur 1
80 vpaiiaazu1 vpaiiaazu1 windows Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957 Infrastructure Production DMZ a_definir Production secops
81 vpaiiadba1 vpaiiadba1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion oracle 1
82 vpaiiadns1 vpaiiadns1 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
83 vpaiiadns2 vpaiiadns2 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
84 vpaiiadns3 vpaiiadns3 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
85 vpaiiadns4 VPAIIADNS4 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
86 vpaiiagml1 vpaiiagml1 windows Windows 2016 Version 1607 Infrastructure Production a_definir Production secops
87 vpaiiairs1 vpaiiairs1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops IRS (Insight Repport Support) 1
88 vpamlanvr1 vpamlanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
89 vpamsanvr1 vpamsanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
90 vpbckaadm1 vpbckaadm1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion sauvegarde 1
91 vpbckacse1 vpbckacse1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion sauvegarde 1
92 vpbckacse2 vpbckacse2.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion sauvegarde 1
93 vpbckangw1 vpbckangw1.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
94 vpbckangw2 vpbckangw2.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
95 vpbckangw3 vpbckangw3.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
96 vpbckangw4 vpbckangw4.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
97 vpbmtanvr1 vpbmtanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
98 vpbovanvr1 vpbovanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
99 vpburaadfs1 vpburaadfs1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion ADFS 1
100 vpburaadfs2 vpburaadfs2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion ADFS 1
101 vpburaadm1 vpburaadm1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Serveur Administration
102 vpburaaov1 vpburaaov1.sanef.groupe windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops
103 vpburaaov2 vpburaaov2.sanef.groupe windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops
104 vpburadhcp1 vpburadhcp1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion DHCP 1
105 vpburadhcp2 vpburadhcp2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion DHCP 1
106 vpburadps1 vpburadps1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops SCCM 1
107 vpburaexc1 vpburaexc1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production DMZ a_definir Production secops EXCHANGE SERVER Enterprise Edition 2013
108 vpburaexc2 vpburaexc2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production DMZ a_definir Production secops EXCHANGE SERVER Enterprise Edition 2013
109 vpburafax1 vpburafax1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops XMedius FAX 1
110 vpburafax2 vpburafax2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops XMedius FAX 1
111 vpburaimp1 vpburaimp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops PaperCut 19.1.3 (Build 52103)
112 vpburawap1 vpburawap1 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion ADFS 1
113 vpburawap2 vpburawap2 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion ADFS 1
114 vpburawdc1 vpburawdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
115 vpburawdc2 vpburawdc2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
116 vpburawdc3 vpburawdc3.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
117 vpburawdc4 vpburawdc4.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
118 vpburbimp1 vpburbimp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops PaperCut 19.1.3 (Build 52103)
119 vpccyanvr1 vpccyanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
120 vpchtanvr1 vpchtanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
121 vpcotanvr1 vpcotanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
122 vpctvanvr1 vpctvanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
123 vpcybacpm1 vpcybacpm1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Implémentation secops CyberArk Production
124 vpcybapsm1 vpcybapsm1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
125 vpcybapsm2 vpcybapsm2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
126 vpcybapsm3 vpcybapsm3.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops CyberArk Production
127 vpcybapsm4 vpcybapsm4.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops CyberArk Production
128 vpcybapsp1 vpcybapsp1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
129 vpcybapsp2 vpcybapsp2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
130 vpcybapta1 vpcybapta1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops CyberArk Production
131 vpcybapvwa1 vpcybapvwa1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
132 vpcybapvwa2 vpcybapvwa2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
133 vpdaoalic1 vpdaoalic1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops ELEC CALC 2017
134 vpdsiaadm1 vpdsiaadm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
135 vpdsiaads1 vpdsiaads1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops AD SelfService plus 1
136 vpdsiaans1 vpdsiaans1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
137 vpdsiaclo1 vpdsiaclo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production DMZ a_definir Production secops Owncloud 1
138 vpdsiacol1 vpdsiacol1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Collecte Serveur 1
139 vpdsiadep1 vpdsiadep1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Nextcloud 31.0.7
140 vpdsiagit1 vpdsiagit1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops CVS 1
141 vpdsiagrd1 vpdsiagrd1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Gestion DNS 1
142 vpdsiahap1 vpdsiahap1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
143 vpdsiahap2 vpdsiahap2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
144 vpdsiahap3 vpdsiahap3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
145 vpdsiahap4 vpdsiahap4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
146 vpdsiaito1 vpdsiaito1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops ITOP 2.7
147 vpdsiakib1 vpdsiakib1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
148 vpdsiakms1 vpdsiakms1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
149 vpdsiangx1 vpdsiangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
150 vpdsiangx2 vpdsiangx2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
151 vpdsiangx3 vpdsiangx3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
152 vpdsiangx4 vpdsiangx4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
153 vpdsiarad1 vpdsiarad1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
154 vpdsiarad2 vpdsiarad2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
155 vpdsiasaf1 vpdsiasaf1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
156 vpdsiasaf2 vpdsiasaf2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
157 vpdsiasat1 vpdsiasat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
158 vpdsiasat2 vpdsiasat2.sanef.groupe linux Oracle Linux Server release 8.9 Infrastructure Production a_definir Production secops
159 vpdsiatse1 vpdsiatse1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Serveur licence TSE
160 vpdsiatse2 vpdsiatse2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Rebond nouvel AD
161 vpdsiaumds1 vpdsiaumds1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops VCENTER Server Standard 1
162 vpdsiawik1 vpdsiawik1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
163 vpdsiawsus1 vpdsiawsus1 windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
164 vpdsiawsus2 vpdsiawsus2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
165 vpdsibarc1 vpdsibarc1.sanef.groupe linux Red Hat Enterprise Linux release 9.6 (Plow) Infrastructure Production a_definir Implémentation secops
166 vpdsibels1 vpdsibels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
167 vpdsibels2 vpdsibels2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
168 vpdsibetc1 vpdsibetc1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops
169 vpdsibetc2 vpdsibetc2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops
170 vpdsibetc3 vpdsibetc3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops
171 vpdsibpmm1 vpdsibpmm1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
172 vpdsibquo1 vpdsibquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
173 vpdsigrid1 vpdsigrid1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Grid control 12
174 vpdsismtp1 vpdsismtp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
175 vpdsismtp2 vpdsismtp2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
176 vpechaetl1 vpechaetl1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
177 vpechaetl2 vpechaetl2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
178 vpechaetl3 vpechaetl3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
179 vpechaetl4 vpechaetl4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
180 vpechbetl1 vpechbetl1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops EtlTool - ordonnanceur 1
181 vpecmapss1 vpecmapss1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
182 vpecmapss3 vpecmapss3.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
183 vpecmardp1 vpecmardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
184 vpecmbsql1 vpecmbsql1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
185 vpecmbsql3 vpecmbsql3.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
186 vpemvasat1 vpemvasat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Red Hat Satellite Satellite
187 vpexpaxfb1 vpexpaxfb1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops XFB Gateway 1
188 vpexpbdech1 vpexpbdech1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Infrastructure Production DMZ a_definir Production secops Gestion de déchets
189 vpflmanvr1 vpflmanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
190 vpgawagtw1 vpgawagtw1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
191 vpgawagtw2 vpgawagtw2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
192 vpgawamft1 vpgawamft1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
193 vpgawamft2 vpgawamft2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
194 vpgawbpgs1 vpgawbpgs1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
195 vpgeoagps2 vpgeoagps2 windows Microsoft Windows Server 2022 Standard Infrastructure Production DMZ a_definir Implémentation secops
196 vpgesaquo1 vpgesaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Implémentation secops 3PAR StoreServ (SSMC) 1
197 vpgesaquo2 vpgesaquo2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops
198 vpgtcawsus1 vpgtcawsus1 windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
199 vphdnanvr1 vphdnanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
200 vphrqanvr1 vphrqanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
201 vpiadaada1 vpiadaada1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops AD Audit plus 1
202 vpiadaadm1 vpiadaadm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops AD Manager plus 1
203 vpiadapki1 vpiadapki1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
204 vpiadapki2 vpiadapki2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
205 vpiadapki3 vpiadapki3.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
206 vpiadapki4 vpiadapki4.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
207 vpiadapol1 vpiadapol1.sanef.groupe linux Red Hat Enterprise Linux 8 (64-bit) Infrastructure Production a_definir Production secops Centreon 1
208 vpiadawdc1 vpiadawdc1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
209 vpiadawdc2 vpiadawdc2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
210 vpiadawdc3 vpiadawdc3.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
211 vpiadawdc4 vpiadawdc4.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
212 vpiadawsus1 vpiadawsus1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
213 vpisibtel1 vpisibtel1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops ISI-COM 16.12
214 vplpeanvr1 vplpeanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
215 vpmalanvr1 vpmalanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
216 vpmetaads1 vpmetaads1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops AD SelfService plus 1
217 vpmetaquo1 vpmetaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops 3PAR StoreServ (SSMC) 1
218 vpnapamed1 vpnapamed1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
219 vpngwasia1 vpngwasia1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
220 vpngwasia2 vpngwasia2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
221 vpngwasic1 vpngwasic1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
222 vpngwasic2 vpngwasic2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
223 vpodabquo1 vpodabquo1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Oracle 19 (12.2.0.3)
224 vpormanvr1 vpormanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
225 vppciaquo1 vppciaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops 3PAR StoreServ (SSMC) 1
226 vppcmardp1 vppcmardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
227 vppixatsf1 vppixatsf1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
228 vppixatsf2 vppixatsf2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
229 vppixbams1 vppixbams1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
230 vppixbams2 vppixbams2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
231 vppmrames1 vppmrames1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Gestion Radio 3RP 1
232 vpppeaanvr1 vpppeaanvr1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Pré-Prod a_definir Production secops Gestion Vidéo NVR 1
233 vppwdahap1 vppwdahap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Implémentation secops
234 vppwdahap2 vppwdahap2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Implémentation secops
235 vppwdapod1 vppwdapod1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
236 vppwdapod2 vppwdapod2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
237 vppwdbsql1 vppwdbsql1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
238 vpresardp1 vpresardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Gestion switch 1
239 vpresardp2 vpresardp2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Gestion switch 1
240 vpsaaanvr1 vpsaaanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
241 vpsamaext1 vpsamaext1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SAM - Gestion des Actifs Logiciels 1
242 vpsdtanvr1 vpsdtanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
243 vpsecausb1 vpsecausb1.sanef.groupe linux Ubuntu Infrastructure Production a_definir Production secops
244 vpsecawin1 vpsecawin1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion sécurité windows 1
245 vpsicapol1 vpsicapol1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Centreon 1
246 vpsimaexp1 vpsimaexp1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops DOLLAR UNIVERSE 1
247 vpsimaxsr1 vpsimaxsr1 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops XFB Gateway 1
248 vpsroanvr1 vpsroanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
249 vpssiandes1 vpssiandes1.sanef.groupe windows Windows 2019 Version 1809 Infrastructure Production DMZ a_definir Production secops Gestion Pki 1
250 vpssiapki2 vpssiapki2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops Gestion Pki 1
251 vpssiapki3 vpssiapki3.sanef.groupe windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion Pki 1
252 vpstqanvr1 vpstqanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
253 vpthlanvr1 vpthlanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
254 vptraatai1 vptraatai1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
255 vptraatai2 vptraatai2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
256 vptraazen1 vptraazen1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
257 vptraazen2 vptraazen2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
258 vptsyanvr1 vptsyanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
259 vpvidavsc1 vpvidavsc1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Logiciel gestion vidéo 1
260 vpvidavsc2 vpvidavsc2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Logiciel gestion vidéo 1
261 vpvpnaems1 vpvpnaems1.sanef.groupe linux Infrastructure Production a_definir Implémentation secops FortiAnalyzer 1
262 vpvpnarad1 vpvpnarad1.sanef.groupe linux Red Hat Enterprise Linux release 8.3 (Ootpa) Infrastructure Production a_definir Production secops VM de production pour l'authentification forte pour les accès distants SSL.
263 vpvpnarad2 vpvpnarad2.sanef.groupe linux Red Hat Enterprise Linux release 8.3 (Ootpa) Infrastructure Production a_definir Implémentation secops VM de production pour l'authentification forte pour les accès distants SSL.
264 vpvsaaafl1 vpvsaaafl1.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
265 vpvsaaafl2 vpvsaaafl2.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
266 vpvsaaafz1 vpvsaaafz1.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
267 vpvsaaafz2 vpvsaaafz2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
268 vpvsaaahp2 vpvsaaahp2.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
269 vpvsaaahz2 vpvsaaahz2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
270 vpvsaages1 vpvsaages1.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
271 vpvsaages2 vpvsaages2.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
272 vpvsaagez1 vpvsaagez1.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
273 vpvsaagez2 vpvsaagez2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
274 vpvsaaiad1 vpvsaaiad1.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
275 vpvsaaiad2 vpvsaaiad2.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
276 vpvsaamet1 vpvsaamet1.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
277 vpvsaamet2 vpvsaamet2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
278 vpvsaamez1 vpvsaamez1.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
279 vpvsaamez2 vpvsaamez2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
280 vpvsaarec2 vpvsaarec2.sanef.groupe linux Oracle Linux Server release 8.10 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
281 vpvsaarez2 vpvsaarez2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
282 vpvsaasia1 vpvsaasia1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
283 vpvsaasia2 vpvsaasia2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
284 vpvsaasic1 vpvsaasic1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
285 vpvsaasic2 vpvsaasic2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
286 vpvsampci1 vpvsampci1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
287 vpvsampci2 vpvsampci2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
288 vraiibpgs4 vraiibpgs4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
289 vraiibpgs5 vraiibpgs5.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
290 vraiibsql3 vraiibsql3 windows Microsoft Windows Server 2019 Standard Infrastructure Recette a_definir Production secops
291 vrcybacpm1 vrcybacpm1.sanef-rec.fr windows Microsoft Windows Server 2019 Standard Infrastructure Recette a_definir Production secops CyberArk Recette
292 vrcybapsm1 vrcybapsm1.recette.adds windows Microsoft Windows Server 2019 Standard Infrastructure Recette a_definir Production secops CyberArk Recette
293 vrcybapsm2 vrcybapsm2.recette.adds windows Microsoft Windows Server 2019 Standard Infrastructure Recette a_definir Production secops CyberArk Recette
294 vrcybapsp1 vrcybapsp1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops CyberArk 1
295 vrcybapsp2 vrcybapsp2.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops CyberArk 1
296 vrcybapta1 vrcybapta1.sanef-rec.fr linux Infrastructure Recette a_definir Production secops CyberArk Recette
297 vrcybapvwa1 vrcybapvwa1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Recette a_definir Production secops CyberArk Recette
298 vrcybapvwa2 vrcybapvwa2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Recette a_definir Production secops CyberArk Recette
299 vrdsiaada1 vrdsiaada1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops AD Audit plus 1
300 vrdsiaadg1 vrdsiaadg1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops AD Manager plus 1
301 vrdsiaadm1 vrdsiaadm1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
302 vrdsiaans1 vrdsiaans1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
303 vrdsiaazu1 vrdsiaazu1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops
304 vrdsiaazu2 vrdsiaazu2.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops
305 vrdsiadep1 vrdsiadep1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.6 (Plow) Infrastructure Recette a_definir Production secops Nextcloud 31.0.7
306 vrdsiadev1 vrdsiadev1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Développement a_definir Production secops Collecte Serveur 1
307 vrdsiagit1 vrdsiagit1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops GitLab 17.5
308 vrdsiahax1 vrdsiahax1 linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Implémentation secops
309 vrdsiahax2 vrdsiahax2 linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Implémentation secops
310 vrdsiaito1 vrdsiaito1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops ITOP 2.6
311 vrdsiakms1 vrdsiakms1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
312 vrdsialab1 vrdsialab1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
313 vrdsialab2 vrdsialab2.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
314 vrdsiarad1 vrdsiarad1.sanef-rec.fr linux Infrastructure Recette a_definir Production secops Radius 1
315 vrdsiarad2 vrdsiarad2.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops Radius 1
316 vrdsiasaf1 vrdsiasaf1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops Radius 1
317 vrdsiasaf2 vrdsiasaf2.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops Radius 1
318 vrdsiasat1 vrdsiasat1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Red Hat Satellite Satellite
319 vrdsiascr1 vrdsiascr1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops Nextcloud 31.0.7
320 vrdsiawsus1 vrdsiawsus1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
321 vrdsibans1 vrdsibans1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
322 vrdsibarc1 vrdsibarc1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.6 (Plow) Infrastructure Recette a_definir Production secops
323 vrdsibetc1 vrdsibetc1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Gestion Postgres 1
324 vrdsibetc2 vrdsibetc2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Gestion Postgres 1
325 vrdsibetc3 vrdsibetc3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Gestion Postgres 1
326 vrdsibsql1 vrdsibsql1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Gestion Postgres 1
327 vrdsismtp1 vrdsismtp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
328 vrdsismtp2 vrdsismtp2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
329 vrechaetl1 vrechaetl1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
330 vrechaetl2 vrechaetl2.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
331 vrechbetl1 vrechbetl1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops EtlTool - ordonnanceur 1
332 vrecmadpr1 vrecmadpr1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops SCCM 1
333 vrecmapss1 vrecmapss1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Implémentation secops SCCM MECM
334 vrecmbsql1 vrecmbsql1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Implémentation secops SCCM MECM
335 vrgawagtw1 vrgawagtw1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
336 vrgawamft1 vrgawamft1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
337 vrgawbpgs1 vrgawbpgs1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
338 vriadapki1 vriadapki1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Gestion Pki 1
339 vriadapki2 vriadapki2.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Gestion Pki 1
340 vriadapki3 vriadapki3.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Gestion Pki 1
341 vriadawdc1 vriadawdc1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
342 vriadawdc2 vriadawdc2.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
343 vriadawdc3 vriadawdc3.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Controleur de Domaine 1
344 vrlogaagt1 vrlogaagt1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops Gestion des logs 1
345 vrlogakib1 vrlogakib1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
346 vrlogbels1 vrlogbels1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
347 vrlogbels2 vrlogbels2.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
348 vrlogbquo1 vrlogbquo1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Recette a_definir Production secops
349 vrnmsatse1 vrnmsatse1 windows Microsoft Windows Server 2019 Standard Infrastructure Recette a_definir Production secops U2000 1
350 vrpwdahap1 vrpwdahap1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Implémentation secops
351 vrpwdapod1 vrpwdapod1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Implémentation secops
352 vrresardp1 vrresardp1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops
353 vrsamaext1 vrsamaext1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette DMZ a_definir Production secops SAM - Gestion des Actifs Logiciels 1
354 vrvidanvr1 vrvidanvr1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Logiciel gestion vidéo 1
355 vrvidanvr2 vrvidanvr2.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Logiciel gestion vidéo 1
356 vrvidavsc1 vrvidavsc1.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Logiciel gestion vidéo 1
357 vrvidavsc2 vrvidavsc2.recette.adds windows Microsoft Windows Server 2022 Standard Infrastructure Recette a_definir Production secops Logiciel gestion vidéo 1
358 vrvpnaaov1 vrvpnaaov1.recette.adds windows Windows 2016 Version 1607 Infrastructure Recette a_definir Implémentation secops
359 vrvpnaaov2 vrvpnaaov2.recette.adds windows Windows 2016 Version 1607 Infrastructure Recette a_definir Implémentation secops
360 vtdsiaels1 vtdsiaels1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Test a_definir Production secops Serveur de Test
361 vtdsiaels2 vtdsiaels2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Test a_definir Production secops Serveur de Test
362 vtdsiakib1 vtdsiakib1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Test a_definir Production secops Serveur de Test
363 vtdsiaquo1 vtdsiaquo1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Test a_definir Production secops Serveur de Test
364 vtdsiatmp1 vtdsiatmp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Collecte Serveur 1
365 vtdsibpgs1 vtdsibpgs1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Serveur de test pour les DBA
366 vtdsibpgs2 vtdsibpgs2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
367 vtdsibpgs3 vtdsibpgs3.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops Serveur de test pour les DBA
368 vtdsibpmm1 vtdsibpmm1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops
369 vtdsibquo1 vtdsibquo1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Recette a_definir Production secops

192
inputs/dom/dom-pea.csv Normal file
View File

@ -0,0 +1,192 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
lrpeabsip1;lrpeabsip1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;
ls-abbeville-est;ls-abbeville-est;windows;Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-abbeville-nord;LS-ABBEVILLE-NORD;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amblainville;ls-amblainville;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amiens-nord;ls-amiens-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amiens-ouest;ls-amiens-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amiens-sud;ls-amiens-sud;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-arras;ls-arras;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-arsy;ls-arsy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-athies;ls-athies;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-aumale-est;ls-aumale-est;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-aumale-ouest;ls-aumale-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bapaume;ls-bapaume;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beaumont;ls-beaumont;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beautot;ls-beautot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beauvais-centre;ls-beauvais-centre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beauvais-nord;ls-beauvais-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-berck;ls-berck;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bethune;ls-bethune;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bolbec;ls-bolbec;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bonsecours;ls-bonsecours;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-boulay-psb;ls-boulay-psb;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-boulogne;ls-boulogne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bouville;ls-bouville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
ls-bretonneux;ls-bretonneux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-cambrai;ls-cambrai;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chamant;ls-chamant;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chamant2;ls-chamant2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-charmont;ls-charmont;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chateau-thierry;ls-chateau-thierry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chevrieres;ls-chevrieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-clermont-en-arg;ls-clermont-en-arg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-cote-picarde;ls-cote-picarde;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-cottevrard;ls-cottevrard;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-courbes;ls-courbes;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-courcy;ls-courcy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-coutevroult;ls-coutevroult;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-dormans;ls-dormans;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-essertaux;ls-essertaux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-farebersviller;ls-farebersviller;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-fecamp;ls-fecamp;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-fresnes;ls-fresnes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-fresnes-en-woevre;ls-fresnes-en-woevre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-gauchy;ls-gauchy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hardivilliers;ls-hardivilliers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-haudricourt;ls-haudricourt;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-herquelingue;ls-herquelingue;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hochfelden;ls-hochfelden;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hochfelden-ouest;ls-hochfelden-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hordain;ls-hordain;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-jarny;ls-jarny;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-jules-verne;ls-jules-verne;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-neuvillette;ls-la-neuvillette;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-vallee;ls-la-vallee;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-veuve-mourmelon;ls-la-veuve-mourmelon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-veuve-reims;ls-la-veuve-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-laon;ls-laon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-le-touquet;ls-le-touquet;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-lievin;ls-lievin;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-lillers;ls-lillers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-loupershouse;ls-loupershouse;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-marquion;ls-marquion;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-masnieres;ls-masnieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-maurepas;ls-maurepas;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-meru;ls-meru;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-mont-choisy;ls-mont-choisy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-montreuil-bpv;ls-montreuil-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-montreuil-bretelle;ls-montreuil-bretelle;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-montreuil-reims;ls-montreuil-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-neufchatel;ls-neufchatel;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-noeux-les-mines;ls-noeux-les-mines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-nordausques;ls-nordausques;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ormes;ls-ormes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-phalsbourg;ls-phalsbourg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-plateau;ls-plateau;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-poix-de-picardie;ls-poix-de-picardie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-portes-vignoble;ls-portes-vignoble;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-puttelange;ls-puttelange;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ressons;ls-ressons;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-rn29;ls-rn29;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-roye;ls-roye;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-santerre;ls-santerre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-sarre-union;ls-sarre-union;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-sarreguemines;ls-sarreguemines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-saverne;ls-saverne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-schwindratzheim;ls-schwindratzheim-clone;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-setques;ls-setques;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-sommesous;ls-sommesous;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-alb;ls-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
ls-spare-beu;ls-spare-beu;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-eco;ls-spare-eco;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-etv;ls-spare-etv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-mon;ls-spare-mon;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-mtz;ls-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-sen;ls-spare-sen;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-tqx;ls-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-srom-bpv;ls-srom-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-srom-ferme;ls-srom-ferme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-srom-ouvert;ls-srom-ouvert;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-avold-a;ls-st-avold-a;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-avold-b;ls-st-avold-b;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-etienne;ls-st-etienne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-gibrien;ls-st-gibrien;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-jean;ls-st-jean;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-omer;ls-st-omer;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-omer2;ls-st-omer2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-witz;ls-st-witz;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ste-marie;ls-ste-marie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ste-menehould;ls-ste-menehould;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-taissy;ls-taissy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-thelus;ls-thelus;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-therouanne;ls-therouanne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-thillois;ls-thillois;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-de-l-aisne;ls-vallee-de-l-aisne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-de-l-aube;ls-vallee-de-l-aube;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-nievre;ls-vallee-nievre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-somme;ls-vallee-somme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vatry;ls-vatry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vemars-ouest;ls-vemars-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-verdun;ls-verdun;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-voie-sacree;ls-voie-sacree;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-yerville;ls-yerville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-yvetot;ls-yvetot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
nvr-spare-alb;nvr-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vdosapsrv1;vdosapsrv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP
viosapapp1;viosapapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP
viosapast1;viosapast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP
viosapels1;viosapels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP
viosapels2;viosapels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP
viosapquo1;viosapquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Pré-Prod;;a_definir;Production;secops;OSAP
vpadvaapp1;vpadvaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Implémentation;secops;ADV-U facturation sanef 1.29g
vpadvangx1;vpadvangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;Interface API REST pour ERP5 1
vpalbanvr1;vpalbanvr1;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpbipamod1;vpbipamod1;windows;Windows 2016 Version 1607;Péage;Production;DMZ;a_definir;Production;secops;Modalisa 1
vpboeacst1;vpboeacst1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;
vposapapp1;vposapapp1.sanef.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapast1;vposapast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapels1;vposapels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapels2;vposapels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapexp1;vposapexp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP
vposapkib1;vposapkib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP 1.0
vposapmet1;vposapmet1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP
vposapquo1;vposapquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vppboeacst1;vppboeacst1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;
vppeaaadm1;vppeaaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaaexp1;vppeaaexp1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaaref1;vppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaaref2;vppeaaref2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaaref4;vppeaaref4;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vpppeaaref1;vpppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vpppeaasvp1;vpppeaasvp1.sanef-int.adds;windows;Microsoft Windows Server 2019 Datacenter;Péage;Pré-Prod;;a_definir;Production;secops;SVP sanef 1
vprpaangx1;vprpaangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1
vprpnangx1;vprpnangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1
vprpsangx1;vprpsangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1
vpsimasvp1;vpsimasvp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;Free Flow 1
vradvaapp1;vradvaapp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;ADV-U facturation sanef 1.29g
vradvangx1;vradvangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;Interface API REST pour ERP5 1
vraiiavid1;vraiiavid1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1
vraiiavid2;vraiiavid2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Recette;;a_definir;Production;secops;Logiciel gestion vidéo 1
vrboeacst1;vrboeacst1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Recette;;a_definir;Production;secops;
vrffbagsim1;vrffbagsim1.recette.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Recette;;a_definir;Production;secops;Free Flow Boulay
vrgrsangx1;vrgrsangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops;
vrosapapp1;vrosapapp1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0
vrosapast1;vrosapast1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.1
vrosapels1;vrosapels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0
vrosapels2;vrosapels2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0
vrosapkib1;vrosapkib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0
vrosapquo1;vrosapquo1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;OSAP 1.0
vrosapsrv1;vrosapsrv1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;DMZ;a_definir;Production;secops;OSAP
vrpeaabst1;vrpeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0
vrpeaabst2;vrpeaabst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0
vrpeaakib1;vrpeaakib1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0
vrpeaaref1;vrpeaaref1.recette.adds;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrpeabbst1;vrpeabbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0
vrpeabbst2;vrpeabbst2.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Recette;;a_definir;Production;secops;BOOST 1.0 1 1.0
vrrpaangx1;vrrpaangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops;Référentiel Péage A150 Albéa 1
vrrpnangx1;vrrpnangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops;Référentiel Péage Sanef 1
vrrpsangx1;vrrpsangx1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Recette;;a_definir;Production;secops;Référentiel Péage sapn 1
vrsvpaalb1;vrsvpaalb1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Datacenter;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpacli1;vrsvpacli1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpadev1;vrsvpadev1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpaffb1;vrsvpaffb1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpaosap1;vrsvpaosap1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;OSAP
vrsvpapar1;vrsvpapar1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpapar2;vrsvpapar2.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpasan1;vrsvpasan1.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpasan2;vrsvpasan2.sanef-rec.fr;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpasan3;vrsvpasan3.sanef-rec.fr;windows;Microsoft Windows Server 2019 Datacenter;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpasap1;vrsvpasap1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpasap2;vrsvpasap2.sanef-rec.fr;windows;Microsoft Windows Server 2019 Datacenter;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
vrsvpatst1;vrsvpatst1;windows;Microsoft Windows Server 2019 Standard;Péage;Recette;;a_definir;Production;secops;SVP sanef 1
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 lrpeabsip1 lrpeabsip1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops
3 ls-abbeville-est ls-abbeville-est windows Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511 Péage Production a_definir Production secops SVP sanef 1
4 ls-abbeville-nord LS-ABBEVILLE-NORD windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
5 ls-amblainville ls-amblainville windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
6 ls-amiens-nord ls-amiens-nord windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
7 ls-amiens-ouest ls-amiens-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
8 ls-amiens-sud ls-amiens-sud windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
9 ls-arras ls-arras windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
10 ls-arsy ls-arsy windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
11 ls-athies ls-athies windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
12 ls-aumale-est ls-aumale-est windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
13 ls-aumale-ouest ls-aumale-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
14 ls-bapaume ls-bapaume windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
15 ls-beaumont ls-beaumont windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
16 ls-beautot ls-beautot windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
17 ls-beauvais-centre ls-beauvais-centre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
18 ls-beauvais-nord ls-beauvais-nord windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
19 ls-berck ls-berck windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
20 ls-bethune ls-bethune windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
21 ls-bolbec ls-bolbec windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
22 ls-bonsecours ls-bonsecours windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
23 ls-boulay-psb ls-boulay-psb windows Microsoft Windows Server 2016 Standard Péage Production a_definir Production secops SVP sanef 1
24 ls-boulogne ls-boulogne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
25 ls-bouville ls-bouville windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops Gestion Vidéo NVR 1
26 ls-bretonneux ls-bretonneux windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
27 ls-cambrai ls-cambrai windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
28 ls-chamant ls-chamant windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
29 ls-chamant2 ls-chamant2 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
30 ls-charmont ls-charmont windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
31 ls-chateau-thierry ls-chateau-thierry windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
32 ls-chevrieres ls-chevrieres windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
33 ls-clermont-en-arg ls-clermont-en-arg windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
34 ls-cote-picarde ls-cote-picarde windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
35 ls-cottevrard ls-cottevrard windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
36 ls-courbes ls-courbes windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
37 ls-courcy ls-courcy windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
38 ls-coutevroult ls-coutevroult windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
39 ls-dormans ls-dormans windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
40 ls-essertaux ls-essertaux windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
41 ls-farebersviller ls-farebersviller windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
42 ls-fecamp ls-fecamp windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
43 ls-fresnes ls-fresnes windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
44 ls-fresnes-en-woevre ls-fresnes-en-woevre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
45 ls-gauchy ls-gauchy windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
46 ls-hardivilliers ls-hardivilliers windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
47 ls-haudricourt ls-haudricourt windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
48 ls-herquelingue ls-herquelingue windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
49 ls-hochfelden ls-hochfelden windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
50 ls-hochfelden-ouest ls-hochfelden-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
51 ls-hordain ls-hordain windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
52 ls-jarny ls-jarny windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
53 ls-jules-verne ls-jules-verne windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
54 ls-la-neuvillette ls-la-neuvillette windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
55 ls-la-vallee ls-la-vallee windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
56 ls-la-veuve-mourmelon ls-la-veuve-mourmelon windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
57 ls-la-veuve-reims ls-la-veuve-reims windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
58 ls-laon ls-laon windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
59 ls-le-touquet ls-le-touquet windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
60 ls-lievin ls-lievin windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
61 ls-lillers ls-lillers windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
62 ls-loupershouse ls-loupershouse windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
63 ls-marquion ls-marquion windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
64 ls-masnieres ls-masnieres windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
65 ls-maurepas ls-maurepas windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
66 ls-meru ls-meru windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
67 ls-mont-choisy ls-mont-choisy windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
68 ls-montreuil-bpv ls-montreuil-bpv windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
69 ls-montreuil-bretelle ls-montreuil-bretelle windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
70 ls-montreuil-reims ls-montreuil-reims windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
71 ls-neufchatel ls-neufchatel windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
72 ls-noeux-les-mines ls-noeux-les-mines windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
73 ls-nordausques ls-nordausques windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
74 ls-ormes ls-ormes windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
75 ls-phalsbourg ls-phalsbourg windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
76 ls-plateau ls-plateau windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
77 ls-poix-de-picardie ls-poix-de-picardie windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
78 ls-portes-vignoble ls-portes-vignoble windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
79 ls-puttelange ls-puttelange windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
80 ls-ressons ls-ressons windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
81 ls-rn29 ls-rn29 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
82 ls-roye ls-roye windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
83 ls-santerre ls-santerre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
84 ls-sarre-union ls-sarre-union windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
85 ls-sarreguemines ls-sarreguemines windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
86 ls-saverne ls-saverne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
87 ls-schwindratzheim ls-schwindratzheim-clone windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
88 ls-setques ls-setques windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
89 ls-sommesous ls-sommesous windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
90 ls-spare-alb ls-spare-alb windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops Gestion Vidéo NVR 1
91 ls-spare-beu ls-spare-beu windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
92 ls-spare-eco ls-spare-eco windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
93 ls-spare-etv ls-spare-etv windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
94 ls-spare-mon ls-spare-mon windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
95 ls-spare-mtz ls-spare-mtz windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
96 ls-spare-sen ls-spare-sen windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
97 ls-spare-tqx ls-spare-tqx windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
98 ls-srom-bpv ls-srom-bpv windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
99 ls-srom-ferme ls-srom-ferme windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
100 ls-srom-ouvert ls-srom-ouvert windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
101 ls-st-avold-a ls-st-avold-a windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
102 ls-st-avold-b ls-st-avold-b windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
103 ls-st-etienne ls-st-etienne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
104 ls-st-gibrien ls-st-gibrien windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
105 ls-st-jean ls-st-jean windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
106 ls-st-omer ls-st-omer windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
107 ls-st-omer2 ls-st-omer2 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
108 ls-st-witz ls-st-witz windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
109 ls-ste-marie ls-ste-marie windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
110 ls-ste-menehould ls-ste-menehould windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
111 ls-taissy ls-taissy windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
112 ls-thelus ls-thelus windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
113 ls-therouanne ls-therouanne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
114 ls-thillois ls-thillois windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
115 ls-vallee-de-l-aisne ls-vallee-de-l-aisne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
116 ls-vallee-de-l-aube ls-vallee-de-l-aube windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
117 ls-vallee-nievre ls-vallee-nievre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
118 ls-vallee-somme ls-vallee-somme windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
119 ls-vatry ls-vatry windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
120 ls-vemars-ouest ls-vemars-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
121 ls-verdun ls-verdun windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
122 ls-voie-sacree ls-voie-sacree windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
123 ls-yerville ls-yerville windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
124 ls-yvetot ls-yvetot windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
125 nvr-spare-alb nvr-spare-alb windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops Gestion Vidéo NVR 1
126 vdosapsrv1 vdosapsrv1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops OSAP
127 viosapapp1 viosapapp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Pré-Prod a_definir Production secops OSAP
128 viosapast1 viosapast1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Pré-Prod a_definir Production secops OSAP
129 viosapels1 viosapels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Pré-Prod a_definir Production secops OSAP
130 viosapels2 viosapels2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Pré-Prod a_definir Production secops OSAP
131 viosapquo1 viosapquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Pré-Prod a_definir Production secops OSAP
132 vpadvaapp1 vpadvaapp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Implémentation secops ADV-U facturation sanef 1.29g
133 vpadvangx1 vpadvangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops Interface API REST pour ERP5 1
134 vpalbanvr1 vpalbanvr1 windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops Gestion Vidéo NVR 1
135 vpbipamod1 vpbipamod1 windows Windows 2016 Version 1607 Péage Production DMZ a_definir Production secops Modalisa 1
136 vpboeacst1 vpboeacst1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops
137 vposapapp1 vposapapp1.sanef.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
138 vposapast1 vposapast1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
139 vposapels1 vposapels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
140 vposapels2 vposapels2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
141 vposapexp1 vposapexp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Péage Production a_definir Implémentation secops OSAP
142 vposapkib1 vposapkib1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP 1.0
143 vposapmet1 vposapmet1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Péage Production a_definir Implémentation secops OSAP
144 vposapquo1 vposapquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
145 vppboeacst1 vppboeacst1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops
146 vppeaaadm1 vppeaaadm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Péage Production a_definir Production secops SVP sanef 1
147 vppeaaexp1 vppeaaexp1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
148 vppeaaref1 vppeaaref1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
149 vppeaaref2 vppeaaref2 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
150 vppeaaref4 vppeaaref4 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
151 vpppeaaref1 vpppeaaref1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
152 vpppeaasvp1 vpppeaasvp1.sanef-int.adds windows Microsoft Windows Server 2019 Datacenter Péage Pré-Prod a_definir Production secops SVP sanef 1
153 vprpaangx1 vprpaangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Production a_definir Implémentation secops Référentiel Péage Sanef 1
154 vprpnangx1 vprpnangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Production a_definir Implémentation secops Référentiel Péage Sanef 1
155 vprpsangx1 vprpsangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Production a_definir Implémentation secops Référentiel Péage Sanef 1
156 vpsimasvp1 vpsimasvp1.sanef.groupe windows Microsoft Windows Server 2016 Standard Péage Production a_definir Production secops Free Flow 1
157 vradvaapp1 vradvaapp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops ADV-U facturation sanef 1.29g
158 vradvangx1 vradvangx1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops Interface API REST pour ERP5 1
159 vraiiavid1 vraiiavid1.sanef.groupe windows Microsoft Windows Server 2016 Standard Péage Recette a_definir Production secops Logiciel gestion vidéo 1
160 vraiiavid2 vraiiavid2.sanef.groupe windows Microsoft Windows Server 2016 Standard Péage Recette a_definir Production secops Logiciel gestion vidéo 1
161 vrboeacst1 vrboeacst1.recette.adds windows Microsoft Windows Server 2022 Standard Péage Recette a_definir Production secops
162 vrffbagsim1 vrffbagsim1.recette.adds windows Microsoft Windows Server 2022 Standard Péage Recette a_definir Production secops Free Flow Boulay
163 vrgrsangx1 vrgrsangx1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Recette a_definir Production secops
164 vrosapapp1 vrosapapp1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops OSAP 1.0
165 vrosapast1 vrosapast1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops OSAP 1.1
166 vrosapels1 vrosapels1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops OSAP 1.0
167 vrosapels2 vrosapels2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops OSAP 1.0
168 vrosapkib1 vrosapkib1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops OSAP 1.0
169 vrosapquo1 vrosapquo1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops OSAP 1.0
170 vrosapsrv1 vrosapsrv1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette DMZ a_definir Production secops OSAP
171 vrpeaabst1 vrpeaabst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops BOOST 1.0 1 1.0
172 vrpeaabst2 vrpeaabst2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops BOOST 1.0 1 1.0
173 vrpeaakib1 vrpeaakib1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops BOOST 1.0 1 1.0
174 vrpeaaref1 vrpeaaref1.recette.adds windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
175 vrpeabbst1 vrpeabbst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops BOOST 1.0 1 1.0
176 vrpeabbst2 vrpeabbst2.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Recette a_definir Production secops BOOST 1.0 1 1.0
177 vrrpaangx1 vrrpaangx1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Recette a_definir Production secops Référentiel Péage A150 Albéa 1
178 vrrpnangx1 vrrpnangx1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Recette a_definir Production secops Référentiel Péage Sanef 1
179 vrrpsangx1 vrrpsangx1.sanef-rec.fr linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Recette a_definir Production secops Référentiel Péage sapn 1
180 vrsvpaalb1 vrsvpaalb1.sanef-rec.fr windows Microsoft Windows Server 2019 Datacenter Péage Recette a_definir Production secops SVP sanef 1
181 vrsvpacli1 vrsvpacli1 windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
182 vrsvpadev1 vrsvpadev1 windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
183 vrsvpaffb1 vrsvpaffb1.sanef-rec.fr windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
184 vrsvpaosap1 vrsvpaosap1.sanef-rec.fr windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops OSAP
185 vrsvpapar1 vrsvpapar1 windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
186 vrsvpapar2 vrsvpapar2.sanef-rec.fr windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
187 vrsvpasan1 vrsvpasan1.sanef-rec.fr windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
188 vrsvpasan2 vrsvpasan2.sanef-rec.fr windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
189 vrsvpasan3 vrsvpasan3.sanef-rec.fr windows Microsoft Windows Server 2019 Datacenter Péage Recette a_definir Production secops SVP sanef 1
190 vrsvpasap1 vrsvpasap1 windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1
191 vrsvpasap2 vrsvpasap2.sanef-rec.fr windows Microsoft Windows Server 2019 Datacenter Péage Recette a_definir Production secops SVP sanef 1
192 vrsvpatst1 vrsvpatst1 windows Microsoft Windows Server 2019 Standard Péage Recette a_definir Production secops SVP sanef 1

1
inputs/dom_inf_rule.txt Normal file
View File

@ -0,0 +1 @@
asset.name:lpges* or asset.name:lrdsi* or asset.name:nvr-s* or asset.name:rmilw* or asset.name:rsmiw* or asset.name:spbur* or asset.name:spcyb* or asset.name:specm* or asset.name:spemv* or asset.name:sppea* or asset.name:sptra* or asset.name:srcyb* or asset.name:srdsi* or asset.name:srlog* or asset.name:vburw* or asset.name:vdlab* or asset.name:vmpki* or asset.name:vmsym* or asset.name:vodsi* or asset.name:vpabn* or asset.name:vpabv* or asset.name:vpaii* or asset.name:vpaml* or asset.name:vpams* or asset.name:vpbck* or asset.name:vpbmt* or asset.name:vpbov* or asset.name:vpbur* or asset.name:vpccy* or asset.name:vpcht* or asset.name:vpcot* or asset.name:vpctv* or asset.name:vpcyb* or asset.name:vpdao* or asset.name:vpdsi* or asset.name:vpech* or asset.name:vpecm* or asset.name:vpemv* or asset.name:vpexp* or asset.name:vpflm* or asset.name:vpgaw* or asset.name:vpgeo* or asset.name:vpges* or asset.name:vpgtc* or asset.name:vphdn* or asset.name:vphrq* or asset.name:vpiad* or asset.name:vpisi* or asset.name:vplpe* or asset.name:vpmal* or asset.name:vpmet* or asset.name:vpnap* or asset.name:vpngw* or asset.name:vpoda* or asset.name:vporm* or asset.name:vppci* or asset.name:vppcm* or asset.name:vppix* or asset.name:vppmr* or asset.name:vpppe* or asset.name:vppwd* or asset.name:vpres* or asset.name:vpsaa* or asset.name:vpsam* or asset.name:vpsdt* or asset.name:vpsec* or asset.name:vpsic* or asset.name:vpsim* or asset.name:vpsro* or asset.name:vpssi* or asset.name:vpstq* or asset.name:vpthl* or asset.name:vptra* or asset.name:vptsy* or asset.name:vpvid* or asset.name:vpvpn* or asset.name:vpvsa* or asset.name:vraii* or asset.name:vrcyb* or asset.name:vrdsi* or asset.name:vrech* or asset.name:vrecm* or asset.name:vrgaw* or asset.name:vriad* or asset.name:vrlog* or asset.name:vrnms* or asset.name:vrpwd* or asset.name:vrres* or asset.name:vrsam* or asset.name:vrvid* or asset.name:vrvpn* or asset.name:vtdsi*

View File

@ -0,0 +1 @@
(asset.name:lpges* or asset.name:lrdsi* or asset.name:nvr-s* or asset.name:rmilw* or asset.name:rsmiw* or asset.name:spbur* or asset.name:spcyb* or asset.name:specm* or asset.name:spemv* or asset.name:sppea* or asset.name:sptra* or asset.name:srcyb* or asset.name:srdsi* or asset.name:srlog* or asset.name:vburw* or asset.name:vdlab* or asset.name:vmpki* or asset.name:vmsym* or asset.name:vodsi* or asset.name:vpabn* or asset.name:vpabv* or asset.name:vpaii* or asset.name:vpaml* or asset.name:vpams* or asset.name:vpbck* or asset.name:vpbmt* or asset.name:vpbov* or asset.name:vpbur* or asset.name:vpccy* or asset.name:vpcht* or asset.name:vpcot* or asset.name:vpctv* or asset.name:vpcyb* or asset.name:vpdao* or asset.name:vpdsi* or asset.name:vpech* or asset.name:vpecm* or asset.name:vpemv* or asset.name:vpexp* or asset.name:vpflm* or asset.name:vpgaw* or asset.name:vpgeo* or asset.name:vpges* or asset.name:vpgtc* or asset.name:vphdn* or asset.name:vphrq* or asset.name:vpiad* or asset.name:vpisi* or asset.name:vplpe* or asset.name:vpmal* or asset.name:vpmet* or asset.name:vpnap* or asset.name:vpngw* or asset.name:vpoda* or asset.name:vporm* or asset.name:vppci* or asset.name:vppcm* or asset.name:vppix* or asset.name:vppmr* or asset.name:vpppe* or asset.name:vppwd* or asset.name:vpres* or asset.name:vpsaa* or asset.name:vpsam* or asset.name:vpsdt* or asset.name:vpsec* or asset.name:vpsic* or asset.name:vpsim* or asset.name:vpsro* or asset.name:vpssi* or asset.name:vpstq* or asset.name:vpthl* or asset.name:vptra* or asset.name:vptsy* or asset.name:vpvid* or asset.name:vpvpn* or asset.name:vpvsa* or asset.name:vraii* or asset.name:vrcyb* or asset.name:vrdsi* or asset.name:vrech* or asset.name:vrecm* or asset.name:vrgaw* or asset.name:vriad* or asset.name:vrlog* or asset.name:vrnms* or asset.name:vrpwd* or asset.name:vrres* or asset.name:vrsam* or asset.name:vrvid* or asset.name:vrvpn* or asset.name:vtdsi*) and not (asset.name:vpaiiat* or asset.name:vrdsiat* or asset.name:vpgesb* or asset.name:vpechat* or asset.name:vrechat* or asset.name:vdechat* or asset.name:vpsimas* or asset.name:vpppear* or asset.name:vpppeas* or asset.name:vpbipa* or asset.name:vraiia* or asset.name:vraptb*)

35
inputs/emv-servers.csv Normal file
View File

@ -0,0 +1,35 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
lpemvaste1;lpemvaste1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste2;lpemvaste2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste3;lpemvaste3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste4;lpemvaste4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste5;lpemvaste5.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste6;lpemvaste6.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvbaemv1;lpemvbaemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv1;lpemvbpemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv2;lpemvbpemv2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv3;lpemvbpemv3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv4;lpemvbpemv4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lremvaste1;lremvaste1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Recette;;a_definir;Production;secops;EMV V17 17
lremvaste2;lremvaste2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Recette;;a_definir;Production;secops;EMV V17 17
lremvaste3;lremvaste3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Recette;;a_definir;Production;secops;EMV V17 17
lremvbremv1;lremvbremv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Recette;;a_definir;Production;secops;
lremvbremv2;lremvbremv2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Recette;;a_definir;Production;secops;
spemvalog1;spemvalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;;a_definir;Production;secops;splunk 1
vemvrsa3;vemvrsa3.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops;
vemvrsa4;vemvrsa4.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops;
vemvsym1;vemvsym1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvaadm1;vpemvaadm1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvaftp1;vpemvaftp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvagtw1;vpemvagtw1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvaldap1;vpemvaldap1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvaldap2;vpemvaldap2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvantp1;vpemvantp1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvantp2;vpemvantp2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvapol1;vpemvapol1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvasat1;vpemvasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Red Hat Satellite Satellite
vpemvatse1;vpemvatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond
vpemvatse2;vpemvatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond
vpemvawsus1;vpemvawsus1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvaxsr1;vpemvaxsr1;windows;Microsoft Windows Server 2012 R2 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvgrid1;vpemvgrid1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 lpemvaste1 lpemvaste1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
3 lpemvaste2 lpemvaste2.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
4 lpemvaste3 lpemvaste3.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
5 lpemvaste4 lpemvaste4.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
6 lpemvaste5 lpemvaste5.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
7 lpemvaste6 lpemvaste6.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
8 lpemvbaemv1 lpemvbaemv1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
9 lpemvbpemv1 lpemvbpemv1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
10 lpemvbpemv2 lpemvbpemv2.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
11 lpemvbpemv3 lpemvbpemv3.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
12 lpemvbpemv4 lpemvbpemv4.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
13 lremvaste1 lremvaste1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Recette a_definir Production secops EMV V17 17
14 lremvaste2 lremvaste2.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Recette a_definir Production secops EMV V17 17
15 lremvaste3 lremvaste3.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Recette a_definir Production secops EMV V17 17
16 lremvbremv1 lremvbremv1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Recette a_definir Production secops
17 lremvbremv2 lremvbremv2.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Recette a_definir Production secops
18 spemvalog1 spemvalog1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Infrastructure Production a_definir Production secops splunk 1
19 vemvrsa3 vemvrsa3.sanef.groupe linux SUSE Linux Enterprise Server 11 (x86_64) Production a_definir Production secops
20 vemvrsa4 vemvrsa4.sanef.groupe linux SUSE Linux Enterprise Server 11 (x86_64) Production a_definir Production secops
21 vemvsym1 vemvsym1 windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV V17 17
22 vpemvaadm1 vpemvaadm1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
23 vpemvaftp1 vpemvaftp1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
24 vpemvagtw1 vpemvagtw1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
25 vpemvaldap1 vpemvaldap1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
26 vpemvaldap2 vpemvaldap2.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
27 vpemvantp1 vpemvantp1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
28 vpemvantp2 vpemvantp2.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
29 vpemvapol1 vpemvapol1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
30 vpemvasat1 vpemvasat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Red Hat Satellite Satellite
31 vpemvatse1 vpemvatse1.sanef.groupe windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV Rebond
32 vpemvatse2 vpemvatse2.sanef.groupe windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV Rebond
33 vpemvawsus1 vpemvawsus1 windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV V17 17
34 vpemvaxsr1 vpemvaxsr1 windows Microsoft Windows Server 2012 R2 Standard EMV Production a_definir Production secops EMV V17 17
35 vpemvgrid1 vpemvgrid1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17

View File

@ -0,0 +1,129 @@
NALBNVR1
RC7KMIL5
RC7KMIL6
RC7KRTX5
RC7KRTX6
bly-bly1-gc1
bly-bly1-gc2
bly-bly1-ves1
bly-bly1-ves2
ceupplu1
lamapgis1
lamapgis2
lamaprac1
lamaprac2
lamaprac3
lamaprac4
lampadp1
lampadp1-pra
lampadp2
lampadp2-pra
lampadv1
lampadv1-pra
lampasu1
lampasu2
lampcrm1
lampcrm1-pra
lampdec1
lampoct1
lamppea1
lamppea1-pra
lamppea2
lamppea2-pra
lampsas1
lampwaz1
mpcecmi1
nvr-spare-alb
nvr-spare-beu
nvr-spare-eco
nvr-spare-etv
nvr-spare-mon
nvr-spare-mtz
nvr-spare-sen
nvr-spare-tqx
rmila150
rmilacs1
rmilasu1
rmilbwp1
rmilmi2
rmilrau1
rmilu2k1
rmilwdc1
rrtxu2k1
rsbcacs2
rsmiasu1
rsmiged1
rsmimas1
rsminas1
rsmirau1
rsmisvg4
rsmiwdc1
saroumane
vadvpapp1
vadvpapp3
vairtom1
vampsycapp1
vampsycapp2
vampsychtp1
vastapp1
vburadmad1
vburimp2
vburwdc1
vburwdc2
vemvrsa3
vemvrsa4
vemvsym1
vexploit2
vmampdif1
vmampdif2
vmampgis1
vmampgis2
vmampgis3
vmampgis4
vmampgis5
vmampgtc1
vmampgtc2
vmamphtp1
vmamphtp2
vmampmet1
vmampmet2
vmamprdt1
vmamprdt2
vmampstg1
vmampstg2
vmampsxt1
vmampsxt2
vmampsxt3
vmampsxt4
vmampsxt5
vmamptd1
vmampweb1
vmampweb2
vmcliint1
vmcmdb
vmipm1
vmkemp1
vmkemp2
vmkemplb1
vmkemplb2
vmm_stl_01
vmnms1
vmntp1
vmpgmao7
vmpki1
vmpki2
vmquorum1
vmradius3
vmradius4
vmsapnrt1
vmsccm1
vmsym2
vmtelotms
vmxfb1
vmzeus
vraptcpsh1
vsapbdd1
vsccmr3
vtmd
vtpataels1
vtpatbsip1

View File

@ -0,0 +1,58 @@
"Asset Datalist Report","22 Apr 2026 03:01PM GMT+0200","54"
"SANEF","30 boulevard Gallieni","Issy-les-Moulineaux","None","92130","France"
"Khalid MOUTAOUAKIL","sanef-km1","All roles granted"
"Asset Id","Asset Name","Host Id","Netbios Name","Mac Address","IPV4 Addresses","IPV6 Addresses","Operating System Category","OS","Operating System Version","Operating System Lifecycle Stage","Hardware Category","Hardware Name","Hardware Lifecycle Stage","CPU Count","CPU Speed (mhz)","CPU Description","Total Memory (mb)","Bios Description","Bios Serial Number","Bios Asset Tag","Time Zone","Last System Boot","Last Logged-In User","Inventory Source","Agent Id","Inventory Last Updated On","Architecture","Modules","Sources","Criticality Score","TruRisk Score","Hardware Uuid","Activity","Tags"
"153092401","vmsym2","207356921","VMSYM2","00:50:56:82:17:CD","10.30.11.239","","Windows / Server","Microsoft Windows Server 2019 Datacenter 1809 Build 17763.7678 64-Bit","1809","EOL","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12287","Phoenix Technologies LTD 6.00","VMware-42 02 fe be 02 90 e4 d7-43 d1 a7 56 0b a3 48 6e","NoAssetTag","'+02:00","Sep 08, 2025 06:48 PM","Administrateur","QAGENT","8962f957-28e4-45a5-8329-418c9d85a703","Apr 22, 2026 12:48 PM","64 bits","VM,SCA,PM","Cloud Agent","3","515","befe0242-9002-d7e4-43d1-a7560ba3486e","Apr 22, 2026 02:59 PM","Cloud Agent,Windows Server,VRF_INCONNUE,Symantec,DSI,OS-WIN-SRV DYN,BDD-SQL DYN,OS-WIN-SRV,TYP-VIR"
"130588882","vmamrsxt1","192836205","'-","00:50:56:82:2E:73,00:50:56:82:69:1E,00:50:56:82:73:93,00:50:56:82:2E:73,00:50:56:82:69:1E,00:50:56:82:73:93","10.30.16.60,10.32.16.60,10.33.16.60","fe80:0:0:0:250:56ff:fe82:2e73,fe80:0:0:0:250:56ff:fe82:691e,fe80:0:0:0:250:56ff:fe82:7393","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a6 8e eb 83 91 b8-d0 69 ec a5 7a d6 f9 b7","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybreconcile","QAGENT","12d97d2c-e53a-486e-8273-da5ef8c65d95","Apr 22, 2026 02:05 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202a68e-eb83-91b8-d069-eca57ad6f9b7","Apr 22, 2026 02:57 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"130582878","vmamrtd1.sanef.groupe","192832075","'-","00:50:56:82:60:73,00:50:56:82:60:73","10.45.2.195","fe80:0:0:0:250:56ff:fe82:6073","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","3832","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 c6 2a f5 49 bc a2-59 3c 10 9a 46 7a f9 b4","No Asset Tag","'+02:00","Oct 08, 2025 01:44 PM","cybastsys","QAGENT","379c9019-ff00-476f-a3d0-4968941b6a16","Apr 22, 2026 01:40 PM","x86_64","VM,SCA,PM","Cloud Agent","3","518","4202c62a-f549-bca2-593c-109a467af9b4","Apr 22, 2026 02:55 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Traffic,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130586812","vmamrhtp1","192835992","'-","00:50:56:82:1F:DC,00:50:56:82:1F:DC,00:50:56:82:1F:DC,00:50:56:82:00:63,00:50:56:82:46:63,00:50:56:82:00:63,00:50:56:82:1F:DC,00:50:56:82:46:63","10.30.16.50,10.30.16.57,10.30.16.59,10.32.16.50,10.33.16.50","fe80:0:0:0:250:56ff:fe82:63,fe80:0:0:0:250:56ff:fe82:1fdc,fe80:0:0:0:250:56ff:fe82:4663","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d3 dc 26 d6 b0 47-13 65 44 3c 3c 1d b0 59","No Asset Tag","'+02:00","Oct 09, 2025 11:37 AM","cybreconcile","QAGENT","946a2d3a-0f88-464a-986b-a92a377b8afd","Apr 22, 2026 01:52 PM","x86_64","VM,SCA,PM","Cloud Agent","2","349","4202d3dc-26d6-b047-1365-443c3c1db059","Apr 22, 2026 02:55 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"139158036","vmampsxt3","198270705","'-","00:50:56:82:60:FD,00:50:56:82:48:7B,00:50:56:82:2F:B3,00:50:56:82:2F:B3,00:50:56:82:48:7B,00:50:56:82:60:FD","10.41.40.32,10.43.4.32,10.43.40.32","fe80:0:0:0:250:56ff:fe82:2fb3,fe80:0:0:0:250:56ff:fe82:487b,fe80:0:0:0:250:56ff:fe82:60fd","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32109","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 8f 04 7b 29 62 51-77 87 c2 cf 93 91 e2 58","No Asset Tag","'+02:00","Dec 11, 2025 03:56 PM","cybastapp","QAGENT","3f1d4ed6-923d-4649-a944-e6c72d8fc086","Apr 22, 2026 12:29 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42028f04-7b29-6251-7787-c2cf9391e258","Apr 22, 2026 02:50 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"130588736","vmamrsxt2","192836894","'-","00:50:56:82:10:63,00:50:56:82:10:63,00:50:56:82:38:ac,00:50:56:82:38:ac,00:50:56:82:35:7e,00:50:56:82:35:7e","10.32.16.61,10.30.16.61,10.33.16.61","fe80:0:0:0:250:56ff:fe82:1063,fe80:0:0:0:250:56ff:fe82:38ac,fe80:0:0:0:250:56ff:fe82:357e","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 8d bf ac 8d f7 1f-af c6 c5 0a 46 ec 9b a7","No Asset Tag","'+02:00","Oct 09, 2025 11:45 AM","cybreconcile","QAGENT","fedd9208-8c4b-45e2-bec4-4424ba542a92","Apr 22, 2026 12:02 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42028dbf-ac8d-f71f-afc6-c50a46ec9ba7","Apr 22, 2026 02:45 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"183949377","vmamdpmv1","235204371","'-","00:50:56:82:18:5B,00:50:56:82:18:5B","10.45.2.128","fe80:0:0:0:250:56ff:fe82:185b","Linux / Server","Red Hat Enterprise Linux Server 6 6.10","6.10","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7c a1 fd 72 70 8d-57 f4 c1 96 c8 2a d1 cc","No Asset Tag","'+02:00","Oct 08, 2025 01:44 PM","cybexpapp","QAGENT","50ab478b-ce5c-4f6e-a556-5021d0b0d58d","Apr 22, 2026 12:10 PM","x86_64","VM,SCA,PM","Cloud Agent","5","867","42027ca1-fd72-708d-57f4-c196c82ad1cc","Apr 22, 2026 02:43 PM","Cloud Agent,Linux Server,Obsolete,MIVISU,DEX,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130590138","vmamrsxt4","192836895","'-","00:50:56:82:58:5D,00:50:56:82:4A:4D,00:50:56:82:26:F5,00:50:56:82:26:F5,00:50:56:82:4A:4D,00:50:56:82:58:5D","10.30.16.63,10.32.16.63,10.33.16.63","fe80:0:0:0:250:56ff:fe82:26f5,fe80:0:0:0:250:56ff:fe82:4a4d,fe80:0:0:0:250:56ff:fe82:585d","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3f bf 83 fb 25 5a-88 23 9d d6 d4 88 25 c3","No Asset Tag","'+02:00","Oct 09, 2025 11:41 AM","cybreconcile","QAGENT","9b15cc9b-6b59-4550-92ee-de5298641343","Apr 22, 2026 12:22 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42023fbf-83fb-255a-8823-9dd6d48825c3","Apr 22, 2026 02:42 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"139157943","vmampmet2","198270298","'-","00:50:56:82:2B:88,00:50:56:82:2B:88,00:50:56:82:66:C4,00:50:56:82:21:85,00:50:56:82:21:85,00:50:56:82:21:85,00:50:56:82:2B:88,00:50:56:82:66:C4","10.41.40.78,10.41.40.79,10.43.4.78,10.43.40.78,10.43.40.79","fe80:0:0:0:250:56ff:fe82:2185,fe80:0:0:0:250:56ff:fe82:2b88,fe80:0:0:0:250:56ff:fe82:66c4","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 70 9d 87 5f df 23-cb 06 4c 49 6e b6 8d 73","No Asset Tag","'+02:00","Feb 14, 2024 02:17 PM","cybreconcile","QAGENT","72fb8c0b-b87a-4c72-b45e-7de93f23ecf1","Apr 22, 2026 12:03 PM","x86_64","VM,SCA,PM","Cloud Agent","5","878","4202709d-875f-df23-cb06-4c496eb68d73","Apr 22, 2026 02:38 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"131265958","vmxfb1.sanef.groupe","193315361","'-","00:50:56:82:33:61,00:50:56:82:33:61","10.30.11.99","fe80:0:0:0:250:56ff:fe82:3361","Linux / Server","Red Hat Enterprise Linux Server 6 6.7","6.7","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 d9 b0 eb 79 07 7b-f1 fb 9c f1 9c 20 e0 59","No Asset Tag","'+02:00","Jan 30, 2025 11:10 AM","cybreconcile","QAGENT","7d281613-4f4d-4ab7-9a09-1e79c4661a21","Apr 22, 2026 12:55 PM","x86_64","VM,SCA,PM","Cloud Agent","2","351","4202d9b0-eb79-077b-f1fb-9cf19c20e059","Apr 22, 2026 02:32 PM","Cloud Agent,Linux Server,Production,Exploitation IT,VRF_INCONNUE,Obsolete,ServersInCyberark,XFB,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"139156976","vmamprdt1","198270451","'-","00:50:56:82:25:f8,00:50:56:82:4b:ad,00:50:56:82:4b:ad,00:50:56:82:4b:ad,00:50:56:82:09:77,00:50:56:82:09:77,00:50:56:82:09:77,00:50:56:82:09:77,00:50:56:82:25:f8,00:50:56:82:4b:ad","10.43.4.70,10.41.40.70,10.41.40.72,10.41.40.73,10.43.40.70,10.43.40.72,10.43.40.73","fe80:0:0:0:250:56ff:fe82:977,fe80:0:0:0:250:56ff:fe82:25f8,fe80:0:0:0:250:56ff:fe82:4bad","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 ea be bd f8 2c 6f-19 ab 4a da 29 5a d0 7d","No Asset Tag","'+02:00","Feb 13, 2024 02:08 PM","cybreconcile","QAGENT","76dece7b-0c6b-4cc5-9b36-abc9e5c62828","Apr 22, 2026 01:15 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","4202eabe-bdf8-2c6f-19ab-4ada295ad07d","Apr 22, 2026 02:30 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"139158024","vmampsxt2","198270620","'-","00:50:56:82:77:D6,00:50:56:82:30:7E,00:50:56:82:34:57,00:50:56:82:30:7E,00:50:56:82:34:57,00:50:56:82:77:D6","10.41.40.31,10.43.4.31,10.43.40.31","fe80:0:0:0:250:56ff:fe82:307e,fe80:0:0:0:250:56ff:fe82:3457,fe80:0:0:0:250:56ff:fe82:77d6","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 91 fb 5b cb 7f 86-3e 56 f5 cd 77 f3 57 ec","No Asset Tag","'+02:00","May 31, 2023 07:04 AM","cybreconcile","QAGENT","0d8914c4-4d68-4530-8886-bbdb7c9420e2","Apr 22, 2026 01:30 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","420291fb-5bcb-7f86-3e56-f5cd77f357ec","Apr 22, 2026 02:27 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"130583160","vmcmdb1","192832674","'-","00:50:56:82:2a:23,00:50:56:82:2a:23","10.30.11.107","fe80:0:0:0:250:56ff:fe82:2a23","Linux / Server","The CentOS Project CentOS 7 7.9 2009","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d bb 7b 8a eb f9 ef-52 af 84 7c 73 cb d1 b5","No Asset Tag","'+02:00","Oct 09, 2025 11:34 AM","cybastsys","QAGENT","adf31e08-00b0-40ec-b4b7-0c02de37e963","Apr 22, 2026 12:41 PM","x86_64","VM,SCA,PM","Cloud Agent","4","682","564dbb7b-8aeb-f9ef-52af-847c73cbd1b5","Apr 22, 2026 02:20 PM","Cloud Agent,Linux Server,Production,Recette,Péage,Bases de Données,VRF_INCONNUE,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,OS-LIN-SRV,TYP-VIR"
"131405746","vmntp1.sanef.groupe","193424771","'-","00:50:56:90:BC:8A,00:50:56:90:BC:8A","10.100.1.200","fe80:0:0:0:250:56ff:fe90:bc8a","Linux / Server","The CentOS Project CentOS 6 6.4","6.4","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2100","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","1878","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 10 6c 9a 6e 8a 5b 6d-a4 a0 de 2f 17 2b cf d1","No Asset Tag","'+02:00","Sep 02, 2025 05:07 PM","cybreconcile","QAGENT","fd737359-f1d2-4382-bb84-211d4f5a1fe5","Apr 22, 2026 12:39 PM","x86_64","VM,SCA,PM","Cloud Agent","3","519","42106C9A-6E8A-5B6D-A4A0-DE2F172BCFD1","Apr 22, 2026 02:18 PM","Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,NTP,DSI,OS-LIN-SRV,TYP-VIR"
"129477136","vmsapnrt1","192044838","VMSAPNRT1","00:50:56:AC:00:EF","10.30.10.35","","Windows / Server","Microsoft Windows Server 2008 R2 6.1 SP1 Build 7601.24356","6.1","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2000","Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz","4096","Phoenix Technologies LTD 6.00","VMware-42 2c ae 27 87 bc de ef-c9 c6 ee ab 11 d7 b9 a1","NoAssetTag","'+02:00","Apr 02, 2024 07:39 PM","Administrateur","QAGENT","39dbe7b9-56c8-42f2-a71a-0112cf8266a0","Apr 22, 2026 12:41 PM","64 bits","VM,SCA,PM","Cloud Agent","2","352","27ae2c42-bc87-efde-c9c6-eeab11d7b9a1","Apr 22, 2026 02:17 PM","Cloud Agent,Windows Server,Windows Server 2008,Recette,Finances Comptabilité / Consolidation,VRF_INCONNUE,Obsolete,SAP,DFIN,OS-WIN-SRV DYN,BDD-SQL DYN,OS-WIN-SRV,TYP-VIR"
"131405762","vmquorum1.sanef.groupe","193424770","'-","00:50:56:82:5D:D3,00:50:56:82:5D:D3","10.102.2.11","fe80:0:0:0:250:56ff:fe82:5dd3","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3500","Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 0c c5 ed f0 97 2d-b4 cb f2 2e 27 19 ea 19","No Asset Tag","'+02:00","Jan 22, 2025 12:14 PM","cybreconcile","QAGENT","f4622346-fe46-4098-8fd1-0d9bd920de6f","Apr 22, 2026 12:30 PM","x86_64","VM,SCA,PM","Cloud Agent","4","700","42020cc5-edf0-972d-b4cb-f22e2719ea19","Apr 22, 2026 02:07 PM","Cloud Agent,Linux Server,Production,VRF_INCONNUE,Obsolete,Sextan,DEX,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"139158077","vmampstg1","198270619","'-","00:50:56:82:1D:1F,00:50:56:82:1D:1F,00:50:56:82:20:3D,00:50:56:82:31:55,00:50:56:82:31:55,00:50:56:82:1D:1F,00:50:56:82:20:3D,00:50:56:82:31:55","10.41.40.45,10.41.40.49,10.43.4.45,10.43.40.45,10.43.40.49","fe80:0:0:0:250:56ff:fe82:1d1f,fe80:0:0:0:250:56ff:fe82:203d,fe80:0:0:0:250:56ff:fe82:3155","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 68 9f 2a 20 3f 69-09 5c 0a fb 5d 99 6c 23","No Asset Tag","'+02:00","Feb 13, 2024 02:07 PM","cybreconcile","QAGENT","9f42509a-bdc6-4442-92af-24d7c02bff27","Apr 22, 2026 12:30 PM","x86_64","VM,SCA,PM","Cloud Agent","4","698","4202689f-2a20-3f69-095c-0afb5d996c23","Apr 22, 2026 02:07 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130588872","vmamrstg2","192836204","'-","00:50:56:82:7a:6c,00:50:56:82:2b:de,00:50:56:82:53:09,00:50:56:82:2b:de,00:50:56:82:53:09,00:50:56:82:7a:6c","10.30.16.11,10.32.16.11,10.33.16.11","fe80:0:0:0:250:56ff:fe82:2bde,fe80:0:0:0:250:56ff:fe82:5309,fe80:0:0:0:250:56ff:fe82:7a6c","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 f7 1e 5b 10 bc d9-1c a0 a7 e3 c8 b3 d1 ca","No Asset Tag","'+02:00","Oct 09, 2025 11:59 AM","cybreconcile","QAGENT","91d95ee7-0c3c-4d21-b9d3-ac7535dfc197","Apr 22, 2026 11:35 AM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202f71e-5b10-bcd9-1ca0-a7e3c8b3d1ca","Apr 22, 2026 02:06 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130582564","vmamrgtc1","192832076","'-","00:50:56:82:29:FB,00:50:56:82:29:FB,00:50:56:82:30:83,00:50:56:82:30:83,00:50:56:82:68:FF,00:50:56:82:29:FB,00:50:56:82:30:83,00:50:56:82:68:FF","10.45.2.160,10.45.2.162,10.45.3.160,10.45.3.162,10.45.4.160","fe80:0:0:0:250:56ff:fe82:29fb,fe80:0:0:0:250:56ff:fe82:3083,fe80:0:0:0:250:56ff:fe82:68ff","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 fe 04 d3 c1 9c b5-c4 75 10 69 d5 71 e8 ca","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybreconcile","QAGENT","e754412e-d12f-4949-b585-58087a9402e7","Apr 22, 2026 12:30 PM","x86_64","VM,SCA,PM","Cloud Agent","5","876","4202fe04-d3c1-9cb5-c475-1069d571e8ca","Apr 22, 2026 02:06 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"139158084","vmampstg2","198270618","'-","00:50:56:82:6D:2C,00:50:56:82:6D:2C,00:50:56:82:46:99,00:50:56:82:5F:2A,00:50:56:82:5F:2A,00:50:56:82:46:99,00:50:56:82:5F:2A,00:50:56:82:6D:2C","10.41.40.46,10.41.40.47,10.43.4.46,10.43.40.46,10.43.40.47","fe80:0:0:0:250:56ff:fe82:4699,fe80:0:0:0:250:56ff:fe82:5f2a,fe80:0:0:0:250:56ff:fe82:6d2c","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 6a 8e b4 34 55 f7-0d 01 14 05 58 f5 27 f0","No Asset Tag","'+02:00","Feb 14, 2024 02:45 PM","cybreconcile","QAGENT","b0547fe7-2fee-4906-ac22-bf8a3dea7380","Apr 22, 2026 12:55 PM","x86_64","VM,SCA,PM","Cloud Agent","4","698","42026a8e-b434-55f7-0d01-140558f527f0","Apr 22, 2026 02:03 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130584303","vmamdpmv2.sanef.groupe","192833659","'-","00:50:56:82:ef:a5,00:50:56:82:ef:a5","10.45.2.129","fe80:0:0:0:8c25:8c4e:dce7:4fc3","Linux / Server","Red Hat Enterprise Linux Server 7 7.9","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","12014","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 11 9d 4d e8 01 09-dc 3a 84 d6 ff 43 24 bd","No Asset Tag","'+02:00","Jan 21, 2025 11:19 AM","cybexpapp","QAGENT","fe51c1b9-c5ea-493c-8764-987808a4713d","Apr 22, 2026 12:16 PM","x86_64","VM,SCA,PM","Cloud Agent","5","627","9d110242-e84d-0901-dc3a-84d6ff4324bd","Apr 22, 2026 01:58 PM","Cloud Agent,Linux Server,Recette,Trafic,VRF_INCONNUE,Obsolete,MIVISU,DEX,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"129308228","vmpgmao7.sanef.groupe","191928332","VMPGMAO7","00:50:56:82:30:8E","10.41.40.176","","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.18993 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 c6 fa 39 e3 a9 e4-ca 48 2a 77 ad a8 70 45","NoAssetTag","'+02:00","Mar 04, 2025 12:32 PM","VMPGMAO7\CYBADMSYS","QAGENT","8312b01c-98c1-47f3-b85c-1df6bed5c992","Apr 22, 2026 12:49 PM","64 bits","VM,SCA,PM","Cloud Agent","3","523","fac60242-e339-e4a9-ca48-2a77ada87045","Apr 22, 2026 01:53 PM","Cloud Agent,Windows Server,Production,Exploitation,VRF_TRAFIC_DC,Obsolete,COSWIN,DSI,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR"
"130588628","vmamrsxt3","192836893","'-","00:50:56:82:23:4D,00:50:56:82:12:4D,00:50:56:82:60:09,00:50:56:82:12:4D,00:50:56:82:23:4D,00:50:56:82:60:09","10.30.16.62,10.32.16.62,10.33.16.62","fe80:0:0:0:250:56ff:fe82:124d,fe80:0:0:0:250:56ff:fe82:234d,fe80:0:0:0:250:56ff:fe82:6009","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","15951","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 7d e6 2b 46 18 6d-cc 34 58 02 61 87 44 84","No Asset Tag","'+02:00","Oct 09, 2025 11:40 AM","cybreconcile","QAGENT","0d432158-cbf2-44af-a96b-158976ac6f3d","Apr 22, 2026 12:09 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42027de6-2b46-186d-cc34-580261874484","Apr 22, 2026 01:50 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"139158019","vmampsxt1","198270644","'-","00:50:56:82:6C:1A,00:50:56:82:6C:1A,00:50:56:82:78:82,00:50:56:82:3A:E9,00:50:56:82:3A:E9,00:50:56:82:6C:1A,00:50:56:82:78:82","10.41.40.30,10.41.40.34,10.43.4.30,10.43.40.30","fe80:0:0:0:250:56ff:fe82:3ae9,fe80:0:0:0:250:56ff:fe82:6c1a,fe80:0:0:0:250:56ff:fe82:7882","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24030","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 05 0b 89 c3 eb de-0d e3 a8 e1 0e 4a 54 b4","No Asset Tag","'+02:00","Jan 12, 2023 01:49 AM","cybreconcile","QAGENT","10b2836a-1caa-4515-b53e-7d5cb5467814","Apr 22, 2026 12:50 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202050b-89c3-ebde-0de3-a8e10e4a54b4","Apr 22, 2026 01:50 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"139157827","vmampmet1","198270294","'-","00:50:56:82:62:FE,00:50:56:82:23:B7,00:50:56:82:1C:70,00:50:56:82:1C:70,00:50:56:82:23:B7,00:50:56:82:62:FE","10.41.40.77,10.43.4.77,10.43.40.77","fe80:0:0:0:250:56ff:fe82:1c70,fe80:0:0:0:250:56ff:fe82:23b7,fe80:0:0:0:250:56ff:fe82:62fe","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12041","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 cd 32 c6 92 58 66-ac b8 8f fe 7e 41 74 68","No Asset Tag","'+02:00","Feb 13, 2024 02:11 PM","cybreconcile","QAGENT","5f4e0bb0-e430-423d-b645-a68c08edf4b4","Apr 22, 2026 09:30 AM","x86_64","VM,SCA,PM","Cloud Agent","5","876","4202cd32-c692-5866-acb8-8ffe7e417468","Apr 22, 2026 01:47 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"183965866","vmamrmet2","235215633","'-","00:50:56:82:42:10,00:50:56:82:07:E1,00:50:56:82:67:F0,00:50:56:82:07:E1,00:50:56:82:42:10,00:50:56:82:67:F0","10.45.2.151,10.45.3.151,10.45.4.151","fe80:0:0:0:250:56ff:fe82:7e1,fe80:0:0:0:250:56ff:fe82:4210,fe80:0:0:0:250:56ff:fe82:67f0","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 84 26 ae 6d 9b-c0 d7 e4 a0 b7 13 78 52","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","root","QAGENT","84233946-88dd-45d5-888e-6d9ad37c4526","Apr 22, 2026 12:52 PM","x86_64","VM,SCA,PM","Cloud Agent","5","878","42029484-26ae-6d9b-c0d7-e4a0b7137852","Apr 22, 2026 01:46 PM","Cloud Agent,Linux Server,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130586805","vmamrdif1.sanef.groupe","192835988","'-","00:50:56:82:0C:04,00:50:56:82:0C:04","10.45.2.25","fe80:0:0:0:250:56ff:fe82:c04","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","7872","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 b7 da fe 38 e7 af-c5 f8 4a 09 65 33 bf 74","No Asset Tag","'+02:00","Oct 09, 2025 11:52 AM","root","QAGENT","4b4cc9e0-1393-4bd2-a872-473ff5d2607f","Apr 22, 2026 11:45 AM","x86_64","VM,SCA,PM","Cloud Agent","4","696","4202b7da-fe38-e7af-c5f8-4a096533bf74","Apr 22, 2026 01:46 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,BDD-POS DYN,OS-LIN-SRV,TYP-VIR"
"139158116","vmampsxt4","198270707","'-","00:50:56:82:38:61,00:50:56:82:61:C3,00:50:56:82:17:A2,00:50:56:82:17:A2,00:50:56:82:38:61,00:50:56:82:61:C3","10.41.40.33,10.43.4.33,10.43.40.33","fe80:0:0:0:250:56ff:fe82:17a2,fe80:0:0:0:250:56ff:fe82:3861,fe80:0:0:0:250:56ff:fe82:61c3","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24031","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 5f 5a 21 87 08-cc 4f 12 18 2b 59 23 ba","No Asset Tag","'+02:00","Nov 06, 2024 09:15 PM","cybreconcile","QAGENT","41ed86ae-1ab0-4c15-b2a0-1a63aaadb290","Apr 22, 2026 11:57 AM","x86_64","VM,SCA,PM","Cloud Agent","4","699","42021b5f-5a21-8708-cc4f-12182b5923ba","Apr 22, 2026 01:40 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"130587954","vmamrmet1","192835990","'-","00:50:56:82:2C:C1,00:50:56:82:2C:C1,00:50:56:82:59:C6,00:50:56:82:59:C6,00:50:56:82:65:99,00:50:56:82:2C:C1,00:50:56:82:59:C6,00:50:56:82:65:99","10.45.2.150,10.45.2.152,10.45.3.150,10.45.3.152,10.45.4.150","fe80:0:0:0:250:56ff:fe82:2cc1,fe80:0:0:0:250:56ff:fe82:59c6,fe80:0:0:0:250:56ff:fe82:6599","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 5b 39 52 6e fc 3f-66 9d f0 ed db db 06 a9","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybadmsys","QAGENT","0c5baa2e-99a4-4a1d-9d82-87138a30c4f5","Apr 22, 2026 12:01 PM","x86_64","VM,SCA,PM","Cloud Agent","5","878","42025b39-526e-fc3f-669d-f0eddbdb06a9","Apr 22, 2026 01:38 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"139157311","vmamprdt2","198270449","'-","00:50:56:82:4D:83,00:50:56:82:4D:83,00:50:56:82:4D:83,00:50:56:82:1E:CC,00:50:56:82:73:0E,00:50:56:82:73:0E,00:50:56:82:73:0E,00:50:56:82:1E:CC,00:50:56:82:4D:83,00:50:56:82:73:0E","10.41.40.71,10.41.40.74,10.41.40.75,10.43.4.71,10.43.40.71,10.43.40.74,10.43.40.75","fe80:0:0:0:250:56ff:fe82:1ecc,fe80:0:0:0:250:56ff:fe82:4d83,fe80:0:0:0:250:56ff:fe82:730e","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3a 36 7c ea da 33-d1 92 df 39 0a 2d 2f 32","No Asset Tag","'+02:00","Feb 14, 2024 02:45 PM","cybreconcile","QAGENT","2390c953-cec7-401c-9d98-461499419684","Apr 22, 2026 12:36 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","42023a36-7cea-da33-d192-df390a2d2f32","Apr 22, 2026 01:37 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130582850","vmamrgtc2","192832077","'-","00:50:56:82:6A:AF,00:50:56:82:6A:AF,00:50:56:82:7D:66,00:50:56:82:7D:66,00:50:56:82:07:63,00:50:56:82:07:63,00:50:56:82:6A:AF,00:50:56:82:7D:66","10.45.2.161,10.45.2.163,10.45.3.161,10.45.3.163,10.45.4.161","fe80:0:0:0:250:56ff:fe82:763,fe80:0:0:0:250:56ff:fe82:6aaf,fe80:0:0:0:250:56ff:fe82:7d66","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 03 1b b4 15 d0 7a-05 7e 5f fb bf 72 e0 31","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybadmsys","QAGENT","fe8956e8-cc60-44ed-93e2-95a307f07f07","Apr 22, 2026 12:37 PM","x86_64","VM,SCA,PM","Cloud Agent","5","876","4202031b-b415-d07a-057e-5ffbbf72e031","Apr 22, 2026 01:32 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"139157910","vmamphtp1.sanef.groupe","198270158","'-","00:50:56:82:6d:a2,00:50:56:82:6d:a2,00:50:56:82:6d:a2,00:50:56:82:76:04,00:50:56:82:4a:d4,00:50:56:82:4a:d4,00:50:56:82:6d:a2,00:50:56:82:76:04","10.41.40.35,10.41.40.37,10.41.40.38,10.43.4.35,10.43.40.35","fe80:0:0:0:250:56ff:fe82:4ad4,fe80:0:0:0:250:56ff:fe82:6da2,fe80:0:0:0:250:56ff:fe82:7604","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 78 5e 41 48 cd 66-58 8b 3e 5e c8 9e c5 ec","No Asset Tag","'+02:00","Feb 13, 2024 02:00 PM","cybreconcile","QAGENT","40de57c4-09f4-4a7d-9365-ecf0d6008fbd","Apr 22, 2026 12:34 PM","x86_64","VM,SCA,PM","Cloud Agent","2","349","4202785e-4148-cd66-588b-3e5ec89ec5ec","Apr 22, 2026 01:29 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"112196090","vmamrrdt2","180151399","'-","00:50:56:82:53:79,00:50:56:82:53:79,00:50:56:82:53:79,00:50:56:82:53:79,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:4F:D5,00:50:56:82:53:79","10.45.2.186,10.45.2.188,10.45.2.192,10.45.2.194,10.45.3.186,10.45.3.188,10.45.3.192,10.45.3.194","fe80:0:0:0:250:56ff:fe82:4fd5,fe80:0:0:0:250:56ff:fe82:5379","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 94 93 64 9e 76 9d-d4 d7 dc 53 6a 19 06 90","No Asset Tag","'+02:00","Nov 18, 2025 01:38 PM","cybexpapp","QAGENT","6baf190a-8dc9-4345-bd7d-5872ffaa9231","Apr 22, 2026 12:28 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","42029493-649e-769d-d4d7-dc536a190690","Apr 22, 2026 01:28 PM","Cloud Agent,Linux Server,Production,Recette,Trafic,Sans,Outils prod (Monitoring, NMS, gestion de parc),VRF_INCONNUE,Obsolete,ServersInCyberark,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"163897942","vmcmdb2","219067810","'-","00:50:56:82:67:ef,00:50:56:82:67:ef","10.30.11.108","fe80:0:0:0:250:56ff:fe82:67ef","Linux / Server","The CentOS Project CentOS 7 7.9 2009","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-56 4d 24 82 65 20 26 53-d8 50 a7 83 3c 91 e6 08","No Asset Tag","'+02:00","Oct 09, 2025 11:34 AM","cybsupapp","QAGENT","13d7fa43-03d2-4257-90de-970af488eff8","Apr 22, 2026 11:41 AM","x86_64","VM,SCA,PM","Cloud Agent","4","695","564d2482-6520-2653-d850-a7833c91e608","Apr 22, 2026 01:17 PM","Cloud Agent,Linux Server,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,BDD-POS DYN,OS-LIN-SRV,TYP-VIR"
"186210649","vmampsxt5","236667824","'-","00:50:56:82:b2:9b,00:50:56:82:d1:65,00:50:56:82:57:b5,00:50:56:82:57:b5,00:50:56:82:b2:9b,00:50:56:82:d1:65","10.41.40.29,10.43.4.29,10.43.40.29","fe80:0:0:0:250:56ff:fe82:57b5,fe80:0:0:0:250:56ff:fe82:b29b,fe80:0:0:0:250:56ff:fe82:d165","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","6","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","32110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 ca 2d 25 44 81 97-f3 90 5f 38 8f 3c 46 ca","No Asset Tag","'+02:00","Nov 24, 2025 04:47 PM","cybreconcile","QAGENT","140e696a-12df-41e9-bebd-8eca61f63123","Apr 22, 2026 11:52 AM","x86_64","VM,SCA,PM","Cloud Agent","4","698","4202ca2d-2544-8197-f390-5f388f3c46ca","Apr 22, 2026 01:14 PM","Cloud Agent,Linux Server,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"130588848","vmamrrdt1","192836203","'-","00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:0C:6D,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:09:BB,00:50:56:82:0C:6D","10.45.2.185,10.45.2.189,10.45.2.190,10.45.2.191,10.45.2.193,10.45.3.185,10.45.3.189,10.45.3.190,10.45.3.191,10.45.3.193","fe80:0:0:0:250:56ff:fe82:9bb,fe80:0:0:0:250:56ff:fe82:c6d","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 40 aa b1 b8 96 ee-ca 32 05 82 2c 6a be 61","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybexpapp","QAGENT","8fb0d821-c304-4c9d-9bc4-1bea5285db80","Apr 22, 2026 12:31 PM","x86_64","VM,SCA,PM","Cloud Agent","5","873","420240aa-b1b8-96ee-ca32-05822c6abe61","Apr 22, 2026 01:14 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130588548","vmamrstg1","192836202","'-","00:50:56:82:0C:DF,00:50:56:82:0C:DF,00:50:56:82:0C:DF,00:50:56:82:69:20,00:50:56:82:69:20,00:50:56:82:69:20,00:50:56:82:4B:5E,00:50:56:82:0C:DF,00:50:56:82:4B:5E,00:50:56:82:69:20","10.30.16.10,10.30.16.17,10.30.16.18,10.32.16.10,10.32.16.17,10.32.16.18,10.33.16.10","fe80:0:0:0:250:56ff:fe82:cdf,fe80:0:0:0:250:56ff:fe82:4b5e,fe80:0:0:0:250:56ff:fe82:6920","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 a5 3e 1a cc c0 8a-9b 8a f5 2d 87 49 4e 3d","No Asset Tag","'+02:00","Oct 09, 2025 11:38 AM","cybexpapp","QAGENT","7bb33190-4842-4833-89d2-ef36edd44bd7","Apr 22, 2026 12:11 PM","x86_64","VM,SCA,PM","Cloud Agent","4","699","4202a53e-1acc-c08a-9b8a-f52d87494e3d","Apr 22, 2026 01:07 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,SSTG,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"131142756","vmcmdb","193232215","'-","00:50:56:82:89:58,00:50:56:82:89:58","10.30.11.126","fe80:0:0:0:250:56ff:fe82:8958","Linux / Server","The CentOS Project CentOS 7 7.9 2009","7.9","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","9998","Phoenix Technologies LTD 6.00 11/12/2020","VMware-5c 9a 02 42 e2 29 78 a4-73 39 00 04 68 fe dd 76","No Asset Tag","'+02:00","Dec 18, 2024 03:24 PM","cybreconcile","QAGENT","215653c1-a242-4eee-bac0-657357541f10","Apr 22, 2026 12:08 PM","x86_64","VM,SCA,PM","Cloud Agent","4","675","5c9a0242-e229-78a4-7339-000468fedd76","Apr 22, 2026 01:05 PM","Cloud Agent,Linux Server,Recette,Trafic,VRF_INCONNUE,Obsolete,ITOP,DSI,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV,TYP-VIR"
"131404287","vmampdif1.sanef.groupe","193423786","'-","00:50:56:82:4A:DA,00:50:56:82:4A:DA","10.41.40.120","fe80:0:0:0:250:56ff:fe82:4ada","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 99 5a c1 b5 93 1a-27 3f 1b ac 65 09 01 f0","No Asset Tag","'+02:00","Jan 11, 2023 09:02 PM","cybreconcile","QAGENT","77c8d8e6-c0ea-4de7-93fc-1f6016d85d9f","Apr 22, 2026 11:36 AM","x86_64","VM,SCA,PM","Cloud Agent","4","696","4202995a-c1b5-931a-273f-1bac650901f0","Apr 22, 2026 01:02 PM","Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"131405556","vmampdif2.sanef.groupe","193423788","'-","00:50:56:82:22:6E,00:50:56:82:22:6E","10.41.40.121","fe80:0:0:0:250:56ff:fe82:226e","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 09/17/2015","VMware-42 02 6b e5 f5 8f 41 09-6e 8e 8b 0d ad 3e ff 6b","No Asset Tag","'+02:00","Sep 25, 2018 12:04 PM","cybreconcile","QAGENT","677ad417-17ef-4c5d-baa3-df481b654afd","Apr 22, 2026 11:59 AM","x86_64","VM,SCA,PM","Cloud Agent","4","693","42026be5-f58f-4109-6e8e-8b0dad3eff6b","Apr 22, 2026 12:59 PM","Cloud Agent,Linux Server,Production,Trafic,Sans,VRF_TRAFIC_DC,Obsolete,Sextan,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"139157881","vmampgtc1","198270080","'-","00:50:56:82:1E:CE,00:50:56:82:3C:2F,00:50:56:82:72:1A,00:50:56:82:1E:CE,00:50:56:82:3C:2F,00:50:56:82:72:1A","10.41.40.85,10.43.4.85,10.43.40.85","fe80:0:0:0:250:56ff:fe82:1ece,fe80:0:0:0:250:56ff:fe82:3c2f,fe80:0:0:0:250:56ff:fe82:721a","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 3e 4f fc fa cd ee-fa d2 f5 6e ae 60 92 36","No Asset Tag","'+02:00","Feb 13, 2024 01:58 PM","cybreconcile","QAGENT","0a831760-7e62-488d-a5fd-a0b37457aa00","Apr 22, 2026 11:27 AM","x86_64","VM,SCA,PM","Cloud Agent","5","876","42023e4f-fcfa-cdee-fad2-f56eae609236","Apr 22, 2026 12:52 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"130588308","vmamrhtp2","192835991","'-","00:50:56:82:47:9D,00:50:56:82:47:9D,00:50:56:82:47:9D,00:50:56:82:47:9D,00:50:56:82:4A:25,00:50:56:82:4A:25,00:50:56:82:4A:25,00:50:56:82:4A:25,00:50:56:82:6A:A5,00:50:56:82:47:9D,00:50:56:82:4A:25,00:50:56:82:6A:A5","10.30.16.51,10.30.16.54,10.30.16.55,10.30.16.56,10.32.16.51,10.32.16.54,10.32.16.55,10.32.16.56,10.33.16.51","fe80:0:0:0:250:56ff:fe82:479d,fe80:0:0:0:250:56ff:fe82:4a25,fe80:0:0:0:250:56ff:fe82:6aa5","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 4b 5e e6 a2 bd cc-12 db 6d 7c 85 60 a4 9d","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybexpapp","QAGENT","577d5ed6-0449-42c4-b1d6-54d920fc49a4","Apr 22, 2026 11:31 AM","x86_64","VM,SCA,PM","Cloud Agent","2","349","42024b5e-e6a2-bdcc-12db-6d7c8560a49d","Apr 22, 2026 12:52 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,MID-APACHE-TOMCAT DYN,OS-LIN-SRV,TYP-VIR"
"139156941","vmamphtp2.sanef.groupe","198270159","'-","00:50:56:82:75:3B,00:50:56:82:75:3B,00:50:56:82:75:3B,00:50:56:82:75:3B,00:50:56:82:4E:8C,00:50:56:82:06:1D,00:50:56:82:06:1D,00:50:56:82:06:1D,00:50:56:82:4E:8C,00:50:56:82:75:3B","10.41.40.36,10.41.40.39,10.41.40.40,10.41.40.41,10.43.4.36,10.43.40.36,10.43.40.39","fe80:0:0:0:250:56ff:fe82:61d,fe80:0:0:0:250:56ff:fe82:4e8c,fe80:0:0:0:250:56ff:fe82:753b","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 87 d0 59 1b 5f 6f-07 1c c6 e7 14 00 7e 0e","No Asset Tag","'+02:00","Oct 08, 2025 04:16 PM","cybreconcile","QAGENT","950d952c-913d-4f60-89ad-24963c92f040","Apr 22, 2026 11:19 AM","x86_64","VM,SCA,PM","Cloud Agent","2","349","420287d0-591b-5f6f-071c-c6e714007e0e","Apr 22, 2026 12:38 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Amelie,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"139156912","vmampgtc2","198270160","'-","00:50:56:82:54:84,00:50:56:82:2C:BA,00:50:56:82:2C:BA,00:50:56:82:2C:BA,00:50:56:82:1A:8B,00:50:56:82:1A:8B,00:50:56:82:54:84,00:50:56:82:54:84","10.43.40.87,10.41.40.86,10.41.40.87,10.43.4.86,10.43.40.86","fe80:0:0:0:250:56ff:fe82:2cba,fe80:0:0:0:250:56ff:fe82:1a8b,fe80:0:0:0:250:56ff:fe82:5484","Linux / Server","Red Hat Enterprise Linux Server 6 6.6","6.6","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","12042","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 71 54 08 b5 2e bc-ae be e6 6f 45 96 49 92","No Asset Tag","'+02:00","Oct 08, 2025 11:37 AM","cybreconcile","QAGENT","d152cb18-e02a-415b-8806-c7afdf242069","Apr 22, 2026 11:40 AM","x86_64","VM,SCA,PM","Cloud Agent","5","876","42027154-08b5-2ebc-aebe-e66f45964992","Apr 22, 2026 12:37 PM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"131405384","vmzeus.sanef.groupe","193423787","'-","00:50:56:AC:00:D4,00:50:56:AC:00:D4","192.168.230.23","fe80:0:0:0:250:56ff:feac:d4","Linux / Server","The CentOS Project CentOS 6 6.3","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","3833","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 2c bf eb 40 21 87 89-83 89 7e f9 55 05 97 8d","No Asset Tag","'+02:00","Jan 12, 2023 08:58 AM","cybreconcile","QAGENT","cf37f0d2-c026-4734-905d-405ee885e85c","Apr 22, 2026 11:25 AM","x86_64","VM,SCA,PM","Cloud Agent","4","704","422cbfeb-4021-8789-8389-7ef95505978d","Apr 22, 2026 12:35 PM","Cloud Agent,Linux Server,Production,Trafic,DMZ,Sans,VRF_INCONNUE,Obsolete,ServersInCyberark,Sextan,DEX,log4j,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV,TYP-VIR"
"128150824","vmradius4.sanef.groupe","191086357","VMRADIUS4","00:50:56:82:5E:F8","10.30.10.125","","Windows / Server","Microsoft Windows Server 2008 R2 6.1 SP1 Build 7601.24544","6.1","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","4095","Phoenix Technologies LTD 6.00","VMware-42 02 9b 8b 5e bc 56 ec-92 8f 42 ef 56 eb ae 83","NoAssetTag","'+01:00","Dec 16, 2025 12:52 PM","SANEF\alaad","QAGENT","a2c6f12b-e674-4b94-9d6f-7b430ce1268b","Apr 22, 2026 11:15 AM","64 bits","VM,SCA,PM","Cloud Agent","5","865","8b9b0242-bc5e-ec56-928f-42ef56ebae83","Apr 22, 2026 12:31 PM","Cloud Agent,Windows Server,Windows Server 2008,Critical,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,Radius,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR"
"130586828","vmamrpmv1","192835989","'-","00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:5F:9D,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:1B:6C,00:50:56:82:2A:C2,00:50:56:82:1B:6C,00:50:56:82:2A:C2,00:50:56:82:5F:9D","10.30.16.72,10.30.16.80,10.30.16.83,10.30.16.85,10.30.16.87,10.30.16.89,10.32.16.72,10.32.16.80,10.32.16.83,10.32.16.85,10.32.16.87,10.32.16.89,10.33.16.80","fe80:0:0:0:250:56ff:fe82:1b6c,fe80:0:0:0:250:56ff:fe82:2ac2,fe80:0:0:0:250:56ff:fe82:5f9d","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 24 45 67 6c 6f a4-0d 0b 07 05 70 c2 d5 c8","No Asset Tag","'+02:00","Oct 09, 2025 02:46 PM","delcour","QAGENT","9e6775b2-b6f9-4250-93a0-ab50a67c0e91","Apr 22, 2026 11:16 AM","x86_64","VM,SCA,PM","Cloud Agent","5","873","42022445-676c-6fa4-0d0b-070570c2d5c8","Apr 22, 2026 12:26 PM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"128150818","vmradius3.sanef.groupe","191086355","VMRADIUS3","00:50:56:82:1F:DB,02:00:4C:4F:4F:50,02:00:4C:4F:4F:50,00:50:56:82:1F:DB","10.30.10.124,169.254.99.117","fe80:0:0:0:dcea:203e:bd9d:6375,fe80:0:0:0:fdc5:80ee:27a8:29d5","Windows / Server","Microsoft Windows Server 2008 R2 6.1 SP1 Build 7601.24546","6.1","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 b7 fa 10 5a d9 5d-d9 a7 c3 33 13 98 24 eb","NoAssetTag","'+02:00","May 21, 2024 02:41 PM","SANEF\alaad","QAGENT","69739527-6f65-4752-95fd-8f20072ec70d","Apr 22, 2026 10:58 AM","64 bits","VM,SCA,PM","Cloud Agent","5","861","FAB70242-5A10-5DD9-D9A7-C333139824EB","Apr 22, 2026 12:08 PM","Cloud Agent,Windows Server,Windows Server 2008,Critical,Production,Sécurité IT,Sans,VRF_INCONNUE,Obsolete,Radius,DSI,TAG-SRVEXPOSEINDIRECT,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR"
"139157052","vmamptd1.sanef.groupe","198270704","'-","00:50:56:82:5B:C6,00:50:56:82:5B:C6","10.41.40.165","fe80:0:0:0:250:56ff:fe82:5bc6","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","7872","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 1b 81 c7 66 1d 69-91 26 2c 88 c7 a1 34 9d","No Asset Tag","'+02:00","Sep 29, 2025 03:02 PM","cybreconcile","QAGENT","dbadc8c6-f389-483b-b396-cf73f4190b36","Apr 22, 2026 10:44 AM","x86_64","VM,SCA,PM","Cloud Agent","4","692","42021b81-c766-1d69-9126-2c88c7a1349d","Apr 22, 2026 11:45 AM","Cloud Agent,Linux Server,Production,Trafic,VRF_TRAFIC_DC,Obsolete,Traffic,DEX,TAG-SRVEXPOSEINDIRECT,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"129931386","vmampgis3.sanef.groupe","192382346","VMAMPGIS3","00:50:56:82:58:7C,00:50:56:82:58:7C","10.41.40.107","fe80:0:0:0:f9e4:a388:57bc:431b","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21563 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 f2 9c df 71 99 3b-91 8f 63 b7 f7 f7 d4 d5","NoAssetTag","'+02:00","Nov 07, 2024 12:45 PM","SANEF.GROUPE\delcour","QAGENT","4a99a93f-59db-4dd6-a4bd-0cd46ce82599","Apr 22, 2026 10:05 AM","64 bits","VM,SCA,PM","Cloud Agent","3","521","9cf20242-71df-3b99-918f-63b7f7f7d4d5","Apr 22, 2026 11:00 AM","Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,GIS,DEX,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR"
"112571236","vmrgmao7.sanef.groupe","180424755","VMRGMAO7","00:50:56:82:61:86","10.43.255.15","","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21013 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 02 65 fe 25 53 63 29-7b 3b 61 3e 88 a3 b4 89","NoAssetTag","'+02:00","Mar 03, 2026 03:14 PM","SANEF\VANWYNSBERGHE","QAGENT","26714801-570a-4058-937a-1e743c199724","Apr 22, 2026 09:41 AM","64 bits","VM,SCA,PM","Cloud Agent","3","517","fe650242-5325-2963-7b3b-613e88a3b489","Apr 22, 2026 10:19 AM","Cloud Agent,Windows Server,VRF_INCONNUE,Obsolete,COSWIN,DSI,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR"
"130588224","vmamrpmv2","192836201","'-","00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:25:CC,00:50:56:82:6C:80,00:50:56:82:25:CC,00:50:56:82:6C:80,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36,00:50:56:82:39:36","10.30.16.73,10.30.16.81,10.30.16.82,10.30.16.84,10.30.16.86,10.30.16.88,10.33.16.81,10.32.16.88,10.32.16.73,10.32.16.82,10.32.16.84,10.32.16.81,10.32.16.86","fe80:0:0:0:250:56ff:fe82:25cc,fe80:0:0:0:250:56ff:fe82:6c80,fe80:0:0:0:250:56ff:fe82:3936","Linux / Server","Red Hat Enterprise Linux Server 6 6.8","6.8","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2900","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","11912","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 95 cf d8 6c 28 75-6d 67 f9 88 4b f2 99 cd","No Asset Tag","'+02:00","Oct 09, 2025 11:39 AM","cybexpapp","QAGENT","5f97bdcf-1f2b-4de0-96e9-1686ef15f760","Apr 22, 2026 07:25 AM","x86_64","VM,SCA,PM","Cloud Agent","5","873","420295cf-d86c-2875-6d67-f9884bf299cd","Apr 22, 2026 07:26 AM","Cloud Agent,Linux Server,Recette,Trafic,Sans,VRF_INCONNUE,Obsolete,MIVISU,DEX,log4j,OS-LIN-SRV DYN,OS-LIN-SRV,TYP-VIR"
"129931412","vmampgis5.sanef.groupe","192382510","VMAMPGIS5","00:50:56:82:33:54,00:50:56:82:33:54","10.41.40.109","fe80:0:0:0:f56c:5a1a:5877:598c","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21620 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","98303","Phoenix Technologies LTD 6.00","VMware-42 02 9f 53 80 5d 8e 64-cd a1 e3 76 9b 0b bc 91","NoAssetTag","'+02:00","Oct 09, 2025 09:55 AM","VMAMPGIS5\CYBASTAPP","QAGENT","e6022e2a-829f-4758-ae5c-dfb45af1c669","Apr 21, 2026 08:43 PM","64 bits","VM,SCA,PM","Cloud Agent","3","517","539f0242-5d80-648e-cda1-e3769b0bbc91","Apr 21, 2026 10:23 PM","Cloud Agent,Windows Server,Production,Patrimoine,VRF_INCONNUE,Obsolete,SIG,DEX,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR"
"129931160","vmampgis1.sanef.groupe","192382347","VMAMPGIS1","00:50:56:82:2A:8E,00:50:56:82:2A:8E","10.41.40.105","fe80:0:0:0:4f:a480:d4b:ecd6","Windows / Server","Microsoft Windows Server 2012 R2 Standard 6.3 Build 9600.21620 64-Bit","6.3","EOL/EOS","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","3196","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","16384","Phoenix Technologies LTD 6.00","VMware-42 02 b8 a9 91 9a b2 d0-7d 12 a6 32 f8 82 ab 72","NoAssetTag","'+02:00","Jul 08, 2025 12:53 PM","VMAMPGIS1\CYBEXPAPP","QAGENT","cb62c0e3-f448-4bff-8b86-5419d7eab4c1","Apr 21, 2026 05:37 PM","64 bits","VM,SCA,PM","Cloud Agent","3","518","a9b80242-9a91-d0b2-7d12-a632f882ab72","Apr 21, 2026 07:04 PM","Cloud Agent,Windows Server,Production,Patrimoine,VRF_TRAFIC_DC,Obsolete,GIS,DEX,OS-WIN-SRV DYN,OS-WIN-SRV,TYP-VIR"
Can't render this file because it has a wrong number of fields in line 2.

View File

@ -0,0 +1,49 @@
"Asset Datalist Report","22 Apr 2026 03:03PM GMT+0200","45"
"SANEF","30 boulevard Gallieni","Issy-les-Moulineaux","None","92130","France"
"Khalid MOUTAOUAKIL","sanef-km1","All roles granted"
"Asset Id","Asset Name","Host Id","Netbios Name","Mac Address","IPV4 Addresses","IPV6 Addresses","Operating System Category","OS","Operating System Version","Operating System Lifecycle Stage","Hardware Category","Hardware Name","Hardware Lifecycle Stage","CPU Count","CPU Speed (mhz)","CPU Description","Total Memory (mb)","Bios Description","Bios Serial Number","Bios Asset Tag","Time Zone","Last System Boot","Last Logged-In User","Inventory Source","Agent Id","Inventory Last Updated On","Architecture","Modules","Sources","Criticality Score","TruRisk Score","Hardware Uuid","Activity","Tags"
"387006557","vmdispt01.recette.adds","356431219","VMDISPT01","00:50:56:9C:0E:C4,00:50:56:9C:0E:C4","10.45.17.62","fe80:0:0:0:df23:e686:6263:7b6a","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 01 30 47 e8 cb-ee 3a 02 b5 b3 2d 95 49","NoAssetTag","'+02:00","Apr 17, 2026 05:19 PM","supwindev","QAGENT","fd1e6693-11ec-4570-96d3-eea298f6fb8c","Apr 22, 2026 12:13 PM","64 bits","VM,SCA,PM","Cloud Agent","2","240","01FE1C42-4730-CBE8-EE3A-02B5B32D9549","Apr 22, 2026 02:50 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387139802","vmdtrac11.recette.adds","356493097","VMDTRAC11","00:50:56:9C:89:A0,00:50:56:9C:89:A0","10.45.17.13","fe80:0:0:0:d794:a632:1a29:e2d1","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 82 31 59 6a b5-a3 4a 95 77 45 81 79 ad","NoAssetTag","'+02:00","Apr 16, 2026 03:35 AM","supwindev","QAGENT","6ee8bab2-e739-495f-b337-637d56abc85d","Apr 22, 2026 01:51 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","82F31C42-5931-B56A-A34A-9577458179AD","Apr 22, 2026 02:45 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"374101557","vmdtrac15.recette.adds","350455501","VMDTRAC15","00:50:56:9C:D8:A9,00:50:56:9C:D8:A9","10.45.17.17","fe80:0:0:0:e63b:bd73:6c2d:9ad5","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c ee 6c 44 3a 88 7f-72 3a 02 eb f1 00 cd b3","NoAssetTag","'+02:00","Apr 16, 2026 02:05 AM","supwindev","QAGENT","81c53f28-88d8-402f-bbd3-fa691893832c","Apr 22, 2026 12:48 PM","64 bits","VM,SCA,PM","Cloud Agent","2","336","6CEE1C42-3A44-7F88-723A-02EBF100CDB3","Apr 22, 2026 02:37 PM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS "
"405482222","vmmgtcroic1.sanef-int.adds","363237270","VMMGTCROIC1","00:50:56:90:1F:15","10.41.19.16","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6d 01 98 b5 fd 1a-cf 7d ee fd 80 1f c9 12","NoAssetTag","'+02:00","Apr 02, 2026 01:41 PM","admin_gtc","QAGENT","2d684e9f-3863-435b-9c4a-bd7c0eae23b2","Apr 22, 2026 12:44 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","016D1042-B598-1AFD-CF7D-EEFD801FC912","Apr 22, 2026 02:35 PM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS "
"391596617","vmmvsccad1.sanef-int.adds","357934379","VMMVSCCAD1","00:50:56:90:87:B2","10.41.7.231","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 b7 af 74 6d 89 6e-f6 e0 45 a7 c2 b9 b6 71","NoAssetTag","'+02:00","Feb 02, 2026 06:21 PM","uservideo","QAGENT","f8e700cc-4857-4fb9-b2b5-0014797f70aa","Apr 22, 2026 10:55 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","afb71042-6d74-6e89-f6e0-45a7c2b9b671","Apr 22, 2026 02:34 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"377410288","vmddops03.recette.adds","352034394","VMDDOPS03","00:50:56:9C:17:50,00:50:56:9C:17:50","10.45.17.69","fe80:0:0:0:62fa:e691:416e:f804","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 77 39 ae 90 d4-83 ce 11 e0 b6 ff 48 6a","NoAssetTag","'+02:00","Apr 16, 2026 05:35 PM","supwindev","QAGENT","03dffb7c-44b3-41fd-b06b-f6d644f7d68e","Apr 22, 2026 01:28 PM","64 bits","VM,SCA,PM","Cloud Agent","2","333","77B11C42-AE39-D490-83CE-11E0B6FF486A","Apr 22, 2026 02:27 PM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS "
"391149540","vmddops01.recette.adds","357847899","VMDDOPS01","00:50:56:9C:67:BD,00:50:56:9C:67:BD","10.45.17.67","fe80:0:0:0:70f8:8b63:91d3:43ad","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 43 33 84 6b 92 fd-19 0f f0 7d 63 ee a6 77","NoAssetTag","'+02:00","Apr 16, 2026 05:36 PM","supwindev","QAGENT","e80435b9-e9a5-4d8b-a097-c87dae33ee7a","Apr 22, 2026 12:31 PM","64 bits","VM,SCA,PM","Cloud Agent","2","334","33431C42-6B84-FD92-190F-F07D63EEA677","Apr 22, 2026 02:26 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"397495753","vmmvscdem4.sanef-int.adds","360376399","VMMVSCDEM4","00:50:56:90:90:97","10.41.7.238","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c fa 06 87 56 c5-0a ea b7 df c7 1d 9b e0","NoAssetTag","'+02:00","Feb 05, 2026 12:59 PM","Operateur","QAGENT","ca96ab59-e33d-4372-93a9-a8bc4053ba6f","Apr 22, 2026 12:07 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","fa9c1042-8706-c556-0aea-b7dfc71d9be0","Apr 22, 2026 02:22 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"397490169","vmmvscdem5.sanef-int.adds","360376397","VMMVSCDEM5","00:50:56:90:EB:7A","10.41.7.239","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 07 51 05 bb f3 44-3a bd 9d cf 3c 2d 39 62","NoAssetTag","'+02:00","Feb 05, 2026 12:59 PM","Operateur","QAGENT","9f2d31c5-772a-41ca-b8db-bd3a42852b90","Apr 22, 2026 11:43 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","51071042-bb05-44f3-3abd-9dcf3c2d3962","Apr 22, 2026 02:13 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"391641920","vmmvscdem2.sanef-int.adds","357934380","VMMVSCDEM2","00:50:56:90:E9:EE","10.41.7.236","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 2a eb a9 bb 3e b7-89 3b 12 0c 4d 51 1c 6f","NoAssetTag","'+02:00","Feb 02, 2026 06:17 PM","uservideo","QAGENT","56a4c2e4-5a00-4f51-b493-7a0814189fb8","Apr 22, 2026 11:27 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","eb2a1042-bba9-b73e-893b-120c4d511c6f","Apr 22, 2026 02:13 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387187542","vmdgest05.recette.adds","356515207","VMDGEST05","00:50:56:9C:61:97,00:50:56:9C:61:97","10.45.17.135","fe80:0:0:0:82eb:9019:7ac7:4de3","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c e3 2c 7e c8 b4 25-da 41 fc aa 93 da 4f 23","NoAssetTag","'+02:00","Apr 16, 2026 01:34 AM","supwindev","QAGENT","aa9ff005-bdf3-4b9b-b1ed-11f910feb697","Apr 22, 2026 12:26 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","2CE31C42-C87E-25B4-DA41-FCAA93DA4F23","Apr 22, 2026 02:12 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387141599","vmdtrac10.recette.adds","356493099","VMDTRAC10","00:50:56:9C:C9:C1,00:50:56:9C:C9:C1","10.45.17.12","fe80:0:0:0:a2a0:c1c0:1627:9e2","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c bf b3 a5 97 c4 3d-22 35 75 0d 3e f7 80 68","NoAssetTag","'+02:00","Apr 16, 2026 01:06 AM","supwindev","QAGENT","c533cc81-fe77-4524-9726-bafdab001d4f","Apr 22, 2026 12:31 PM","64 bits","VM,SCA,PM","Cloud Agent","2","245","B3BF1C42-97A5-3DC4-2235-750D3EF78068","Apr 22, 2026 02:12 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387000430","vmdtrac05.recette.adds","356436526","VMDTRAC05","00:50:56:9C:FA:60,00:50:56:9C:FA:60","10.45.17.7","fe80:0:0:0:3b35:2680:d52f:3e93","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 28 fe f5 6f 7f 08-56 c3 70 ac ac 9d cd b6","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","a5ba2923-f8a5-4866-92e2-9a99403632c3","Apr 22, 2026 01:02 PM","64 bits","VM,SCA,PM","Cloud Agent","2","334","FE281C42-6FF5-087F-56C3-70ACAC9DCDB6","Apr 22, 2026 02:10 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387174043","vmdgest04.recette.adds","356515674","VMDGEST04","00:50:56:9C:4C:F8,00:50:56:9C:4C:F8","10.45.17.134","fe80:0:0:0:ec80:edf1:5d79:1177","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4d 12 7f 32 d6 2d-6d 96 d5 b3 f2 2e 69 2c","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","aaefff9a-28b6-4352-ba6a-3897f30ff8d4","Apr 22, 2026 01:10 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","124D1C42-327F-2DD6-6D96-D5B3F22E692C","Apr 22, 2026 02:09 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387189143","vmdgest01.recette.adds","356515675","VMDGEST01","00:50:56:9C:77:89,00:50:56:9C:77:89","10.45.17.131","fe80:0:0:0:f839:6638:c52c:3ce6","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 6b b2 38 3e bf-58 2e 25 b9 2d 80 a7 fb","NoAssetTag","'+02:00","Apr 16, 2026 01:35 AM","supwindev","QAGENT","1b2d19d1-9fde-4ed4-88bb-e1b40669927e","Apr 22, 2026 01:13 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","6BB11C42-38B2-BF3E-582E-25B92D80A7FB","Apr 22, 2026 02:08 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387190533","vmdpeag01.recette.adds","356516695","VMDPEAG01","00:50:56:9C:8A:BD,00:50:56:9C:8A:BD","10.45.17.195","fe80:0:0:0:78fa:4563:a9ee:4aa5","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b1 4a c0 c8 6b 0f-08 c0 df 90 9b a0 49 b4","NoAssetTag","'+02:00","Apr 16, 2026 03:06 AM","supwindev","QAGENT","4674f6c3-74d1-4d20-a3c2-706192329ee7","Apr 22, 2026 12:25 PM","64 bits","VM,SCA,PM","Cloud Agent","2","244","4AB11C42-C8C0-0F6B-08C0-DF909BA049B4","Apr 22, 2026 02:01 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387157481","vmdgest03.recette.adds","356516280","VMDGEST03","00:50:56:9C:F6:01,00:50:56:9C:F6:01","10.45.17.133","fe80:0:0:0:2eb0:d6ab:1b18:6f3f","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c b7 b2 e8 5e aa b6-a7 0b c3 74 7e 36 ed c0","NoAssetTag","'+02:00","Apr 16, 2026 05:36 PM","supwindev","QAGENT","fffc4177-865e-4af7-8b11-f266277575f0","Apr 22, 2026 01:01 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","B2B71C42-5EE8-B6AA-A70B-C3747E36EDC0","Apr 22, 2026 02:01 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"377394622","vmdpeag02.recette.adds","352034393","VMDPEAG02","00:50:56:9C:B1:B1,0A:00:27:00:00:0A,00:50:56:9C:B1:B1,0A:00:27:00:00:0A","10.45.17.196,192.168.56.1","fe80:0:0:0:3fb6:15f5:323a:c5e1,fe80:0:0:0:fdf0:8840:b5b0:3fa9","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 76 c9 a0 e0 1b a4-cd f1 da b5 1f c6 ca 24","NoAssetTag","'+02:00","Apr 16, 2026 05:34 PM","RECETTE\c03987","QAGENT","c7f792a3-b4f9-4c49-9660-8c53b0fd7567","Apr 22, 2026 12:25 PM","64 bits","VM,SCA,PM","Cloud Agent","2","339","C9761C42-E0A0-A41B-CDF1-DAB51FC6CA24","Apr 22, 2026 02:00 PM","Cloud Agent,Workstation,BDD-POS DYN,BDD-ELA DYN,OS-WIN-WKS "
"387115105","vmdtrac09.recette.adds","356492877","VMDTRAC09","00:50:56:9C:37:63,00:50:56:9C:37:63","10.45.17.11","fe80:0:0:0:fd80:245e:2758:9f76","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e c5 6c 18 d7 a6-8b 40 88 de 2b c5 2f 84","NoAssetTag","'+02:00","Apr 16, 2026 02:50 AM","supwindev","QAGENT","089ed4c8-d023-47c3-861b-72d9f3bd1598","Apr 22, 2026 12:09 PM","64 bits","VM,SCA,PM","Cloud Agent","2","334","C51E1C42-186C-A6D7-8B40-88DE2BC52F84","Apr 22, 2026 01:57 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"382710695","vmmvscast1.sanef-int.adds","354097291","VMMVSCAST1","00:50:56:90:25:58","10.41.7.230","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 f7 36 8f 70 ae 4d-e3 d0 25 df 74 bb 4d 76","NoAssetTag","'+02:00","Feb 05, 2026 11:26 AM","SANEF-INT\c01957","QAGENT","ef187154-d96f-4d92-9d99-660a14f43117","Apr 22, 2026 01:00 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","36f71042-708f-4dae-e3d0-25df74bb4d76","Apr 22, 2026 01:55 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"397495752","vmmvsccad4.sanef-int.adds","360376398","VMMVSCCAD4","00:50:56:90:8A:D9","10.41.7.234","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 35 ca 74 e2 93 97-42 00 8e 83 e7 f0 e8 7c","NoAssetTag","'+02:00","Feb 05, 2026 12:58 PM","Operateur","QAGENT","5c13da18-5b32-4c03-94c8-f594c07b7cf1","Apr 22, 2026 11:20 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","ca351042-e274-9793-4200-8e83e7f0e87c","Apr 22, 2026 01:41 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387117872","vmdtrac08.recette.adds","356492878","VMDTRAC08","00:50:56:9C:0F:8C,00:50:56:9C:0F:8C","10.45.17.10","fe80:0:0:0:4801:3c04:37ed:b08","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6f a1 44 4f 03 17-7c 58 46 63 77 12 f9 86","NoAssetTag","'+02:00","Apr 16, 2026 02:20 AM","supwindev","QAGENT","6a30913b-5a84-4262-ac43-942feffb04f2","Apr 22, 2026 12:06 PM","64 bits","VM,SCA,PM","Cloud Agent","2","244","A16F1C42-4F44-1703-7C58-46637712F986","Apr 22, 2026 01:31 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"397475889","vmmvscdem3.sanef-int.adds","360376396","VMMVSCDEM3","00:50:56:90:55:8C","10.41.7.237","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 9c 12 f2 32 d8 c5-77 a2 45 8d 02 aa dc 48","NoAssetTag","'+02:00","Apr 02, 2026 04:07 PM","Operateur","QAGENT","903617c9-4561-42fa-afed-d77d58f61ac1","Apr 22, 2026 12:24 PM","64 bits","VM,SCA,PM","Cloud Agent","2","343","129c1042-32f2-c5d8-77a2-458d02aadc48","Apr 22, 2026 01:22 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"386997086","vmdtrac04.recette.adds","356436525","VMDTRAC04","00:50:56:9C:69:F8,00:50:56:9C:69:F8","10.45.17.6","fe80:0:0:0:ff7b:5a6c:795:f666","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c c4 b2 1c f8 02 80-03 50 c0 49 74 84 ba 13","NoAssetTag","'+02:00","Apr 16, 2026 05:35 PM","supwindev","QAGENT","dc7a9140-3861-45f9-bc5f-4f86e8addf24","Apr 22, 2026 12:19 PM","64 bits","VM,SCA,PM","Cloud Agent","2","332","B2C41C42-F81C-8002-0350-C0497484BA13","Apr 22, 2026 01:11 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"391641926","vmmvsccad2.sanef-int.adds","357934381","VMMVSCCAD2","00:50:56:90:8C:DC","10.41.7.232","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 e9 8d 2c 41 71 61-a7 7c 48 15 dc 68 a2 4a","NoAssetTag","'+02:00","Feb 02, 2026 06:11 PM","uservideo","QAGENT","ecd65762-a4d3-4909-b0bb-6203680b81d5","Apr 22, 2026 11:30 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","8de91042-412c-6171-a77c-4815dc68a24a","Apr 22, 2026 01:00 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387139379","vmdtrac07.recette.adds","356492636","VMDTRAC07","00:50:56:9C:05:DE,00:50:56:9C:05:DE","10.45.17.9","fe80:0:0:0:ab5f:a8c7:43dc:f929","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1e 19 c9 67 10 38-e7 83 e5 86 04 45 a6 08","NoAssetTag","'+02:00","Apr 15, 2026 09:35 PM","supwindev","QAGENT","ef80d23e-f043-4492-8a06-a2a6e2631322","Apr 22, 2026 11:00 AM","64 bits","VM,SCA,PM","Cloud Agent","2","245","191E1C42-67C9-3810-E783-E5860445A608","Apr 22, 2026 12:59 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387155302","vmdtrac13.recette.adds","356516515","VMDTRAC13","00:50:56:9C:D4:00,00:50:56:9C:D4:00","10.45.17.15","fe80:0:0:0:b111:bf7e:14b6:6bfa","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 69 3d 81 69 88 4e-f3 4e 49 6c a6 69 8f f7","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","61ebeb29-2896-429c-a953-e90bdc01c05e","Apr 22, 2026 11:34 AM","64 bits","VM,SCA,PM","Cloud Agent","2","334","3D691C42-6981-4E88-F34E-496CA6698FF7","Apr 22, 2026 12:48 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"396161645","vmdtrac14.recette.adds","359784957","VMDTRAC14","00:50:56:9C:8A:5B,00:50:56:9C:8A:5B","10.45.17.16","fe80:0:0:0:e691:fe78:141b:944b","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 27 e4 59 ee 77 1f-ca 4e 41 63 b3 62 20 99","NoAssetTag","'+02:00","Apr 16, 2026 05:37 PM","supwindev","QAGENT","5609fda0-844d-4131-b11f-aa3a87779c64","Apr 22, 2026 11:46 AM","64 bits","VM,SCA,PM","Cloud Agent","2","332","E4271C42-EE59-1F77-CA4E-4163B3622099","Apr 22, 2026 12:44 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"397458696","vmmvsccad3.sanef-int.adds","360376395","VMMVSCCAD3","00:50:56:90:A3:11","10.41.7.233","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 56 12 7b 32 31 9c-7e 39 6b f8 9d c3 f9 bd","NoAssetTag","'+02:00","Feb 05, 2026 12:41 PM","Operateur","QAGENT","45909249-e5d7-4d66-b4c0-73df364dbd0c","Apr 22, 2026 11:06 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","12561042-327b-9c31-7e39-6bf89dc3f9bd","Apr 22, 2026 12:28 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"370439767","vmdtrac02.recette.adds","348900040","VMDTRAC02","00:50:56:9C:99:24,00:50:56:9C:99:24","10.45.17.5","fe80:0:0:0:e012:8fec:9fa:6925","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 06 d2 00 39 6c c3-08 be 27 d0 95 f2 17 5e","NoAssetTag","'+02:00","Apr 16, 2026 05:35 PM","supwindev","QAGENT","5623f886-29f5-48d3-a1b9-40cafe9c5e35","Apr 22, 2026 10:34 AM","64 bits","VM,SCA,PM","Cloud Agent","2","248","D2061C42-3900-C36C-08BE-27D095F2175E","Apr 22, 2026 11:45 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"391648857","vmmvscdem1.sanef-int.adds","357934418","VMMVSCDEM1","00:50:56:90:A5:3D","10.41.7.235","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 5d 7f c6 a4 77 92-e2 15 5d 28 97 18 e1 50","NoAssetTag","'+02:00","Feb 02, 2026 05:47 PM","uservideo","QAGENT","423c9358-4751-479e-bea5-f26411f22f38","Apr 22, 2026 10:19 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","7f5d1042-a4c6-9277-e215-5d289718e150","Apr 22, 2026 11:21 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"387139793","vmdtrac12.recette.adds","356492715","VMDTRAC12","00:50:56:9C:BB:27,00:50:56:9C:BB:27","10.45.17.14","fe80:0:0:0:780d:e6c9:7935:6665","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 4f f9 a9 28 18 c4-8d 69 47 45 f3 8d 3d aa","NoAssetTag","'+02:00","Apr 16, 2026 05:36 PM","supwindev","QAGENT","84585cba-cbe9-441e-bb4c-48da2ffa7e26","Apr 22, 2026 09:43 AM","64 bits","VM,SCA,PM","Cloud Agent","2","332","F94F1C42-28A9-C418-8D69-4745F38D3DAA","Apr 22, 2026 10:17 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"405479460","vmmgtctchc1.sanef-int.adds","363237095","VMMGTCTCHC1","00:50:56:90:F0:6C","10.41.19.51","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 a4 cb 58 a9 25 ea-7c 70 6f 23 b5 03 2c 94","NoAssetTag","'+02:00","Apr 02, 2026 01:38 PM","admin_gtc","QAGENT","79994ea4-03f0-4cdf-a870-2ca3288bb72c","Apr 22, 2026 09:33 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","CBA41042-A958-EA25-7C70-6F23B5032C94","Apr 22, 2026 10:01 AM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS "
"369633115","vmdtrac01.recette.adds","348514276","VMDTRAC01","00:50:56:9C:4E:D3,00:50:56:9C:4E:D3","10.45.17.4","fe80:0:0:0:1bd8:9174:9592:22ed","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c fe 51 4e 90 67 49-a5 71 7a e9 20 7f 03 6b","NoAssetTag","'+02:00","Apr 16, 2026 12:22 AM","supwindev","QAGENT","bbc8aa7c-0df2-4531-a569-566d272bdfcb","Apr 22, 2026 08:50 AM","64 bits","VM,SCA,PM","Cloud Agent","2","252","51FE1C42-904E-4967-A571-7AE9207F036B","Apr 22, 2026 09:14 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"387175213","vmddops02.recette.adds","356513162","VMDDOPS02","00:50:56:9C:50:A8,00:50:56:9C:50:A8","10.45.17.68","fe80:0:0:0:a7c7:43e:b813:5a99","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 0a 70 63 43 4f e1-34 11 e1 44 5c 9d c7 90","NoAssetTag","'+02:00","Apr 15, 2026 11:05 PM","supwindev","QAGENT","f01d3609-5c73-4ff7-be16-361d616c252c","Apr 22, 2026 08:28 AM","64 bits","VM,SCA,PM","Cloud Agent","2","334","700A1C42-4363-E14F-3411-E1445C9DC790","Apr 22, 2026 08:40 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"387183197","vmdpeag05.recette.adds","356517262","VMDPEAG05","00:50:56:9C:A2:64,00:50:56:9C:A2:64","10.45.17.199","fe80:0:0:0:350a:4dab:ae6c:f928","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 98 b5 be c8 2a ab-72 ff e0 7d 99 93 0e 1f","NoAssetTag","'+02:00","Apr 16, 2026 02:05 AM","supwindev","QAGENT","eea026a7-21b3-4f6d-9cd3-270759b44632","Apr 22, 2026 08:26 AM","64 bits","VM,SCA,PM","Cloud Agent","2","242","B5981C42-C8BE-AB2A-72FF-E07D99930E1F","Apr 22, 2026 08:33 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"387033350","vmdtrac06.recette.adds","356440082","VMDTRAC06","00:50:56:9C:E8:9D,00:50:56:9C:E8:9D","10.45.17.8","fe80:0:0:0:959c:b5cb:e305:e793","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","8","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 02 75 61 50 07 10-05 6d 9f ef 83 da c6 46","NoAssetTag","'+02:00","Apr 16, 2026 01:51 AM","supwindev","QAGENT","95b7be16-ac20-4d19-a4ba-24e55e4c8abc","Apr 22, 2026 07:59 AM","64 bits","VM,SCA,PM","Cloud Agent","2","243","75021C42-5061-1007-056D-9FEF83DAC646","Apr 22, 2026 08:01 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"396161228","vmdpeag03.recette.adds","359784956","VMDPEAG03","00:50:56:9C:ED:CE,00:50:56:9C:ED:CE","10.45.17.197","fe80:0:0:0:862f:d285:9555:17ca","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 6a 5f 78 67 5d b6-04 b3 cd 45 7e 71 7a 75","NoAssetTag","'+02:00","Apr 16, 2026 02:35 AM","supwindev","QAGENT","90d7f632-b092-4dd8-84cf-73ac805ce751","Apr 22, 2026 07:44 AM","64 bits","VM,SCA,PM","Cloud Agent","2","242","5F6A1C42-6778-B65D-04B3-CD457E717A75","Apr 22, 2026 07:44 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"405477092","vmmgtca14c1.sanef-int.adds","363237094","VMMGTCA14C1","00:50:56:90:0D:F2","10.41.19.76","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","2","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","8191","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 40 74 05 cd 61 46-4a 40 64 77 e1 04 20 58","NoAssetTag","'+02:00","Apr 02, 2026 01:40 PM","admin_gtc","QAGENT","1f886dfb-4c76-4d28-8e05-59b037cd040d","Apr 22, 2026 07:36 AM","64 bits","VM,SCA,PM","Cloud Agent","2","343","74401042-cd05-4661-4a40-6477e1042058","Apr 22, 2026 07:36 AM","Cloud Agent,Workstation,BDD-SQL DYN,OS-WIN-WKS "
"387170879","vmdpeag04.recette.adds","356517261","VMDPEAG04","00:50:56:9C:38:61,00:50:56:9C:38:61","10.45.17.198","fe80:0:0:0:ec86:b8ef:2bd2:bf72","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.8246 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c f3 c9 10 8f 1d f4-09 61 c0 9c f4 e5 11 0d","NoAssetTag","'+02:00","Apr 16, 2026 01:20 AM","supwindev","QAGENT","3fdd8d99-5437-4a34-a556-58727d89ec1f","Apr 22, 2026 07:34 AM","64 bits","VM,SCA,PM","Cloud Agent","2","242","C9F31C42-8F10-F41D-0961-C09CF4E5110D","Apr 22, 2026 07:34 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"391686889","vmmvscdsi1.sanef-int.adds","357954120","VMMVSCDSI1","00:50:56:90:AE:DB","10.41.7.240","","Windows / Client","Microsoft Windows 11 Enterprise 24H2 Build 26100.1742 64-Bit","24H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","2893","Intel(R) Xeon(R) Gold 6326 CPU @ 2.90GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 10 6e 49 18 66 d8 3a-dd a6 22 a5 bc af cc de","NoAssetTag","'+02:00","Feb 02, 2026 06:22 PM","Operateur","QAGENT","712c55a0-16dd-407c-885c-40a010a07fb6","Apr 03, 2026 11:58 AM","64 bits","VM,SCA,PM","Cloud Agent","2","342","496e1042-6618-3ad8-dda6-22a5bcafccde","Apr 03, 2026 11:58 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"387193123","vmdtrac14.recette.adds","356516697","VMDTRAC14","00-50-56-9C-8A-5B,,","0.0.0.0,10.45.17.16","fe80:0:0:0:e691:fe78:141b:944b","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","'-","'-","16383","'-","VMware-42 1c 27 e4 59 ee 77 1f-ca 4e 41 63 b3 62 20 99","NoAssetTag","'+01:00","Dec 31, 2025 04:33 PM","Unknown","QAGENT","2c004946-d102-4129-b259-184eeda55364","Dec 31, 2025 05:27 PM","x64","VM,SCA,PM","Cloud Agent","2","248","E4271C42-EE59-1F77-CA4E-4163B3622099","Feb 24, 2026 09:17 AM","Cloud Agent,Workstation,OS-WIN-WKS "
"387195521","vmdpeag03.recette.adds","356517263","VMDPEAG03","00-50-56-9C-ED-CE,,","0.0.0.0,10.45.17.197","fe80:0:0:0:862f:d285:9555:17ca","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","'-","'-","16383","'-","VMware-42 1c 6a 5f 78 67 5d b6-04 b3 cd 45 7e 71 7a 75","NoAssetTag","'+01:00","Dec 31, 2025 04:42 PM","Unknown","QAGENT","5fa1cd6a-1b7c-42f6-867f-34dc67b51695","Dec 31, 2025 05:36 PM","x64","VM,SCA,PM","Cloud Agent","2","248","5F6A1C42-6778-B65D-04B3-CD457E717A75","Dec 31, 2025 06:24 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"387177773","vmddops01.recette.adds","356512156","VMDDOPS01","00-50-56-9C-67-BD,,","0.0.0.0,10.45.17.67","fe80:0:0:0:70f8:8b63:91d3:43ad","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","4","'-","'-","16383","'-","VMware-42 1c 43 33 84 6b 92 fd-19 0f f0 7d 63 ee a6 77","NoAssetTag","'+01:00","Dec 31, 2025 03:30 PM","Unknown","QAGENT","7590a274-9433-4dd4-9c02-9497c9078587","Dec 31, 2025 03:50 PM","x64","VM,SCA,PM","Cloud Agent","2","248","33431C42-6B84-FD92-190F-F07D63EEA677","Dec 31, 2025 03:50 PM","Cloud Agent,Workstation,OS-WIN-WKS "
"378015144","vmdispt01.recette.adds","352290264","VMDISPT01","00:50:56:9C:02:27,00:50:56:9C:02:27","10.45.17.62","fe80:0:0:0:c36e:da85:18de:79b8","Windows / Client","Microsoft Windows 11 Enterprise 25H2 Build 26200.7462 64-Bit","25H2","GA","Virtualized / Virtual Machine","VMware VMware Virtual Platform VMware Virtual Platform","Unknown","1","2394","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","16383","VMware, Inc. VMW201.00V.24504846.B64.2501180339","VMware-42 1c 1b 63 65 b9 2e 23-00 21 5c c7 ec a2 d1 80","NoAssetTag","'+01:00","Dec 29, 2025 01:41 PM","supwindev","QAGENT","9101e19d-3159-4c4e-95c3-9049b9443390","Dec 29, 2025 02:56 PM","64 bits","VM,SCA,PM","Cloud Agent","2","244","631B1C42-B965-232E-0021-5CC7ECA2D180","Dec 29, 2025 02:56 PM","Cloud Agent,Workstation,OS-WIN-WKS "
Can't render this file because it has a wrong number of fields in line 2.

888
inputs/production_env.csv Normal file
View File

@ -0,0 +1,888 @@
Hostname;FQDN;OS;Version OS;Domaine;Environnement;Zone;Tier;Etat;Owner patching;Application
bly-bly1-gc1;;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
bly-bly1-gc2;BLY-BLY2-GC2;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
bly-bly1-ves1;;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
bly-bly1-ves2;BLY-BLY2-VES2;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
ceupplu1;;linux;CentOS Linux release 7.1.1503 (Core);;Production;;a_definir;Production;secops;
lamapgis1;lamapgis1.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops;
lamapgis2;lamapgis2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
lamaprac1;lamaprac1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.10 (Santiago);;Production;;a_definir;Production;secops;
lamaprac2;lamaprac2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
lamaprac3;lamaprac3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
lamaprac4;lamaprac4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
lampadp1;lampadp1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampadp1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampadp2;lampadp2.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampadp2-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampadv1;lampadv1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampadv1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampasu1;lampasu1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
lampasu2;lampasu2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
lampcrm1;lampcrm1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampcrm1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampdec1;lampdec1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampoct1;lampoct1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lamppea1;lamppea1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lamppea1-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lamppea2;lamppea2.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lamppea2-pra;;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
lampsas1;lampsas1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
lampwaz1;lampwaz1.sanef.groupe;linux;CentOS Linux release 7.7.1908 (Core);;Production;;a_definir;Production;secops;
lpagtbpla1;lpagtbpla1;linux;Red Hat Enterprise Linux 8.10;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9
lpaiigrid1;lpaiigrid1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
lpamebrac1;lpamebrac1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
lpamebrac2;lpamebrac2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
lpamebrac3;lpamebrac3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
lpamebrac4;lpamebrac4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
lpdecabi42;lpdecabi42.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
lpemvaste1;lpemvaste1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste2;lpemvaste2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste3;lpemvaste3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste4;lpemvaste4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste5;lpemvaste5.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvaste6;lpemvaste6.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
lpemvbaemv1;lpemvbaemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv1;lpemvbpemv1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv2;lpemvbpemv2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv3;lpemvbpemv3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpemvbpemv4;lpemvbpemv4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.8 (Maipo);;Production;;a_definir;Production;secops;
lpgesanas1;lpgesanas1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;
lpgesanas2;lpgesanas2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;
lpinfbcos1;lpinfbcos1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;COSWIN Entreprise Edition 8i
lpsimabkp1;lpsimabkp1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
lpsimbpfe1;lpsimbpfe1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);;Production;;a_definir;Production;secops;
lptrabgas1;lptrabgas1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Gaspar 1
ls-abbeville-est;ls-abbeville-est;windows;Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-abbeville-nord;LS-ABBEVILLE-NORD;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amblainville;ls-amblainville;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amiens-nord;ls-amiens-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amiens-ouest;ls-amiens-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-amiens-sud;ls-amiens-sud;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-arras;ls-arras;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-arsy;ls-arsy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-athies;ls-athies;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-aumale-est;ls-aumale-est;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-aumale-ouest;ls-aumale-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bapaume;ls-bapaume;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beaumont;ls-beaumont;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beautot;ls-beautot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beauvais-centre;ls-beauvais-centre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-beauvais-nord;ls-beauvais-nord;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-berck;ls-berck;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bethune;ls-bethune;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bolbec;ls-bolbec;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bonsecours;ls-bonsecours;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-boulay-psb;ls-boulay-psb;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-boulay-spare;LS-BOULAY-PSB-SPARE.sanef.fr;windows;Microsoft Windows Server 2016 Standard;;Production;;a_definir;Production;secops;
ls-boulogne;ls-boulogne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-bouville;ls-bouville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
ls-bretonneux;ls-bretonneux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-cambrai;ls-cambrai;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chamant;ls-chamant;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chamant2;ls-chamant2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-charmont;ls-charmont;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chateau-thierry;ls-chateau-thierry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-chevrieres;ls-chevrieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-clermont-en-arg;ls-clermont-en-arg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-cote-picarde;ls-cote-picarde;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-cottevrard;ls-cottevrard;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-courbes;ls-courbes;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-courcy;ls-courcy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-coutevroult;ls-coutevroult;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-dormans;ls-dormans;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-essertaux;ls-essertaux;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-farebersviller;ls-farebersviller;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-fecamp;ls-fecamp;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-fresnes;ls-fresnes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-fresnes-en-woevre;ls-fresnes-en-woevre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-gauchy;ls-gauchy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hardivilliers;ls-hardivilliers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-haudricourt;ls-haudricourt;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-herquelingue;ls-herquelingue;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hochfelden;ls-hochfelden;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hochfelden-ouest;ls-hochfelden-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-hordain;ls-hordain;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-jarny;ls-jarny;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-jules-verne;ls-jules-verne;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-neuvillette;ls-la-neuvillette;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-vallee;ls-la-vallee;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-veuve-mourmelon;ls-la-veuve-mourmelon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-la-veuve-reims;ls-la-veuve-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-laon;ls-laon;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-le-touquet;ls-le-touquet;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-lievin;ls-lievin;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-lillers;ls-lillers;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-loupershouse;ls-loupershouse;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-marquion;ls-marquion;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-masnieres;ls-masnieres;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-maurepas;ls-maurepas;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-meru;ls-meru;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-mont-choisy;ls-mont-choisy;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-montreuil-bpv;ls-montreuil-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-montreuil-bretelle;ls-montreuil-bretelle;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-montreuil-reims;ls-montreuil-reims;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-neufchatel;ls-neufchatel;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-noeux-les-mines;ls-noeux-les-mines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-nordausques;ls-nordausques;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ormes;ls-ormes;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-phalsbourg;ls-phalsbourg;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-plateau;ls-plateau;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-poix-de-picardie;ls-poix-de-picardie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-portes-vignoble;ls-portes-vignoble;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-puttelange;ls-puttelange;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ressons;ls-ressons;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-rn29;ls-rn29;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-roye;ls-roye;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-santerre;ls-santerre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-sarre-union;ls-sarre-union;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-sarreguemines;ls-sarreguemines;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-saverne;ls-saverne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-schwindratzheim;ls-schwindratzheim-clone;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-setques;ls-setques;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-sommesous;ls-sommesous;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-alb;ls-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
ls-spare-beu;ls-spare-beu;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-eco;ls-spare-eco;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-etv;ls-spare-etv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-mon;ls-spare-mon;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-mtz;ls-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-sen;ls-spare-sen;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-spare-tqx;ls-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-srom-bpv;ls-srom-bpv;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-srom-ferme;ls-srom-ferme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-srom-ouvert;ls-srom-ouvert;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-avold-a;ls-st-avold-a;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-avold-b;ls-st-avold-b;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-etienne;ls-st-etienne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-gibrien;ls-st-gibrien;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-jean;ls-st-jean;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-omer;ls-st-omer;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-omer2;ls-st-omer2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-st-witz;ls-st-witz;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ste-marie;ls-ste-marie;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-ste-menehould;ls-ste-menehould;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-taissy;ls-taissy;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-thelus;ls-thelus;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-therouanne;ls-therouanne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-thillois;ls-thillois;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-de-l-aisne;ls-vallee-de-l-aisne;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-de-l-aube;ls-vallee-de-l-aube;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-nievre;ls-vallee-nievre;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vallee-somme;ls-vallee-somme;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vatry;ls-vatry;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-vemars-ouest;ls-vemars-ouest;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-verdun;ls-verdun;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-voie-sacree;ls-voie-sacree;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-yerville;ls-yerville;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
ls-yvetot;ls-yvetot;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
mpcecmi1;mpcecmi1.sanef.groupe;windows;Microsoft Windows 10 Entreprise 2016 LTSB;;Production;;a_definir;Production;secops;
NALBNVR1;;windows;Microsoft Windows Server 2012 Foundation;;Production;;a_definir;Production;secops;
nvr-spare-alb;nvr-spare-alb;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-beu;nvr-spare-beu;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-eco;nvr-spare-eco;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-etv;nvr-spare-etv;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-mon;nvr-spare-mon;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-mtz;nvr-spare-mtz;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-sen;nvr-spare-sen;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
nvr-spare-tqx;nvr-spare-tqx;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
RC7KMIL5;;;OA;;Production;;a_definir;Production;secops;
RC7KMIL6;;;OA;;Production;;a_definir;Production;secops;
RC7KRTX5;;;OA;;Production;;a_definir;Production;secops;
RC7KRTX6;;;OA;;Production;;a_definir;Production;secops;
rmila150;rmila150.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.10 (Santiago);;Production;;a_definir;Production;secops;
rmilacs1;rmilacs1.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops;
rmilasu1;rmilasu1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
rmilbwp1;rmilbwp1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.3 (Tikanga);;Production;;a_definir;Production;secops;
rmilmi2;;windows;Windows 2003;;Production;;a_definir;Production;secops;
rmilrau1;rmilrau1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.3 (Santiago);;Production;;a_definir;Production;secops;
rmilu2k1;rmilu2k1.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops;
rmilwdc1;rmilwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
rrtxu2k1;rrtxu2k1.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops;
rsbcacs2;rsbcacs2.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops;
rsmiasu1;rsmiasu1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
rsmiged1;;windows;Microsoft Windows Server 2003 Standard Edition;;Production;;a_definir;Production;secops;
rsmimas1;;windows;Microsoft Windows Server 2003 Enterprise Edition;;Production;;a_definir;Production;secops;
rsminas1;rsminas1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.10 (Santiago);;Production;;a_definir;Production;secops;
rsmirau1;rsmirau1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.3 (Santiago);;Production;;a_definir;Production;secops;
rsmisvg4;rsmisvg4.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.11 (Tikanga);;Production;;a_definir;Production;secops;
rsmiwdc1;rsmiwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
saroumane;saroumane.unix.sanef.fr;linux;Red Hat Linux release 7.3 (Valhalla);;Production;;a_definir;Production;secops;
spaiissws1;;;FOS;;Production;;a_definir;Production;secops;
spaiissws2;;;FOS;;Production;;a_definir;Production;secops;
spaiissws3;;;FOS;;Production;;a_definir;Production;secops;
spaiissws4;;;FOS;;Production;;a_definir;Production;secops;
spasuagsm1;spasuagsm1.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops;
spasuagsm2;spasuagsm2.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops;
spasuagsm3;spasuagsm3.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops;
spasuagsm4;spasuagsm4.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops;
spbckamag1;spbckamag1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckamag2;spbckamag2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckamag3;spbckamag3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckamag4;spbckamag4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckamag5;spbckamag5.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckamag6;spbckamag6.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckamag7;spbckamag7.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckamag8;spbckamag8.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
spbckmmag1;spbckmmag1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);EMV;Production;;a_definir;Production;secops;EMV V17 17
spbckmmag2;spbckmmag2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);EMV;Production;;a_definir;Production;secops;EMV V17 17
spbocbsap1;spbocbsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
spboomcla1;spboomcla1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
spboomcla2;spboomcla2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
spburadpe1;spburadpe1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1
spburadpi1;spburadpi1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1
spcybabkp1;spcybabkp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
spcybavlt1;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
spcybavlt2;;;;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
spcybavlt3;;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
specmadpr1;specmadpr1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
specmadpr2;specmadpr2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
specmadpr3;specmadpr3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
spemvalog1;spemvalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;;a_definir;Production;secops;splunk 1
speurasvp1;speurasvp1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;;Production;;a_definir;Production;secops;
splogbels1;splogbels1;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
splogbels2;splogbels2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
splogbels3;splogbels3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
splogbels4;splogbels4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
sppeaanvr1;sppeaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr10;sppeaanvr10;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr11;sppeaanvr11;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr12;sppeaanvr12;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr13;sppeaanvr13;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr14;sppeaanvr14;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr15;sppeaanvr15;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr16;sppeaanvr16;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr17;sppeaanvr17;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr18;sppeaanvr18;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr19;sppeaanvr19;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr2;sppeaanvr2;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr20;sppeaanvr20;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr21;sppeaanvr21;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr22;sppeaanvr22;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr23;sppeaanvr23;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr24;sppeaanvr24;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr25;sppeaanvr25;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr26;sppeaanvr26;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr27;sppeaanvr27;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr28;sppeaanvr28;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr29;sppeaanvr29;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr3;sppeaanvr3;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr30;sppeaanvr30;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr31;sppeaanvr31;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr32;sppeaanvr32;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr33;sppeaanvr33;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr4;sppeaanvr4;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr5;sppeaanvr5;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr6;sppeaanvr6;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr7;sppeaanvr7;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr8;sppeaanvr8;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sppeaanvr9;sppeaanvr9;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
sproibgtc1;sproibgtc1;windows;Microsoft Windows Server 2019 Standard;;Production;;a_definir;Production;secops;
spsecalog1;spsecalog1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);;Production;;a_definir;Production;secops;
spsicaquo1;spsicaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1
sptrabenr1;sptrabenr1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
sptrabenr2;sptrabenr2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vadvpapp1;vadvpapp1.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.6 (Tikanga);;Production;;a_definir;Production;secops;
vadvpapp3;vadvpapp3.serveur.est.sanef.fr;linux;Red Hat Enterprise Linux Server release 5.6 (Tikanga);;Production;;a_definir;Production;secops;
vairtom1;vairtom1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 5.8 (Tikanga);;Production;;a_definir;Production;secops;
vampsycapp1;vampsycapp1.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops;
vampsycapp2;vampsycapp2.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops;
vampsychtp1;vampsychtp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.5 (Santiago);;Production;;a_definir;Production;secops;
vastapp1;vastapp1.sanef.groupe;linux;CentOS release 6.5 (Final);;Production;;a_definir;Production;secops;
vburadmad1;vburadmad1.sanef.groupe;windows;Microsoft Windows Server 2012 Standard;;Production;;a_definir;Production;secops;
vburimp2;vburimp2.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops;
vburwdc1;vburwdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vburwdc2;vburwdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vemvrsa3;vemvrsa3.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops;
vemvrsa4;vemvrsa4.sanef.groupe;linux;SUSE Linux Enterprise Server 11 (x86_64);;Production;;a_definir;Production;secops;
vemvsym1;vemvsym1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17
vexploit2;vexploit2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmampdif1;vmampdif1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampdif2;vmampdif2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampgis1;vmampgis1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmampgis2;vmampgis2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmampgis3;vmampgis3.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmampgis4;vmampgis4.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmampgis5;vmampgis5.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmampgtc1;vmampgtc1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
vmampgtc2;vmampgtc2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
vmamphtp1;vmamphtp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmamphtp2;vmamphtp2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampmet1;vmampmet1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
vmampmet2;vmampmet2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
vmamprdt1;vmamprdt1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmamprdt2;vmamprdt2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampstg1;vmampstg1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampstg2;vmampstg2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampsxt1;vmampsxt1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampsxt2;vmampsxt2.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampsxt3;vmampsxt3.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampsxt4;vmampsxt4.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampsxt5;vmampsxt5.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Implémentation;secops;
vmamptd1;vmamptd1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.8 (Santiago);;Production;;a_definir;Production;secops;
vmampweb1;vmampweb1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmampweb2;vmampweb2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmcliint1;vmcliint1.sanef.groupe;windows;Microsoft Windows Server 2012 Standard;;Production;;a_definir;Production;secops;
vmcmdb;vmcmdb.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vmipm1;vmipm1.sanef.groupe;linux;FreeBSD;;Production;;a_definir;Production;secops;
vmkemp1;vmkemp1.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops;
vmkemp2;vmkemp2.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops;
vmkemplb1;vmkemplb1.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops;
vmkemplb2;vmkemplb2.sanef.groupe;linux;OVA Editeur;;Production;;a_definir;Production;secops;
vmm_stl_01;vmm_stl_01.sanef-int.adds;windows;Microsoft Windows 11 Entreprise;;Production;;a_definir;Implémentation;secops;
vmnms1;;windows;Microsoft Windows Server 2003 Standard Edition;;Production;;a_definir;Production;secops;
vmntp1;vmntp1.sanef.groupe;linux;CentOS release 6.4 (Final);;Production;;a_definir;Production;secops;
vmpgmao7;vmpgmao7.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vmpki1;vmpki1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vmpki2;vmpki2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vmquorum1;vmquorum1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.6 (Santiago);;Production;;a_definir;Production;secops;
vmradius3;vmradius3.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops;
vmradius4;vmradius4.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops;
vmsapnrt1;vmsapnrt1;windows;Microsoft Windows Server 2008 R2 Entreprise;;Production;;a_definir;Production;secops;
vmsccm1;vmsccm1.sanef.groupe;windows;Microsoft Windows 7 Entreprise;;Production;;a_definir;Production;secops;
vmsym2;vmsym2;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Symantec (Antivirus Serveur) 1
vmtelotms;;;;;Production;;a_definir;Production;secops;
vmxfb1;vmxfb1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 6.7 (Santiago);;Production;;a_definir;Production;secops;
vmzeus;vmzeus.sanef.groupe;linux;CentOS release 6.3 (Final);;Production;;a_definir;Production;secops;
vpa14agtc1;vpa14agtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Production;secops;
vpa14agtc2;vpa14agtc2;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Production;secops;
vpa14bgtc1;vpa14bgtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Production;secops;
vpa14cgtc1;vpa14cgtc1.sanef.groupe;windows;Microsoft Windows 11 Entreprise;;Production;;a_definir;Production;secops;
vpabnanvr1;vpabnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpabvanvr1;vpabvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpadvaapp1;vpadvaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Implémentation;secops;ADV-U facturation sanef 1.29g
vpadvaapp4;vpadvaapp4.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpadvangx1;vpadvangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;Interface API REST pour ERP5 1
vpaflarat1;vpaflarat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow 1
vpaflbdwh1;vpaflbdwh1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpaflbsta1;vpaflbsta1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpaflgsys1;vpaflgsys1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow DWH BI - env PROD
vpagtaftp1;vpagtaftp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime 2.7.9
vpagtatse1;vpagtatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1
vpagtaweb1;vpagtaweb1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Gestion;Production;;a_definir;Implémentation;secops;AgileTime - Sapn 1
vpaiia8770;vpaiia8770.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;
vpaiiaada1;vpaiiaada1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1
vpaiiaadm1;vpaiiaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1
vpaiiaast1;vpaiiaast1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1
vpaiiaazu1;vpaiiaazu1;windows;Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957;Infrastructure;Production;DMZ;a_definir;Production;secops;
vpaiiacam2;vpaiiacam2;windows;Windows 2016 Version 1607;Trafic;Production;DMZ;a_definir;Production;secops;Autoroute Trafic 1
vpaiiacbi1;vpaiiacbi1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiacen1;vpaiiacen1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiacol1;vpaiiacol1.sanef.groupe;linux;CentOS Linux release 8.2.2004 (Core);;Production;;a_definir;Production;secops;
vpaiiadba1;vpaiiadba1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion oracle 1
vpaiiadns1;vpaiiadns1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiadns2;vpaiiadns2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiadns3;vpaiiadns3;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiadns4;VPAIIADNS4;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion DNS 1
vpaiiafsso1;vpaiiafsso1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vpaiiafsso2;vpaiiafsso2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vpaiiagml1;vpaiiagml1;windows;Windows 2016 Version 1607;Infrastructure;Production;;a_definir;Production;secops;
vpaiiairs1;vpaiiairs1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;IRS (Insight Repport Support) 1
vpaiiamap1;vpaiiamap1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiammw1;vpaiiammw1.sanef.groupe;linux;ArubaOS;;Production;;a_definir;Production;secops;
vpaiiammw2;vpaiiammw2.sanef.groupe;linux;ArubaOS;;Production;;a_definir;Production;secops;
vpaiiaoms1;vpaiiaoms1.sanef.groupe;linux;SUSE Linux Enterprise Server 12 (x86_64);;Production;;a_definir;Production;secops;
vpaiiaoms2;vpaiiaoms2.sanef.groupe;linux;SUSE Linux Enterprise Server 12 (x86_64);;Production;;a_definir;Production;secops;
vpaiiapcw1;vpaiiapcw1.sanef.groupe;linux;Appliance;;Production;;a_definir;Production;secops;
vpaiiapkg1;vpaiiapkg1;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiapol1;vpaiiapol1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol10;vpaiiapol10.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol2;vpaiiapol2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol3;vpaiiapol3.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol4;vpaiiapol4.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol5;vpaiiapol5.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol6;vpaiiapol6.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol7;vpaiiapol7.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapol9;vpaiiapol9.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiapvc1;vpaiiapvc1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiapvc2;vpaiiapvc2.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiapvc3;vpaiiapvc3.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiapvc4;vpaiiapvc4.sanef.groupe;windows;Microsoft Windows 10 Enterprise;;Production;;a_definir;Production;secops;
vpaiiapvd1;vpaiiapvd1.sanef.groupe;windows;Microsoft Windows 10 Enterprise;;Production;;a_definir;Production;secops;
vpaiiapvd2;vpaiiapvd2.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiapvd3;vpaiiapvd3.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiapvd4;vpaiiapvd4.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiapvd5;vpaiiapvd5.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiarda1;vpaiiarda1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiiasbc1;vpaiiasbc1.sanef.groupe;linux;Red Hat Enterprise Linux 6 (64-bit);;Production;;a_definir;Production;secops;
vpaiiasbc2;vpaiiasbc2.sanef.groupe;linux;;;Production;;a_definir;Production;secops;
vpaiiatse2;vpaiiatse2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Gestion;Production;;a_definir;Production;secops;
vpaiiavcl1;vpaiiavcl1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiavcl2;vpaiiavcl2.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vpaiiawif1;;linux;centos-release-7-2;;Production;;a_definir;Production;secops;
vpaiibcen1;vpaiibcen1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpaiibsws1;vpaiibsws1.sanef.groupe;linux;BackBox version 7.00.05;;Production;;a_definir;Production;secops;
vpairahtp1;vpairahtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;
vpairatom1;vpairatom1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;
vpalbanvr1;vpalbanvr1;windows;Microsoft Windows Server 2019 Standard;Péage;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpallaovg1;vpallaovg1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vpallaovp1;vpallaovp1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vpameahtp1;vpameahtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie
vpameahtp2;vpameahtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie
vpameakfk1;vpameakfk1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie
vpameakfk2;vpameakfk2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie
vpameakfq1;vpameakfq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie
vpameaoct1;vpameaoct1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Octan 1.0
vpameaoct2;vpameaoct2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Octan 1.0
vpameaoct3;vpameaoct3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Octan 1.0
vpameapmv1;vpameapmv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1
vpameapmv2;vpameapmv2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1
vpameaquo1;vpameaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Amelie
vpameased1;vpameased1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;SED 1
vpameasxt1;vpameasxt1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
vpameasxt2;vpameasxt2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
vpameasxt3;vpameasxt3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
vpameasxt4;vpameasxt4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;Sextan 3.0
vpameatra1;vpameatra1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;AMELIE - Exploitation autoroutière
vpamlanvr1;vpamlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpamsanvr1;vpamsanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpaptapsh1;vpaptapsh1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Implémentation;secops;
vpaptbjup1;vpaptbjup1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;
vpbckaadm1;vpbckaadm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckacse1;vpbckacse1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckacse2;vpbckacse2.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw1;vpbckangw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw2;vpbckangw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw3;vpbckangw3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckangw4;vpbckangw4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckatbx1;vpbckatbx1.sanef.groupe;linux;Debian GNU/Linux 10 (buster);;Production;;a_definir;Production;secops;
vpbckmadm1;vpbckmadm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckmcse1;vpbckmcse1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;EMV;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbckmcse2;vpbckmcse2.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;EMV;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpbipamod1;vpbipamod1;windows;Windows 2016 Version 1607;Péage;Production;DMZ;a_definir;Production;secops;Modalisa 1
vpbipbdec1;vpbipbdec1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;BI;Production;;a_definir;Production;secops;
vpbmtanvr1;vpbmtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpbocaprx1;vpbocaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocardp1;vpbocardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vpbocarep1;vpbocarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocasec1;vpbocasec1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocharg1;vpbocharg1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocjump1;vpbocjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocmedi1;vpbocmedi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocrsap1;vpbocrsap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as1;vpbocs4as1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as2;vpbocs4as2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4as3;vpbocs4as3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocs4ci1;vpbocs4ci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpbocsman1;vpbocsman1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOC - env PROD
vpboeacst1;vpboeacst1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;
vpbooaboo1;vpbooaboo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooangx1;vpbooangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooaori1;vpbooaori1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooaori2;vpbooaori2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooardp1;vpbooardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooarep1;vpbooarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooarep2;vpbooarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobquo1;vpboobquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobquo2;vpboobquo2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobsql1;vpboobsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboobsql2;vpboobsql2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboojump1;vpboojump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpboomocr1;vpboomocr1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooosea1;vpbooosea1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbooosea2;vpbooosea2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOO - env PROD
vpbotaapm1;vpbotaapm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotakpi1;vpbotakpi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vpbotangx1;vpbotangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps1;vpbotapps1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps2;vpbotapps2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotapps3;vpbotapps3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotardp1;vpbotardp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarep1;vpbotarep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarep2;vpbotarep2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq1;vpbotarmq1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq2;vpbotarmq2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotarmq3;vpbotarmq3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotasim1;vpbotasim1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotatsp1;vpbotatsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotatvv1;vpbotatvv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbquo1;vpbotbquo1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbsql1;vpbotbsql1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbsql2;vpbotbsql2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotbtsd1;vpbotbtsd1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotcach1;vpbotcach1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotjump1;vpbotjump1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco1;vpbotreco1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco2;vpbotreco2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco3;vpbotreco3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotreco4;vpbotreco4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotrssm1;vpbotrssm1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbotrssm2;vpbotrssm2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow BOT - env PROD
vpbovanvr1;vpbovanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpburaadfs1;vpburaadfs1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1
vpburaadfs2;vpburaadfs2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion ADFS 1
vpburaadm1;vpburaadm1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur Administration
vpburaaov1;vpburaaov1.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;
vpburaaov2;vpburaaov2.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;
vpburadhcp1;vpburadhcp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1
vpburadhcp2;vpburadhcp2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion DHCP 1
vpburadps1;vpburadps1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM 1
vpburaexc1;vpburaexc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013
vpburaexc2;vpburaexc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Production;secops;EXCHANGE SERVER Enterprise Edition 2013
vpburafax1;vpburafax1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1
vpburafax2;vpburafax2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;XMedius FAX 1
vpburaimp1;vpburaimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103)
vpburaquo1;vpburaquo1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vpburawap1;vpburawap1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1
vpburawap2;vpburawap2;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion ADFS 1
vpburawdc1;vpburawdc1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburawdc2;vpburawdc2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburawdc3;vpburawdc3.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburawdc4;vpburawdc4.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Controleur de Domaine 1
vpburbimp1;vpburbimp1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;PaperCut 19.1.3 (Build 52103)
vpccyanvr1;vpccyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpchtanvr1;vpchtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpcosaapp1;vpcosaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;COSWIN Entreprise Edition 8i
vpcotanvr1;vpcotanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpcrmacle1;vpcrmacle1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Production;secops;Cleo - CRM V2 8.01.100 SP3
vpctvanvr1;vpctvanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpcybacpm1;vpcybacpm1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production
vpcybapsm1;vpcybapsm1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsm2;vpcybapsm2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsm3;vpcybapsm3.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsm4;vpcybapsm4.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapsp1;vpcybapsp1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpcybapsp2;vpcybapsp2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpcybapta1;vpcybapta1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;CyberArk Production
vpcybapvwa1;vpcybapvwa1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpcybapvwa2;vpcybapvwa2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;CyberArk Production
vpdaibana1;vpdaibana1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibana2;vpdaibana2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibana3;vpdaibana3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibana4;vpdaibana4.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibana5;vpdaibana5.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibana6;vpdaibana6.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibana7;vpdaibana7.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibctc1;vpdaibctc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaibctc2;vpdaibctc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;DAI (Analyseur) 1
vpdaoalic1;vpdaoalic1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ELEC CALC 2017
vpdataapp1;vpdataapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Trafic;Production;;a_definir;Implémentation;secops;Gestion des DATI 1
vpdatafrt1;vpdatafrt1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Trafic;Production;;a_definir;Production;secops;Gestion des DATI 1
vpdecasas4;vpdecasas4.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;DMZ;a_definir;Production;secops;SAS 1
vpdecasas5;vpdecasas5.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vpdecasas6;vpdecasas6.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vpdecasas7;vpdecasas7.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vpdecasas8;vpdecasas8.sanef.groupe;linux;RHEL 7.9 (Maipo);BI;Production;;a_definir;Production;secops;SAS 1
vpdepaapp1;vpdepaapp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Gdepa 1
vpdepaast1;vpdepaast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Gdepa 1
vpdepbels1;vpdepbels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;Gdepa 1
vpdsiaadm1;vpdsiaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpdsiaads1;vpdsiaads1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD SelfService plus 1
vpdsiaans1;vpdsiaans1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsiaclo1;vpdsiaclo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;DMZ;a_definir;Production;secops;Owncloud 1
vpdsiacol1;vpdsiacol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Collecte Serveur 1
vpdsiadep1;vpdsiadep1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Nextcloud 31.0.7
vpdsiafaz1;vpdsiafaz1.sanef.groupe;linux;Appliance;;Production;;a_definir;Production;secops;
vpdsiagit1;vpdsiagit1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;CVS 1
vpdsiagrd1;vpdsiagrd1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Gestion DNS 1
vpdsiahap1;vpdsiahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiahap2;vpdsiahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiahap3;vpdsiahap3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiahap4;vpdsiahap4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur HAProxy 1
vpdsiaito1;vpdsiaito1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;ITOP 2.7
vpdsiakib1;vpdsiakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsiakms1;vpdsiakms1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpdsiangx1;vpdsiangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiangx2;vpdsiangx2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiangx3;vpdsiangx3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiangx4;vpdsiangx4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;Serveur Nginx 1
vpdsiarad1;vpdsiarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiarad2;vpdsiarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiasaf1;vpdsiasaf1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiasaf2;vpdsiasaf2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Radius 1
vpdsiasat1;vpdsiasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsiasat2;vpdsiasat2.sanef.groupe;linux;Oracle Linux Server release 8.9;Infrastructure;Production;;a_definir;Production;secops;
vpdsiasta1;vpdsiasta1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpdsiasta2;vpdsiasta2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpdsiatse1;vpdsiatse1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Serveur licence TSE
vpdsiatse2;vpdsiatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Rebond nouvel AD
vpdsiaumds1;vpdsiaumds1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VCENTER Server Standard 1
vpdsiavrs1;vpdsiavrs1.sanef.groupe;linux;VMware Photon OS;;Production;;a_definir;Implémentation;secops;
vpdsiawdm1;vpdsiawdm1.sanef.groupe;linux;SUSE Linux Enterprise Server 12 (x86_64);;Production;;a_definir;Implémentation;secops;
vpdsiawsus1;vpdsiawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vpdsiawsus2;vpdsiawsus2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vpdsibarc1;vpdsibarc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.6 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibels1;vpdsibels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsibels2;vpdsibels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsibetc1;vpdsibetc1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibetc2;vpdsibetc2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibetc3;vpdsibetc3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Implémentation;secops;
vpdsibpmm1;vpdsibpmm1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsibquo1;vpdsibquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsigrid1;vpdsigrid1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Grid control 12
vpdsismtp1;vpdsismtp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpdsismtp2;vpdsismtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpeapnot1;vpeapnot1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpechaetl1;vpechaetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechaetl2;vpechaetl2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechaetl3;vpechaetl3.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechaetl4;vpechaetl4.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;
vpechatal1;vpechatal1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpechatre1;vpechatre1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpechatre2;vpechatre2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpechatre3;vpechatre3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpechatre4;vpechatre4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;TALEND IS Professional Edition - Named User 1
vpechbetl1;vpechbetl1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;EtlTool - ordonnanceur 1
vpecmapss1;vpecmapss1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
vpecmapss3;vpecmapss3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vpecmardp1;vpecmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vpecmbsql1;vpecmbsql1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;SCCM MECM
vpecmbsql3;vpecmbsql3.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vpemvaadm1;vpemvaadm1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvaftp1;vpemvaftp1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvagtw1;vpemvagtw1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvaldap1;vpemvaldap1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvaldap2;vpemvaldap2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvantp1;vpemvantp1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvantp2;vpemvantp2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvapol1;vpemvapol1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpemvasat1;vpemvasat1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Red Hat Satellite Satellite
vpemvatse1;vpemvatse1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond
vpemvatse2;vpemvatse2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV Rebond
vpemvawsus1;vpemvawsus1;windows;Microsoft Windows Server 2022 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvaxsr1;vpemvaxsr1;windows;Microsoft Windows Server 2012 R2 Standard;EMV;Production;;a_definir;Production;secops;EMV V17 17
vpemvgrid1;vpemvgrid1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);EMV;Production;;a_definir;Production;secops;EMV V17 17
vpexparep1;vpexparep1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;eReport 1
vpexpatex1;vpexpatex1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;
vpexpaxfb1;vpexpaxfb1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;XFB Gateway 1
vpexpbdech1;vpexpbdech1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion de déchets
vpexpbtex1;vpexpbtex1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;
vpflmanvr1;vpflmanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpgawagtw1;vpgawagtw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawagtw2;vpgawagtw2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawamft1;vpgawamft1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawamft2;vpgawamft2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgawbpgs1;vpgawbpgs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpgeoagps2;vpgeoagps2;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;DMZ;a_definir;Implémentation;secops;
vpgeobody1;vpgeobody1.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vpgeobody2;vpgeobody2.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vpgesapent1;vpgesapent1.sanef.groupe;linux;CentOS Linux release 7.2.1511 (Core);;Production;;a_definir;Production;secops;
vpgesaquo1;vpgesaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;3PAR StoreServ (SSMC) 1
vpgesaquo2;vpgesaquo2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;
vpgesasmc1;vpgesasmc1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vpgesasmc2;vpgesasmc2.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vpgesbref1;vpgesbref1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;
vpgmoaprx1;vpgmoaprx1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;COSWIN Entreprise Edition 8i
vpgraangx1;vpgraangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vpgrnangx1;vpgrnangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vpgrsangx1;vpgrsangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vpgtcawsus1;vpgtcawsus1;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vphdnanvr1;vphdnanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vphrqanvr1;vphrqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpiadaada1;vpiadaada1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Audit plus 1
vpiadaadm1;vpiadaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;AD Manager plus 1
vpiadapki1;vpiadapki1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapki2;vpiadapki2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapki3;vpiadapki3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapki4;vpiadapki4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpiadapol1;vpiadapol1.sanef.groupe;linux;Red Hat Enterprise Linux 8 (64-bit);Infrastructure;Production;;a_definir;Production;secops;Centreon 1
vpiadawdc1;vpiadawdc1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawdc2;vpiadawdc2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawdc3;vpiadawdc3.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawdc4;vpiadawdc4.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;Controleur de Domaine 1
vpiadawsus1;vpiadawsus1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;WSUS (Gestion Mise à jour Windows) 1
vpintaels1;vpintaels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1
vpintanfs1;vpintanfs1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1
vpintaprx2;vpintaprx2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1
vpintaweb2;vpintaweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1
vpintaweb3;vpintaweb3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;DMZ;a_definir;Production;secops;Gestion site institutionnel 1
vpintbweb2;vpintbweb2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Gestion;Production;;a_definir;Production;secops;Gestion site institutionnel 1
vpisibtel1;vpisibtel1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;ISI-COM 16.12
vplogakib1;vplogakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vplogalst1;vplogalst1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vplogbels1;vplogbels1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Production;secops;
vplogbels2;vplogbels2.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vplogbquo1;vplogbquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vplpeanvr1;vplpeanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpmalanvr1;vpmalanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpmetaads1;vpmetaads1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;AD SelfService plus 1
vpmetaquo1;vpmetaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1
vpmetasmc1;vpmetasmc1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vpmetasmc2;vpmetasmc2.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vpmonaftp1;vpmonaftp1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);EMV;Production;;a_definir;Implémentation;secops;EMV V17 17
vpnacaadm1;vpnacaadm1.sanef.groupe;linux;redhat-release-server-7;;Production;;a_definir;Production;secops;
vpnacaadm2;vpnacaadm2.sanef.groupe;linux;redhat-release-server-7;;Production;;a_definir;Production;secops;
vpnapamed1;vpnapamed1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpngwasia1;vpngwasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpngwasia2;vpngwasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpngwasic1;vpngwasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpngwasic2;vpngwasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpnitardp1;vpnitardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Flux Libre;Production;;a_definir;Implémentation;secops;Flux libre A13-A14 -
vpnitbbot1;vpnitbbot1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpodaboem1;vpodaboem1.sanef.groupe;linux;;;Production;;a_definir;Production;secops;
vpodaboem2;vpodaboem2.sanef.groupe;linux;;;Production;;a_definir;Production;secops;
vpodaboem3;vpodaboem3.sanef.groupe;linux;;;Production;;a_definir;Production;secops;
vpodaboem4;vpodaboem4.sanef.groupe;linux;;;Production;;a_definir;Production;secops;
vpodabquo1;vpodabquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Infrastructure;Production;;a_definir;Production;secops;Oracle 19 (12.2.0.3)
vpormanvr1;vpormanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vposapapp1;vposapapp1.sanef.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapast1;vposapast1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapels1;vposapels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapels2;vposapels2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vposapexp1;vposapexp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP
vposapkib1;vposapkib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP 1.0
vposapmet1;vposapmet1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Implémentation;secops;OSAP
vposapquo1;vposapquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Péage;Production;;a_definir;Production;secops;OSAP
vppataels1;vppataels1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;
vppatakib1;vppatakib1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;SI PATRIMOINE 1.0
vppatalag1;vppatalag1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Trafic;Production;;a_definir;Production;secops;Lago 17
vppatbcae1;vppatbcae1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Implémentation;secops;Babylon 4.0 build 2.3.0.7
vppatbcao1;vppatbcao1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;
vppatbl2r1;vppatbl2r1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Trafic;Production;;a_definir;Production;secops;L2R 1
vppatbsip1;vppatbsip1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;
vppbiadgw1;vppbiadgw1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;BI;Production;;a_definir;Production;secops;
vppboeacst1;vppboeacst1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;
vppciagtw1;vppciagtw1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);EMV;Production;;a_definir;Implémentation;secops;
vppciamft1;vppciamft1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);EMV;Production;;a_definir;Implémentation;secops;
vppciaquo1;vppciaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;3PAR StoreServ (SSMC) 1
vppciasmc1;vppciasmc1.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vppciasmc2;vppciasmc2.sanef.groupe;linux;HPE Linux Based on Debian;;Production;;a_definir;Production;secops;
vppcmardp1;vppcmardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SCCM MECM
vppeaaadm1;vppeaaadm1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaabst1;vppeaabst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaabst2;vppeaabst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaabst3;vppeaabst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD
vppeaaexp1;vppeaaexp1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaaiph1;vppeaaiph1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Production;secops;
vppeaarcv1;vppeaarcv1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Free Flow RCV - env PROD
vppeaaref1;vppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaaref2;vppeaaref2;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaaref4;vppeaaref4;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppeaasip1;vppeaasip1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vppeaastl1;vppeaastl1.sanef.groupe;linux;Debian GNU/Linux 10 (buster);;Production;;a_definir;Implémentation;secops;
vppeabbst1;vppeabbst1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vppeabbst2;vppeabbst2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeabbst3;vppeabbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeabbst4;vppeabbst4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Flux libre A13-A14 -
vppeabrac1;vppeabrac1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops;
vppeabrac2;vppeabrac2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops;
vppeabrac3;vppeabrac3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops;
vppeabrac4;vppeabrac4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);;Production;;a_definir;Implémentation;secops;
vppeahbst1;vppeahbst1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;DMZ;a_definir;Production;secops;Free Flow 1
vppeahbst3;vppeahbst3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Free Flow SIT - env PROD
vppixatsf1;vppixatsf1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppixatsf2;vppixatsf2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppixbams1;vppixbams1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppixbams2;vppixbams2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Production;secops;supervision pct TOPS
vppmrames1;vppmrames1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion Radio 3RP 1
vpppeaaref1;vpppeaaref1;windows;Microsoft Windows Server 2019 Datacenter;Péage;Production;;a_definir;Production;secops;SVP sanef 1
vppwdahap1;vppwdahap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;
vppwdahap2;vppwdahap2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;
vppwdapod1;vppwdapod1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vppwdapod2;vppwdapod2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vppwdbsql1;vppwdbsql1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;
vpracaquo1;vpracaquo1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;
vpradbtef1;vpradbtef1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Trafic;Production;;a_definir;Production;secops;Gestion Radio 3RP 1
vprauahtp2;vprauahtp2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;ASUR (RAU) 1
vprauareb1;vprauareb1;windows;Windows 7;;Production;;a_definir;Production;secops;
vpresardp1;vpresardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1
vpresardp2;vpresardp2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Gestion switch 1
vproiagtc1;VPROIAGTC1;windows;Windows 2019 Version 2004;;Production;;a_definir;Production;secops;
vproibgtc1;vproibgtc1;windows;Microsoft Windows Server 2019 Standard;;Production;;a_definir;Production;secops;
vprpaangx1;vprpaangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1
vprpnangx1;vprpnangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1
vprpsangx1;vprpsangx1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);Péage;Production;;a_definir;Implémentation;secops;Référentiel Péage Sanef 1
vpsaaanvr1;vpsaaanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpsamaext1;vpsamaext1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;SAM - Gestion des Actifs Logiciels 1
vpsasacpt1;vpsasacpt1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasactr1;vpsasactr1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasamic1;vpsasamic1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasapil1;vpsasapil1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk1;vpsasawrk1.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk2;vpsasawrk2.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk3;vpsasawrk3.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk4;vpsasawrk4.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk5;vpsasawrk5.sanef.groupe;linux;RHEL 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsasawrk6;vpsasawrk6.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);BI;Production;;a_definir;Production;secops;SAS Viya
vpsdtanvr1;vpsdtanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpsecapki1;vpsecapki1.sanef.groupe;linux;Red Hat Enterprise Linux release 9.7 (Plow);;Production;;a_definir;Implémentation;secops;
vpsecausb1;vpsecausb1.sanef.groupe;linux;Ubuntu;Infrastructure;Production;;a_definir;Production;secops;
vpsecawin1;vpsecawin1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion sécurité windows 1
vpsecbcadg2;vpsecbcadg2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Production;secops;Nedap 1
vpsicamic1;vpsicamic1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Implémentation;secops;
vpsicapol1;vpsicapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Centreon 1
vpsicardp1;vpsicardp1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;Trafic;Production;;a_definir;Implémentation;secops;MIVISU PMV 1
vpsimaapi1;vpsimaapi1.sanef.groupe;linux;CentOS Linux release 7.4.1708 (Core);;Production;;a_definir;Production;secops;
vpsimaapi2;vpsimaapi2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vpsimaexp1;vpsimaexp1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;DOLLAR UNIVERSE 1
vpsimaexp2;vpsimaexp2.sanef.groupe;linux;CentOS Linux release 8.1.1911 (Core);;Production;;a_definir;Production;secops;
vpsimasvp1;vpsimasvp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Péage;Production;;a_definir;Production;secops;Free Flow 1
vpsimaxsr1;vpsimaxsr1;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;XFB Gateway 1
vpsroanvr1;vpsroanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpssiandes1;vpssiandes1.sanef.groupe;windows;Windows 2019 Version 1809;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1
vpssiapki1;vpssiapki1.sanef.groupe;linux;CentOS Stream release 8;;Production;;a_definir;Production;secops;
vpssiapki2;vpssiapki2.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Infrastructure;Production;;a_definir;Production;secops;Gestion Pki 1
vpssiapki3;vpssiapki3.sanef.groupe;windows;Windows 2016 Version 1607;Infrastructure;Production;DMZ;a_definir;Production;secops;Gestion Pki 1
vpstlbhis1;vpstlbhis1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpstlbpea1;vpstlbpea1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpstlbpea2;vpstlbpea2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpstlbtel1;vpstlbtel1.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpstlbtel2;vpstlbtel2.sanef-int.adds;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vpstqanvr1;vpstqanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpsupacen1;vpsupacen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol1;vpsupapol1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol2;vpsupapol2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol3;vpsupapol3.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupapol4;vpsupapol4.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1
vpsupapol5;vpsupapol5.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Production;secops;Centreon 1
vpsupbcen1;vpsupbcen1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupbmap1;vpsupbmap1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vpsupbmbi1;vpsupbmbi1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Flux Libre;Production;;a_definir;Implémentation;secops;Centreon 1
vptchagtc1;vptchagtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vptchagtc2;vptchagtc2;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vptchbgtc1;vptchbgtc1;windows;Microsoft Windows Server 2022 Standard;;Production;;a_definir;Implémentation;secops;
vptchcgtc1;vptchcgtc1.sanef.groupe;windows;Microsoft Windows 10 Entreprise;;Production;;a_definir;Implémentation;secops;
vptelagws1;vptelagws1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.6 (Maipo);;Production;;a_definir;Production;secops;
vpthlanvr1;vpthlanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vptraagas1;vptraagas1.sanef.groupe;linux;Red Hat Enterprise Linux Server release 7.9 (Maipo);;Production;;a_definir;Production;secops;
vptraatai1;vptraatai1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptraatai2;vptraatai2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptraatpf1;vptraatpf1.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vptraatpf2;vptraatpf2.sanef.groupe;linux;CentOS Linux release 7.9.2009 (Core);;Production;;a_definir;Production;secops;
vptraazen1;vptraazen1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptraazen2;vptraazen2.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Infrastructure;Production;;a_definir;Production;secops;
vptrabalx1;vptrabalx1.sanef.groupe;windows;Microsoft Windows Server 2019 Datacenter;Trafic;Production;;a_definir;Production;secops;
vptrabkme1;vptrabkme1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;DMZ;a_definir;Production;secops;
vptrabmut1;vptrabmut1.sanef.groupe;linux;;;Production;;a_definir;Implémentation;secops;
vptrabmut2;vptrabmut2.sanef.groupe;linux;;;Production;;a_definir;Production;secops;
vptrabmut3;vptrabmut3.sanef.groupe;linux;;;Production;;a_definir;Production;secops;
vptrabmut4;vptrabmut4.sanef.groupe;linux;;;Production;;a_definir;Implémentation;secops;
vptrabpxp1;vptrabpxp1.sanef.groupe;windows;Microsoft Windows Server 2016 Standard;Trafic;Production;DMZ;a_definir;Production;secops;
vptrabtpc1;vptrabtpc1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Trafic;Production;;a_definir;Production;secops;Temps de parcours v2 1
vptrabtpv1;vptrabtpv1.sanef.groupe;windows;Microsoft Windows Server 2019 Standard;Trafic;Production;;a_definir;Production;secops;Temps de parcours v2 1
vptrabwaz1;vptrabwaz1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Implémentation;secops;
vptsyanvr1;vptsyanvr1;windows;Microsoft Windows Server 2019 Standard;Infrastructure;Production;;a_definir;Production;secops;Gestion Vidéo NVR 1
vpvidavsc1;vpvidavsc1.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1
vpvidavsc2;vpvidavsc2.sanef.groupe;windows;Microsoft Windows Server 2022 Standard;Infrastructure;Production;;a_definir;Implémentation;secops;Logiciel gestion vidéo 1
vpvpnaems1;vpvpnaems1.sanef.groupe;linux;;Infrastructure;Production;;a_definir;Implémentation;secops;FortiAnalyzer 1
vpvpnarad1;vpvpnarad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;VM de production pour l'authentification forte pour les accès distants SSL.
vpvpnarad2;vpvpnarad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.3 (Ootpa);Infrastructure;Production;;a_definir;Implémentation;secops;VM de production pour l'authentification forte pour les accès distants SSL.
vpvsaaafl1;vpvsaaafl1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaafl2;vpvsaaafl2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaafz1;vpvsaaafz1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaafz2;vpvsaaafz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaahp2;vpvsaaahp2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaahz2;vpvsaaahz2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaages1;vpvsaages1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaages2;vpvsaages2.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaagez1;vpvsaagez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaagez2;vpvsaagez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaiad1;vpvsaaiad1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaaiad2;vpvsaaiad2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.4 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamet1;vpvsaamet1.sanef.groupe;linux;Oracle Linux Server release 8.6;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamet2;vpvsaamet2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamez1;vpvsaamez1.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaamez2;vpvsaamez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaarec2;vpvsaarec2.sanef.groupe;linux;Oracle Linux Server release 8.10;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaarez2;vpvsaarez2.sanef.groupe;linux;Oracle Linux Server release 8.8;Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasia1;vpvsaasia1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasia2;vpvsaasia2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasic1;vpvsaasic1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsaasic2;vpvsaasic2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsampci1;vpvsampci1.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vpvsampci2;vpvsampci2.sanef.groupe;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Infrastructure;Production;;a_definir;Production;secops;Gestion sauvegarde 1
vraptcpsh1;vraptcpsh1.sanef.groupe;windows;Microsoft Windows 11 Entreprise;;Production;;a_definir;Production;secops;
vsapbdd1;vsapbdd1.sanef.groupe;linux;CentOS release 6.5 (Final);;Production;;a_definir;Production;secops;
vsccmr3;vsccmr3.sanef.groupe;windows;Microsoft Windows Server 2012 R2 Standard;;Production;;a_definir;Production;secops;
vtmd;vtmd.sanef.groupe;windows;Microsoft Windows Server 2008 R2 Standard;;Production;;a_definir;Production;secops;
vtpataels1;vtpataels1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;
vtpatbsip1;vtpatbsip1.sanef-rec.fr;linux;Red Hat Enterprise Linux release 8.10 (Ootpa);Trafic;Production;;a_definir;Production;secops;SI PATRIMOINE 1.0
1 Hostname FQDN OS Version OS Domaine Environnement Zone Tier Etat Owner patching Application
2 bly-bly1-gc1 windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
3 bly-bly1-gc2 BLY-BLY2-GC2 windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
4 bly-bly1-ves1 windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
5 bly-bly1-ves2 BLY-BLY2-VES2 windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
6 ceupplu1 linux CentOS Linux release 7.1.1503 (Core) Production a_definir Production secops
7 lamapgis1 lamapgis1.sanef.groupe windows Microsoft Windows Server 2008 R2 Entreprise Production a_definir Production secops
8 lamapgis2 lamapgis2.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
9 lamaprac1 lamaprac1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.10 (Santiago) Production a_definir Production secops
10 lamaprac2 lamaprac2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
11 lamaprac3 lamaprac3.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
12 lamaprac4 lamaprac4.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
13 lampadp1 lampadp1.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
14 lampadp1-pra linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
15 lampadp2 lampadp2.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
16 lampadp2-pra linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
17 lampadv1 lampadv1.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
18 lampadv1-pra linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
19 lampasu1 lampasu1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
20 lampasu2 lampasu2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
21 lampcrm1 lampcrm1.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
22 lampcrm1-pra linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
23 lampdec1 lampdec1.sanef.groupe linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
24 lampoct1 lampoct1.sanef.groupe linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
25 lamppea1 lamppea1.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
26 lamppea1-pra linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
27 lamppea2 lamppea2.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
28 lamppea2-pra linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
29 lampsas1 lampsas1.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
30 lampwaz1 lampwaz1.sanef.groupe linux CentOS Linux release 7.7.1908 (Core) Production a_definir Production secops
31 lpagtbpla1 lpagtbpla1 linux Red Hat Enterprise Linux 8.10 Gestion Production a_definir Implémentation secops AgileTime 2.7.9
32 lpaiigrid1 lpaiigrid1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
33 lpamebrac1 lpamebrac1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
34 lpamebrac2 lpamebrac2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
35 lpamebrac3 lpamebrac3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
36 lpamebrac4 lpamebrac4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
37 lpdecabi42 lpdecabi42.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
38 lpemvaste1 lpemvaste1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
39 lpemvaste2 lpemvaste2.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
40 lpemvaste3 lpemvaste3.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
41 lpemvaste4 lpemvaste4.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
42 lpemvaste5 lpemvaste5.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
43 lpemvaste6 lpemvaste6.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
44 lpemvbaemv1 lpemvbaemv1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
45 lpemvbpemv1 lpemvbpemv1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
46 lpemvbpemv2 lpemvbpemv2.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
47 lpemvbpemv3 lpemvbpemv3.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
48 lpemvbpemv4 lpemvbpemv4.sanef.groupe linux Red Hat Enterprise Linux Server release 7.8 (Maipo) Production a_definir Production secops
49 lpgesanas1 lpgesanas1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops
50 lpgesanas2 lpgesanas2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops
51 lpinfbcos1 lpinfbcos1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops COSWIN Entreprise Edition 8i
52 lpsimabkp1 lpsimabkp1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
53 lpsimbpfe1 lpsimbpfe1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Production a_definir Production secops
54 lptrabgas1 lptrabgas1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Gaspar 1
55 ls-abbeville-est ls-abbeville-est windows Microsoft Windows Server 2019 Datacenter 10.0.17763 64 bits N/A Build 17763 UBR 8511 Péage Production a_definir Production secops SVP sanef 1
56 ls-abbeville-nord LS-ABBEVILLE-NORD windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
57 ls-amblainville ls-amblainville windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
58 ls-amiens-nord ls-amiens-nord windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
59 ls-amiens-ouest ls-amiens-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
60 ls-amiens-sud ls-amiens-sud windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
61 ls-arras ls-arras windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
62 ls-arsy ls-arsy windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
63 ls-athies ls-athies windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
64 ls-aumale-est ls-aumale-est windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
65 ls-aumale-ouest ls-aumale-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
66 ls-bapaume ls-bapaume windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
67 ls-beaumont ls-beaumont windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
68 ls-beautot ls-beautot windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
69 ls-beauvais-centre ls-beauvais-centre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
70 ls-beauvais-nord ls-beauvais-nord windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
71 ls-berck ls-berck windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
72 ls-bethune ls-bethune windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
73 ls-bolbec ls-bolbec windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
74 ls-bonsecours ls-bonsecours windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
75 ls-boulay-psb ls-boulay-psb windows Microsoft Windows Server 2016 Standard Péage Production a_definir Production secops SVP sanef 1
76 ls-boulay-spare LS-BOULAY-PSB-SPARE.sanef.fr windows Microsoft Windows Server 2016 Standard Production a_definir Production secops
77 ls-boulogne ls-boulogne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
78 ls-bouville ls-bouville windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops Gestion Vidéo NVR 1
79 ls-bretonneux ls-bretonneux windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
80 ls-cambrai ls-cambrai windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
81 ls-chamant ls-chamant windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
82 ls-chamant2 ls-chamant2 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
83 ls-charmont ls-charmont windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
84 ls-chateau-thierry ls-chateau-thierry windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
85 ls-chevrieres ls-chevrieres windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
86 ls-clermont-en-arg ls-clermont-en-arg windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
87 ls-cote-picarde ls-cote-picarde windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
88 ls-cottevrard ls-cottevrard windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
89 ls-courbes ls-courbes windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
90 ls-courcy ls-courcy windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
91 ls-coutevroult ls-coutevroult windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
92 ls-dormans ls-dormans windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
93 ls-essertaux ls-essertaux windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
94 ls-farebersviller ls-farebersviller windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
95 ls-fecamp ls-fecamp windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
96 ls-fresnes ls-fresnes windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
97 ls-fresnes-en-woevre ls-fresnes-en-woevre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
98 ls-gauchy ls-gauchy windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
99 ls-hardivilliers ls-hardivilliers windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
100 ls-haudricourt ls-haudricourt windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
101 ls-herquelingue ls-herquelingue windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
102 ls-hochfelden ls-hochfelden windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
103 ls-hochfelden-ouest ls-hochfelden-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
104 ls-hordain ls-hordain windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
105 ls-jarny ls-jarny windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
106 ls-jules-verne ls-jules-verne windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
107 ls-la-neuvillette ls-la-neuvillette windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
108 ls-la-vallee ls-la-vallee windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
109 ls-la-veuve-mourmelon ls-la-veuve-mourmelon windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
110 ls-la-veuve-reims ls-la-veuve-reims windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
111 ls-laon ls-laon windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
112 ls-le-touquet ls-le-touquet windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
113 ls-lievin ls-lievin windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
114 ls-lillers ls-lillers windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
115 ls-loupershouse ls-loupershouse windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
116 ls-marquion ls-marquion windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
117 ls-masnieres ls-masnieres windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
118 ls-maurepas ls-maurepas windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
119 ls-meru ls-meru windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
120 ls-mont-choisy ls-mont-choisy windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
121 ls-montreuil-bpv ls-montreuil-bpv windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
122 ls-montreuil-bretelle ls-montreuil-bretelle windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
123 ls-montreuil-reims ls-montreuil-reims windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
124 ls-neufchatel ls-neufchatel windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
125 ls-noeux-les-mines ls-noeux-les-mines windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
126 ls-nordausques ls-nordausques windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
127 ls-ormes ls-ormes windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
128 ls-phalsbourg ls-phalsbourg windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
129 ls-plateau ls-plateau windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
130 ls-poix-de-picardie ls-poix-de-picardie windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
131 ls-portes-vignoble ls-portes-vignoble windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
132 ls-puttelange ls-puttelange windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
133 ls-ressons ls-ressons windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
134 ls-rn29 ls-rn29 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
135 ls-roye ls-roye windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
136 ls-santerre ls-santerre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
137 ls-sarre-union ls-sarre-union windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
138 ls-sarreguemines ls-sarreguemines windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
139 ls-saverne ls-saverne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
140 ls-schwindratzheim ls-schwindratzheim-clone windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
141 ls-setques ls-setques windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
142 ls-sommesous ls-sommesous windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
143 ls-spare-alb ls-spare-alb windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops Gestion Vidéo NVR 1
144 ls-spare-beu ls-spare-beu windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
145 ls-spare-eco ls-spare-eco windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
146 ls-spare-etv ls-spare-etv windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
147 ls-spare-mon ls-spare-mon windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
148 ls-spare-mtz ls-spare-mtz windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
149 ls-spare-sen ls-spare-sen windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
150 ls-spare-tqx ls-spare-tqx windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
151 ls-srom-bpv ls-srom-bpv windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
152 ls-srom-ferme ls-srom-ferme windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
153 ls-srom-ouvert ls-srom-ouvert windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
154 ls-st-avold-a ls-st-avold-a windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
155 ls-st-avold-b ls-st-avold-b windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
156 ls-st-etienne ls-st-etienne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
157 ls-st-gibrien ls-st-gibrien windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
158 ls-st-jean ls-st-jean windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
159 ls-st-omer ls-st-omer windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
160 ls-st-omer2 ls-st-omer2 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
161 ls-st-witz ls-st-witz windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
162 ls-ste-marie ls-ste-marie windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
163 ls-ste-menehould ls-ste-menehould windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
164 ls-taissy ls-taissy windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
165 ls-thelus ls-thelus windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
166 ls-therouanne ls-therouanne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
167 ls-thillois ls-thillois windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops SVP sanef 1
168 ls-vallee-de-l-aisne ls-vallee-de-l-aisne windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
169 ls-vallee-de-l-aube ls-vallee-de-l-aube windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
170 ls-vallee-nievre ls-vallee-nievre windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
171 ls-vallee-somme ls-vallee-somme windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
172 ls-vatry ls-vatry windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
173 ls-vemars-ouest ls-vemars-ouest windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
174 ls-verdun ls-verdun windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
175 ls-voie-sacree ls-voie-sacree windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
176 ls-yerville ls-yerville windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
177 ls-yvetot ls-yvetot windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
178 mpcecmi1 mpcecmi1.sanef.groupe windows Microsoft Windows 10 Entreprise 2016 LTSB Production a_definir Production secops
179 NALBNVR1 windows Microsoft Windows Server 2012 Foundation Production a_definir Production secops
180 nvr-spare-alb nvr-spare-alb windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops Gestion Vidéo NVR 1
181 nvr-spare-beu nvr-spare-beu windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
182 nvr-spare-eco nvr-spare-eco windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
183 nvr-spare-etv nvr-spare-etv windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
184 nvr-spare-mon nvr-spare-mon windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
185 nvr-spare-mtz nvr-spare-mtz windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
186 nvr-spare-sen nvr-spare-sen windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
187 nvr-spare-tqx nvr-spare-tqx windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
188 RC7KMIL5 OA Production a_definir Production secops
189 RC7KMIL6 OA Production a_definir Production secops
190 RC7KRTX5 OA Production a_definir Production secops
191 RC7KRTX6 OA Production a_definir Production secops
192 rmila150 rmila150.sanef.groupe linux Red Hat Enterprise Linux Server release 6.10 (Santiago) Production a_definir Production secops
193 rmilacs1 rmilacs1.sanef.groupe linux OVA Editeur Production a_definir Production secops
194 rmilasu1 rmilasu1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
195 rmilbwp1 rmilbwp1.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.3 (Tikanga) Production a_definir Production secops
196 rmilmi2 windows Windows 2003 Production a_definir Production secops
197 rmilrau1 rmilrau1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.3 (Santiago) Production a_definir Production secops
198 rmilu2k1 rmilu2k1.sanef.groupe linux SUSE Linux Enterprise Server 11 (x86_64) Production a_definir Production secops
199 rmilwdc1 rmilwdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
200 rrtxu2k1 rrtxu2k1.sanef.groupe linux SUSE Linux Enterprise Server 11 (x86_64) Production a_definir Production secops
201 rsbcacs2 rsbcacs2.sanef.groupe linux OVA Editeur Production a_definir Production secops
202 rsmiasu1 rsmiasu1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
203 rsmiged1 windows Microsoft Windows Server 2003 Standard Edition Production a_definir Production secops
204 rsmimas1 windows Microsoft Windows Server 2003 Enterprise Edition Production a_definir Production secops
205 rsminas1 rsminas1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.10 (Santiago) Production a_definir Production secops
206 rsmirau1 rsmirau1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.3 (Santiago) Production a_definir Production secops
207 rsmisvg4 rsmisvg4.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.11 (Tikanga) Production a_definir Production secops
208 rsmiwdc1 rsmiwdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
209 saroumane saroumane.unix.sanef.fr linux Red Hat Linux release 7.3 (Valhalla) Production a_definir Production secops
210 spaiissws1 FOS Production a_definir Production secops
211 spaiissws2 FOS Production a_definir Production secops
212 spaiissws3 FOS Production a_definir Production secops
213 spaiissws4 FOS Production a_definir Production secops
214 spasuagsm1 spasuagsm1.sanef.groupe linux CentOS Linux release 7.2.1511 (Core) Production a_definir Production secops
215 spasuagsm2 spasuagsm2.sanef.groupe linux CentOS Linux release 7.2.1511 (Core) Production a_definir Production secops
216 spasuagsm3 spasuagsm3.sanef.groupe linux CentOS Linux release 7.2.1511 (Core) Production a_definir Production secops
217 spasuagsm4 spasuagsm4.sanef.groupe linux CentOS Linux release 7.2.1511 (Core) Production a_definir Production secops
218 spbckamag1 spbckamag1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
219 spbckamag2 spbckamag2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
220 spbckamag3 spbckamag3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
221 spbckamag4 spbckamag4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
222 spbckamag5 spbckamag5.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
223 spbckamag6 spbckamag6.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
224 spbckamag7 spbckamag7.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
225 spbckamag8 spbckamag8.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
226 spbckmmag1 spbckmmag1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) EMV Production a_definir Production secops EMV V17 17
227 spbckmmag2 spbckmmag2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) EMV Production a_definir Production secops EMV V17 17
228 spbocbsap1 spbocbsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
229 spboomcla1 spboomcla1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
230 spboomcla2 spboomcla2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
231 spburadpe1 spburadpe1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops SCCM 1
232 spburadpi1 spburadpi1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM 1
233 spcybabkp1 spcybabkp1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops CyberArk Production
234 spcybavlt1 Infrastructure Production a_definir Production secops CyberArk Production
235 spcybavlt2 Infrastructure Production a_definir Production secops CyberArk Production
236 spcybavlt3 windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
237 specmadpr1 specmadpr1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
238 specmadpr2 specmadpr2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
239 specmadpr3 specmadpr3.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
240 spemvalog1 spemvalog1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Infrastructure Production a_definir Production secops splunk 1
241 speurasvp1 speurasvp1.sanef.groupe windows Microsoft Windows Server 2019 Standard Production a_definir Production secops
242 splogbels1 splogbels1 linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
243 splogbels2 splogbels2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
244 splogbels3 splogbels3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
245 splogbels4 splogbels4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
246 sppeaanvr1 sppeaanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
247 sppeaanvr10 sppeaanvr10 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
248 sppeaanvr11 sppeaanvr11 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
249 sppeaanvr12 sppeaanvr12 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
250 sppeaanvr13 sppeaanvr13 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
251 sppeaanvr14 sppeaanvr14 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
252 sppeaanvr15 sppeaanvr15 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
253 sppeaanvr16 sppeaanvr16 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
254 sppeaanvr17 sppeaanvr17 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
255 sppeaanvr18 sppeaanvr18 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
256 sppeaanvr19 sppeaanvr19 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
257 sppeaanvr2 sppeaanvr2 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
258 sppeaanvr20 sppeaanvr20 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
259 sppeaanvr21 sppeaanvr21 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
260 sppeaanvr22 sppeaanvr22 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
261 sppeaanvr23 sppeaanvr23 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
262 sppeaanvr24 sppeaanvr24 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
263 sppeaanvr25 sppeaanvr25 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
264 sppeaanvr26 sppeaanvr26 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
265 sppeaanvr27 sppeaanvr27 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
266 sppeaanvr28 sppeaanvr28 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
267 sppeaanvr29 sppeaanvr29 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
268 sppeaanvr3 sppeaanvr3 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
269 sppeaanvr30 sppeaanvr30 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
270 sppeaanvr31 sppeaanvr31 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
271 sppeaanvr32 sppeaanvr32 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
272 sppeaanvr33 sppeaanvr33 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
273 sppeaanvr4 sppeaanvr4 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
274 sppeaanvr5 sppeaanvr5 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
275 sppeaanvr6 sppeaanvr6 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
276 sppeaanvr7 sppeaanvr7 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
277 sppeaanvr8 sppeaanvr8 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
278 sppeaanvr9 sppeaanvr9 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
279 sproibgtc1 sproibgtc1 windows Microsoft Windows Server 2019 Standard Production a_definir Production secops
280 spsecalog1 spsecalog1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Production a_definir Production secops
281 spsicaquo1 spsicaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops MIVISU PMV 1
282 sptrabenr1 sptrabenr1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
283 sptrabenr2 sptrabenr2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
284 vadvpapp1 vadvpapp1.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.6 (Tikanga) Production a_definir Production secops
285 vadvpapp3 vadvpapp3.serveur.est.sanef.fr linux Red Hat Enterprise Linux Server release 5.6 (Tikanga) Production a_definir Production secops
286 vairtom1 vairtom1.sanef.groupe linux Red Hat Enterprise Linux Server release 5.8 (Tikanga) Production a_definir Production secops
287 vampsycapp1 vampsycapp1.sanef.groupe windows Microsoft Windows Server 2008 R2 Standard Production a_definir Production secops
288 vampsycapp2 vampsycapp2.sanef.groupe windows Microsoft Windows Server 2008 R2 Standard Production a_definir Production secops
289 vampsychtp1 vampsychtp1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.5 (Santiago) Production a_definir Production secops
290 vastapp1 vastapp1.sanef.groupe linux CentOS release 6.5 (Final) Production a_definir Production secops
291 vburadmad1 vburadmad1.sanef.groupe windows Microsoft Windows Server 2012 Standard Production a_definir Production secops
292 vburimp2 vburimp2.sanef.groupe windows Microsoft Windows Server 2008 R2 Standard Production a_definir Production secops
293 vburwdc1 vburwdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
294 vburwdc2 vburwdc2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
295 vemvrsa3 vemvrsa3.sanef.groupe linux SUSE Linux Enterprise Server 11 (x86_64) Production a_definir Production secops
296 vemvrsa4 vemvrsa4.sanef.groupe linux SUSE Linux Enterprise Server 11 (x86_64) Production a_definir Production secops
297 vemvsym1 vemvsym1 windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV V17 17
298 vexploit2 vexploit2.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
299 vmampdif1 vmampdif1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
300 vmampdif2 vmampdif2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
301 vmampgis1 vmampgis1.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
302 vmampgis2 vmampgis2.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
303 vmampgis3 vmampgis3.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
304 vmampgis4 vmampgis4.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
305 vmampgis5 vmampgis5.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
306 vmampgtc1 vmampgtc1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
307 vmampgtc2 vmampgtc2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
308 vmamphtp1 vmamphtp1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
309 vmamphtp2 vmamphtp2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
310 vmampmet1 vmampmet1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
311 vmampmet2 vmampmet2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
312 vmamprdt1 vmamprdt1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
313 vmamprdt2 vmamprdt2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
314 vmampstg1 vmampstg1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
315 vmampstg2 vmampstg2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
316 vmampsxt1 vmampsxt1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
317 vmampsxt2 vmampsxt2.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
318 vmampsxt3 vmampsxt3.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
319 vmampsxt4 vmampsxt4.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
320 vmampsxt5 vmampsxt5.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Implémentation secops
321 vmamptd1 vmamptd1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.8 (Santiago) Production a_definir Production secops
322 vmampweb1 vmampweb1.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
323 vmampweb2 vmampweb2.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
324 vmcliint1 vmcliint1.sanef.groupe windows Microsoft Windows Server 2012 Standard Production a_definir Production secops
325 vmcmdb vmcmdb.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
326 vmipm1 vmipm1.sanef.groupe linux FreeBSD Production a_definir Production secops
327 vmkemp1 vmkemp1.sanef.groupe linux OVA Editeur Production a_definir Production secops
328 vmkemp2 vmkemp2.sanef.groupe linux OVA Editeur Production a_definir Production secops
329 vmkemplb1 vmkemplb1.sanef.groupe linux OVA Editeur Production a_definir Production secops
330 vmkemplb2 vmkemplb2.sanef.groupe linux OVA Editeur Production a_definir Production secops
331 vmm_stl_01 vmm_stl_01.sanef-int.adds windows Microsoft Windows 11 Entreprise Production a_definir Implémentation secops
332 vmnms1 windows Microsoft Windows Server 2003 Standard Edition Production a_definir Production secops
333 vmntp1 vmntp1.sanef.groupe linux CentOS release 6.4 (Final) Production a_definir Production secops
334 vmpgmao7 vmpgmao7.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
335 vmpki1 vmpki1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
336 vmpki2 vmpki2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
337 vmquorum1 vmquorum1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.6 (Santiago) Production a_definir Production secops
338 vmradius3 vmradius3.sanef.groupe windows Microsoft Windows Server 2008 R2 Entreprise Production a_definir Production secops
339 vmradius4 vmradius4.sanef.groupe windows Microsoft Windows Server 2008 R2 Entreprise Production a_definir Production secops
340 vmsapnrt1 vmsapnrt1 windows Microsoft Windows Server 2008 R2 Entreprise Production a_definir Production secops
341 vmsccm1 vmsccm1.sanef.groupe windows Microsoft Windows 7 Entreprise Production a_definir Production secops
342 vmsym2 vmsym2 windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops Symantec (Antivirus Serveur) 1
343 vmtelotms Production a_definir Production secops
344 vmxfb1 vmxfb1.sanef.groupe linux Red Hat Enterprise Linux Server release 6.7 (Santiago) Production a_definir Production secops
345 vmzeus vmzeus.sanef.groupe linux CentOS release 6.3 (Final) Production a_definir Production secops
346 vpa14agtc1 vpa14agtc1 windows Microsoft Windows Server 2022 Standard Production a_definir Production secops
347 vpa14agtc2 vpa14agtc2 windows Microsoft Windows Server 2022 Standard Production a_definir Production secops
348 vpa14bgtc1 vpa14bgtc1 windows Microsoft Windows Server 2022 Standard Production a_definir Production secops
349 vpa14cgtc1 vpa14cgtc1.sanef.groupe windows Microsoft Windows 11 Entreprise Production a_definir Production secops
350 vpabnanvr1 vpabnanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
351 vpabvanvr1 vpabvanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
352 vpadvaapp1 vpadvaapp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Implémentation secops ADV-U facturation sanef 1.29g
353 vpadvaapp4 vpadvaapp4.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
354 vpadvangx1 vpadvangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops Interface API REST pour ERP5 1
355 vpaflarat1 vpaflarat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow 1
356 vpaflbdwh1 vpaflbdwh1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
357 vpaflbsta1 vpaflbsta1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
358 vpaflgsys1 vpaflgsys1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow DWH BI - env PROD
359 vpagtaftp1 vpagtaftp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Gestion Production a_definir Implémentation secops AgileTime 2.7.9
360 vpagtatse1 vpagtatse1.sanef.groupe windows Microsoft Windows Server 2022 Standard Gestion Production a_definir Implémentation secops AgileTime - Sapn 1
361 vpagtaweb1 vpagtaweb1.sanef.groupe windows Microsoft Windows Server 2022 Standard Gestion Production a_definir Implémentation secops AgileTime - Sapn 1
362 vpaiia8770 vpaiia8770.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops
363 vpaiiaada1 vpaiiaada1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops AD Audit plus 1
364 vpaiiaadm1 vpaiiaadm1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops AD Manager plus 1
365 vpaiiaast1 vpaiiaast1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Collecte Serveur 1
366 vpaiiaazu1 vpaiiaazu1 windows Microsoft Windows Server 2016 Standard 10.0.14393 64 bits N/A Build 14393 UBR 8957 Infrastructure Production DMZ a_definir Production secops
367 vpaiiacam2 vpaiiacam2 windows Windows 2016 Version 1607 Trafic Production DMZ a_definir Production secops Autoroute Trafic 1
368 vpaiiacbi1 vpaiiacbi1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
369 vpaiiacen1 vpaiiacen1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
370 vpaiiacol1 vpaiiacol1.sanef.groupe linux CentOS Linux release 8.2.2004 (Core) Production a_definir Production secops
371 vpaiiadba1 vpaiiadba1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion oracle 1
372 vpaiiadns1 vpaiiadns1 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
373 vpaiiadns2 vpaiiadns2 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
374 vpaiiadns3 vpaiiadns3 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
375 vpaiiadns4 VPAIIADNS4 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion DNS 1
376 vpaiiafsso1 vpaiiafsso1.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
377 vpaiiafsso2 vpaiiafsso2.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
378 vpaiiagml1 vpaiiagml1 windows Windows 2016 Version 1607 Infrastructure Production a_definir Production secops
379 vpaiiairs1 vpaiiairs1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops IRS (Insight Repport Support) 1
380 vpaiiamap1 vpaiiamap1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
381 vpaiiammw1 vpaiiammw1.sanef.groupe linux ArubaOS Production a_definir Production secops
382 vpaiiammw2 vpaiiammw2.sanef.groupe linux ArubaOS Production a_definir Production secops
383 vpaiiaoms1 vpaiiaoms1.sanef.groupe linux SUSE Linux Enterprise Server 12 (x86_64) Production a_definir Production secops
384 vpaiiaoms2 vpaiiaoms2.sanef.groupe linux SUSE Linux Enterprise Server 12 (x86_64) Production a_definir Production secops
385 vpaiiapcw1 vpaiiapcw1.sanef.groupe linux Appliance Production a_definir Production secops
386 vpaiiapkg1 vpaiiapkg1 windows Microsoft Windows 10 Entreprise Production a_definir Production secops
387 vpaiiapol1 vpaiiapol1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
388 vpaiiapol10 vpaiiapol10.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
389 vpaiiapol2 vpaiiapol2.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
390 vpaiiapol3 vpaiiapol3.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
391 vpaiiapol4 vpaiiapol4.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
392 vpaiiapol5 vpaiiapol5.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
393 vpaiiapol6 vpaiiapol6.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
394 vpaiiapol7 vpaiiapol7.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
395 vpaiiapol9 vpaiiapol9.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
396 vpaiiapvc1 vpaiiapvc1.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
397 vpaiiapvc2 vpaiiapvc2.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
398 vpaiiapvc3 vpaiiapvc3.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
399 vpaiiapvc4 vpaiiapvc4.sanef.groupe windows Microsoft Windows 10 Enterprise Production a_definir Production secops
400 vpaiiapvd1 vpaiiapvd1.sanef.groupe windows Microsoft Windows 10 Enterprise Production a_definir Production secops
401 vpaiiapvd2 vpaiiapvd2.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
402 vpaiiapvd3 vpaiiapvd3.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
403 vpaiiapvd4 vpaiiapvd4.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
404 vpaiiapvd5 vpaiiapvd5.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
405 vpaiiarda1 vpaiiarda1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
406 vpaiiasbc1 vpaiiasbc1.sanef.groupe linux Red Hat Enterprise Linux 6 (64-bit) Production a_definir Production secops
407 vpaiiasbc2 vpaiiasbc2.sanef.groupe linux Production a_definir Production secops
408 vpaiiatse2 vpaiiatse2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Gestion Production a_definir Production secops
409 vpaiiavcl1 vpaiiavcl1.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
410 vpaiiavcl2 vpaiiavcl2.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
411 vpaiiawif1 linux centos-release-7-2 Production a_definir Production secops
412 vpaiibcen1 vpaiibcen1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
413 vpaiibsws1 vpaiibsws1.sanef.groupe linux BackBox version 7.00.05 Production a_definir Production secops
414 vpairahtp1 vpairahtp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops
415 vpairatom1 vpairatom1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops
416 vpalbanvr1 vpalbanvr1 windows Microsoft Windows Server 2019 Standard Péage Production a_definir Production secops Gestion Vidéo NVR 1
417 vpallaovg1 vpallaovg1.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
418 vpallaovp1 vpallaovp1.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
419 vpameahtp1 vpameahtp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Amelie
420 vpameahtp2 vpameahtp2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Amelie
421 vpameakfk1 vpameakfk1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Amelie
422 vpameakfk2 vpameakfk2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Amelie
423 vpameakfq1 vpameakfq1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Amelie
424 vpameaoct1 vpameaoct1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Octan 1.0
425 vpameaoct2 vpameaoct2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Octan 1.0
426 vpameaoct3 vpameaoct3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Octan 1.0
427 vpameapmv1 vpameapmv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops MIVISU PMV 1
428 vpameapmv2 vpameapmv2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops MIVISU PMV 1
429 vpameaquo1 vpameaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Amelie
430 vpameased1 vpameased1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production DMZ a_definir Production secops SED 1
431 vpameasxt1 vpameasxt1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
432 vpameasxt2 vpameasxt2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
433 vpameasxt3 vpameasxt3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
434 vpameasxt4 vpameasxt4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops Sextan 3.0
435 vpameatra1 vpameatra1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production DMZ a_definir Production secops AMELIE - Exploitation autoroutière
436 vpamlanvr1 vpamlanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
437 vpamsanvr1 vpamsanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
438 vpaptapsh1 vpaptapsh1.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Implémentation secops
439 vpaptbjup1 vpaptbjup1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops
440 vpbckaadm1 vpbckaadm1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion sauvegarde 1
441 vpbckacse1 vpbckacse1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion sauvegarde 1
442 vpbckacse2 vpbckacse2.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion sauvegarde 1
443 vpbckangw1 vpbckangw1.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
444 vpbckangw2 vpbckangw2.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
445 vpbckangw3 vpbckangw3.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
446 vpbckangw4 vpbckangw4.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
447 vpbckatbx1 vpbckatbx1.sanef.groupe linux Debian GNU/Linux 10 (buster) Production a_definir Production secops
448 vpbckmadm1 vpbckmadm1.sanef.groupe windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops Gestion sauvegarde 1
449 vpbckmcse1 vpbckmcse1.sanef.groupe windows Microsoft Windows Server 2019 Standard EMV Production a_definir Production secops Gestion sauvegarde 1
450 vpbckmcse2 vpbckmcse2.sanef.groupe windows Microsoft Windows Server 2019 Standard EMV Production a_definir Production secops Gestion sauvegarde 1
451 vpbipamod1 vpbipamod1 windows Windows 2016 Version 1607 Péage Production DMZ a_definir Production secops Modalisa 1
452 vpbipbdec1 vpbipbdec1.sanef.groupe windows Microsoft Windows Server 2016 Standard BI Production a_definir Production secops
453 vpbmtanvr1 vpbmtanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
454 vpbocaprx1 vpbocaprx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
455 vpbocardp1 vpbocardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Flux libre A13-A14 -
456 vpbocarep1 vpbocarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
457 vpbocasec1 vpbocasec1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
458 vpbocharg1 vpbocharg1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
459 vpbocjump1 vpbocjump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
460 vpbocmedi1 vpbocmedi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
461 vpbocrsap1 vpbocrsap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
462 vpbocs4as1 vpbocs4as1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
463 vpbocs4as2 vpbocs4as2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
464 vpbocs4as3 vpbocs4as3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
465 vpbocs4ci1 vpbocs4ci1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
466 vpbocsman1 vpbocsman1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOC - env PROD
467 vpboeacst1 vpboeacst1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops
468 vpbooaboo1 vpbooaboo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
469 vpbooangx1 vpbooangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
470 vpbooaori1 vpbooaori1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
471 vpbooaori2 vpbooaori2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
472 vpbooardp1 vpbooardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
473 vpbooarep1 vpbooarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
474 vpbooarep2 vpbooarep2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
475 vpboobquo1 vpboobquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
476 vpboobquo2 vpboobquo2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
477 vpboobsql1 vpboobsql1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
478 vpboobsql2 vpboobsql2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
479 vpboojump1 vpboojump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
480 vpboomocr1 vpboomocr1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
481 vpbooosea1 vpbooosea1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
482 vpbooosea2 vpbooosea2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOO - env PROD
483 vpbotaapm1 vpbotaapm1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
484 vpbotakpi1 vpbotakpi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
485 vpbotangx1 vpbotangx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
486 vpbotapps1 vpbotapps1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
487 vpbotapps2 vpbotapps2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
488 vpbotapps3 vpbotapps3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
489 vpbotardp1 vpbotardp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
490 vpbotarep1 vpbotarep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
491 vpbotarep2 vpbotarep2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
492 vpbotarmq1 vpbotarmq1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
493 vpbotarmq2 vpbotarmq2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
494 vpbotarmq3 vpbotarmq3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
495 vpbotasim1 vpbotasim1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
496 vpbotatsp1 vpbotatsp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
497 vpbotatvv1 vpbotatvv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
498 vpbotbquo1 vpbotbquo1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
499 vpbotbsql1 vpbotbsql1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
500 vpbotbsql2 vpbotbsql2.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
501 vpbotbtsd1 vpbotbtsd1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
502 vpbotcach1 vpbotcach1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
503 vpbotjump1 vpbotjump1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
504 vpbotreco1 vpbotreco1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
505 vpbotreco2 vpbotreco2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
506 vpbotreco3 vpbotreco3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
507 vpbotreco4 vpbotreco4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
508 vpbotrssm1 vpbotrssm1.sanef.groupe windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
509 vpbotrssm2 vpbotrssm2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow BOT - env PROD
510 vpbovanvr1 vpbovanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
511 vpburaadfs1 vpburaadfs1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion ADFS 1
512 vpburaadfs2 vpburaadfs2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion ADFS 1
513 vpburaadm1 vpburaadm1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Serveur Administration
514 vpburaaov1 vpburaaov1.sanef.groupe windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops
515 vpburaaov2 vpburaaov2.sanef.groupe windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops
516 vpburadhcp1 vpburadhcp1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion DHCP 1
517 vpburadhcp2 vpburadhcp2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops Gestion DHCP 1
518 vpburadps1 vpburadps1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops SCCM 1
519 vpburaexc1 vpburaexc1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production DMZ a_definir Production secops EXCHANGE SERVER Enterprise Edition 2013
520 vpburaexc2 vpburaexc2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production DMZ a_definir Production secops EXCHANGE SERVER Enterprise Edition 2013
521 vpburafax1 vpburafax1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops XMedius FAX 1
522 vpburafax2 vpburafax2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops XMedius FAX 1
523 vpburaimp1 vpburaimp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops PaperCut 19.1.3 (Build 52103)
524 vpburaquo1 vpburaquo1.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
525 vpburawap1 vpburawap1 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion ADFS 1
526 vpburawap2 vpburawap2 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion ADFS 1
527 vpburawdc1 vpburawdc1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
528 vpburawdc2 vpburawdc2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
529 vpburawdc3 vpburawdc3.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
530 vpburawdc4 vpburawdc4.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Implémentation secops Controleur de Domaine 1
531 vpburbimp1 vpburbimp1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops PaperCut 19.1.3 (Build 52103)
532 vpccyanvr1 vpccyanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
533 vpchtanvr1 vpchtanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
534 vpcosaapp1 vpcosaapp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops COSWIN Entreprise Edition 8i
535 vpcotanvr1 vpcotanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
536 vpcrmacle1 vpcrmacle1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Production a_definir Production secops Cleo - CRM V2 8.01.100 SP3
537 vpctvanvr1 vpctvanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
538 vpcybacpm1 vpcybacpm1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Implémentation secops CyberArk Production
539 vpcybapsm1 vpcybapsm1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
540 vpcybapsm2 vpcybapsm2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
541 vpcybapsm3 vpcybapsm3.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops CyberArk Production
542 vpcybapsm4 vpcybapsm4.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops CyberArk Production
543 vpcybapsp1 vpcybapsp1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
544 vpcybapsp2 vpcybapsp2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
545 vpcybapta1 vpcybapta1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops CyberArk Production
546 vpcybapvwa1 vpcybapvwa1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
547 vpcybapvwa2 vpcybapvwa2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops CyberArk Production
548 vpdaibana1 vpdaibana1.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
549 vpdaibana2 vpdaibana2.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
550 vpdaibana3 vpdaibana3.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
551 vpdaibana4 vpdaibana4.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
552 vpdaibana5 vpdaibana5.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
553 vpdaibana6 vpdaibana6.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
554 vpdaibana7 vpdaibana7.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
555 vpdaibctc1 vpdaibctc1.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
556 vpdaibctc2 vpdaibctc2.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops DAI (Analyseur) 1
557 vpdaoalic1 vpdaoalic1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops ELEC CALC 2017
558 vpdataapp1 vpdataapp1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Trafic Production a_definir Implémentation secops Gestion des DATI 1
559 vpdatafrt1 vpdatafrt1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Trafic Production a_definir Production secops Gestion des DATI 1
560 vpdecasas4 vpdecasas4.sanef.groupe linux RHEL 7.9 (Maipo) BI Production DMZ a_definir Production secops SAS 1
561 vpdecasas5 vpdecasas5.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
562 vpdecasas6 vpdecasas6.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
563 vpdecasas7 vpdecasas7.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
564 vpdecasas8 vpdecasas8.sanef.groupe linux RHEL 7.9 (Maipo) BI Production a_definir Production secops SAS 1
565 vpdepaapp1 vpdepaapp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Gdepa 1
566 vpdepaast1 vpdepaast1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Gdepa 1
567 vpdepbels1 vpdepbels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops Gdepa 1
568 vpdsiaadm1 vpdsiaadm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
569 vpdsiaads1 vpdsiaads1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops AD SelfService plus 1
570 vpdsiaans1 vpdsiaans1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
571 vpdsiaclo1 vpdsiaclo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production DMZ a_definir Production secops Owncloud 1
572 vpdsiacol1 vpdsiacol1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Collecte Serveur 1
573 vpdsiadep1 vpdsiadep1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Nextcloud 31.0.7
574 vpdsiafaz1 vpdsiafaz1.sanef.groupe linux Appliance Production a_definir Production secops
575 vpdsiagit1 vpdsiagit1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops CVS 1
576 vpdsiagrd1 vpdsiagrd1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Gestion DNS 1
577 vpdsiahap1 vpdsiahap1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
578 vpdsiahap2 vpdsiahap2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
579 vpdsiahap3 vpdsiahap3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
580 vpdsiahap4 vpdsiahap4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur HAProxy 1
581 vpdsiaito1 vpdsiaito1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops ITOP 2.7
582 vpdsiakib1 vpdsiakib1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
583 vpdsiakms1 vpdsiakms1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
584 vpdsiangx1 vpdsiangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
585 vpdsiangx2 vpdsiangx2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
586 vpdsiangx3 vpdsiangx3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
587 vpdsiangx4 vpdsiangx4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops Serveur Nginx 1
588 vpdsiarad1 vpdsiarad1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
589 vpdsiarad2 vpdsiarad2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
590 vpdsiasaf1 vpdsiasaf1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
591 vpdsiasaf2 vpdsiasaf2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Radius 1
592 vpdsiasat1 vpdsiasat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
593 vpdsiasat2 vpdsiasat2.sanef.groupe linux Oracle Linux Server release 8.9 Infrastructure Production a_definir Production secops
594 vpdsiasta1 vpdsiasta1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
595 vpdsiasta2 vpdsiasta2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
596 vpdsiatse1 vpdsiatse1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Serveur licence TSE
597 vpdsiatse2 vpdsiatse2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Rebond nouvel AD
598 vpdsiaumds1 vpdsiaumds1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops VCENTER Server Standard 1
599 vpdsiavrs1 vpdsiavrs1.sanef.groupe linux VMware Photon OS Production a_definir Implémentation secops
600 vpdsiawdm1 vpdsiawdm1.sanef.groupe linux SUSE Linux Enterprise Server 12 (x86_64) Production a_definir Implémentation secops
601 vpdsiawsus1 vpdsiawsus1 windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
602 vpdsiawsus2 vpdsiawsus2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
603 vpdsibarc1 vpdsibarc1.sanef.groupe linux Red Hat Enterprise Linux release 9.6 (Plow) Infrastructure Production a_definir Implémentation secops
604 vpdsibels1 vpdsibels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
605 vpdsibels2 vpdsibels2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
606 vpdsibetc1 vpdsibetc1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops
607 vpdsibetc2 vpdsibetc2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops
608 vpdsibetc3 vpdsibetc3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Implémentation secops
609 vpdsibpmm1 vpdsibpmm1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
610 vpdsibquo1 vpdsibquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
611 vpdsigrid1 vpdsigrid1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Grid control 12
612 vpdsismtp1 vpdsismtp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
613 vpdsismtp2 vpdsismtp2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
614 vpeapnot1 vpeapnot1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
615 vpechaetl1 vpechaetl1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
616 vpechaetl2 vpechaetl2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
617 vpechaetl3 vpechaetl3.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
618 vpechaetl4 vpechaetl4.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops
619 vpechatal1 vpechatal1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
620 vpechatre1 vpechatre1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
621 vpechatre2 vpechatre2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
622 vpechatre3 vpechatre3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
623 vpechatre4 vpechatre4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops TALEND IS Professional Edition - Named User 1
624 vpechbetl1 vpechbetl1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops EtlTool - ordonnanceur 1
625 vpecmapss1 vpecmapss1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
626 vpecmapss3 vpecmapss3.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
627 vpecmardp1 vpecmardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
628 vpecmbsql1 vpecmbsql1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops SCCM MECM
629 vpecmbsql3 vpecmbsql3.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
630 vpemvaadm1 vpemvaadm1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
631 vpemvaftp1 vpemvaftp1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
632 vpemvagtw1 vpemvagtw1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
633 vpemvaldap1 vpemvaldap1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
634 vpemvaldap2 vpemvaldap2.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
635 vpemvantp1 vpemvantp1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
636 vpemvantp2 vpemvantp2.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
637 vpemvapol1 vpemvapol1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
638 vpemvasat1 vpemvasat1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Red Hat Satellite Satellite
639 vpemvatse1 vpemvatse1.sanef.groupe windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV Rebond
640 vpemvatse2 vpemvatse2.sanef.groupe windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV Rebond
641 vpemvawsus1 vpemvawsus1 windows Microsoft Windows Server 2022 Standard EMV Production a_definir Production secops EMV V17 17
642 vpemvaxsr1 vpemvaxsr1 windows Microsoft Windows Server 2012 R2 Standard EMV Production a_definir Production secops EMV V17 17
643 vpemvgrid1 vpemvgrid1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) EMV Production a_definir Production secops EMV V17 17
644 vpexparep1 vpexparep1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops eReport 1
645 vpexpatex1 vpexpatex1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops
646 vpexpaxfb1 vpexpaxfb1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops XFB Gateway 1
647 vpexpbdech1 vpexpbdech1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Infrastructure Production DMZ a_definir Production secops Gestion de déchets
648 vpexpbtex1 vpexpbtex1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops
649 vpflmanvr1 vpflmanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
650 vpgawagtw1 vpgawagtw1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
651 vpgawagtw2 vpgawagtw2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
652 vpgawamft1 vpgawamft1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
653 vpgawamft2 vpgawamft2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
654 vpgawbpgs1 vpgawbpgs1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
655 vpgeoagps2 vpgeoagps2 windows Microsoft Windows Server 2022 Standard Infrastructure Production DMZ a_definir Implémentation secops
656 vpgeobody1 vpgeobody1.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
657 vpgeobody2 vpgeobody2.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
658 vpgesapent1 vpgesapent1.sanef.groupe linux CentOS Linux release 7.2.1511 (Core) Production a_definir Production secops
659 vpgesaquo1 vpgesaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Implémentation secops 3PAR StoreServ (SSMC) 1
660 vpgesaquo2 vpgesaquo2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops
661 vpgesasmc1 vpgesasmc1.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
662 vpgesasmc2 vpgesasmc2.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
663 vpgesbref1 vpgesbref1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops
664 vpgmoaprx1 vpgmoaprx1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production DMZ a_definir Production secops COSWIN Entreprise Edition 8i
665 vpgraangx1 vpgraangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
666 vpgrnangx1 vpgrnangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
667 vpgrsangx1 vpgrsangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
668 vpgtcawsus1 vpgtcawsus1 windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
669 vphdnanvr1 vphdnanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
670 vphrqanvr1 vphrqanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
671 vpiadaada1 vpiadaada1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops AD Audit plus 1
672 vpiadaadm1 vpiadaadm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops AD Manager plus 1
673 vpiadapki1 vpiadapki1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
674 vpiadapki2 vpiadapki2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
675 vpiadapki3 vpiadapki3.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
676 vpiadapki4 vpiadapki4.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Gestion Pki 1
677 vpiadapol1 vpiadapol1.sanef.groupe linux Red Hat Enterprise Linux 8 (64-bit) Infrastructure Production a_definir Production secops Centreon 1
678 vpiadawdc1 vpiadawdc1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
679 vpiadawdc2 vpiadawdc2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
680 vpiadawdc3 vpiadawdc3.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
681 vpiadawdc4 vpiadawdc4.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops Controleur de Domaine 1
682 vpiadawsus1 vpiadawsus1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops WSUS (Gestion Mise à jour Windows) 1
683 vpintaels1 vpintaels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops Gestion site institutionnel 1
684 vpintanfs1 vpintanfs1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops Gestion site institutionnel 1
685 vpintaprx2 vpintaprx2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production DMZ a_definir Production secops Gestion site institutionnel 1
686 vpintaweb2 vpintaweb2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production DMZ a_definir Production secops Gestion site institutionnel 1
687 vpintaweb3 vpintaweb3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production DMZ a_definir Production secops Gestion site institutionnel 1
688 vpintbweb2 vpintbweb2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Gestion Production a_definir Production secops Gestion site institutionnel 1
689 vpisibtel1 vpisibtel1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops ISI-COM 16.12
690 vplogakib1 vplogakib1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
691 vplogalst1 vplogalst1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
692 vplogbels1 vplogbels1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Production secops
693 vplogbels2 vplogbels2.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
694 vplogbquo1 vplogbquo1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
695 vplpeanvr1 vplpeanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
696 vpmalanvr1 vpmalanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
697 vpmetaads1 vpmetaads1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops AD SelfService plus 1
698 vpmetaquo1 vpmetaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops 3PAR StoreServ (SSMC) 1
699 vpmetasmc1 vpmetasmc1.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
700 vpmetasmc2 vpmetasmc2.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
701 vpmonaftp1 vpmonaftp1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) EMV Production a_definir Implémentation secops EMV V17 17
702 vpnacaadm1 vpnacaadm1.sanef.groupe linux redhat-release-server-7 Production a_definir Production secops
703 vpnacaadm2 vpnacaadm2.sanef.groupe linux redhat-release-server-7 Production a_definir Production secops
704 vpnapamed1 vpnapamed1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
705 vpngwasia1 vpngwasia1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
706 vpngwasia2 vpngwasia2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
707 vpngwasic1 vpngwasic1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
708 vpngwasic2 vpngwasic2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
709 vpnitardp1 vpnitardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Flux Libre Production a_definir Implémentation secops Flux libre A13-A14 -
710 vpnitbbot1 vpnitbbot1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
711 vpodaboem1 vpodaboem1.sanef.groupe linux Production a_definir Production secops
712 vpodaboem2 vpodaboem2.sanef.groupe linux Production a_definir Production secops
713 vpodaboem3 vpodaboem3.sanef.groupe linux Production a_definir Production secops
714 vpodaboem4 vpodaboem4.sanef.groupe linux Production a_definir Production secops
715 vpodabquo1 vpodabquo1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Infrastructure Production a_definir Production secops Oracle 19 (12.2.0.3)
716 vpormanvr1 vpormanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
717 vposapapp1 vposapapp1.sanef.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
718 vposapast1 vposapast1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
719 vposapels1 vposapels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
720 vposapels2 vposapels2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
721 vposapexp1 vposapexp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Péage Production a_definir Implémentation secops OSAP
722 vposapkib1 vposapkib1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP 1.0
723 vposapmet1 vposapmet1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Péage Production a_definir Implémentation secops OSAP
724 vposapquo1 vposapquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Péage Production a_definir Production secops OSAP
725 vppataels1 vppataels1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops
726 vppatakib1 vppatakib1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops SI PATRIMOINE 1.0
727 vppatalag1 vppatalag1.sanef.groupe windows Microsoft Windows Server 2019 Standard Trafic Production a_definir Production secops Lago 17
728 vppatbcae1 vppatbcae1.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Implémentation secops Babylon 4.0 build 2.3.0.7
729 vppatbcao1 vppatbcao1.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops
730 vppatbl2r1 vppatbl2r1.sanef.groupe windows Microsoft Windows Server 2016 Standard Trafic Production a_definir Production secops L2R 1
731 vppatbsip1 vppatbsip1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production DMZ a_definir Production secops
732 vppbiadgw1 vppbiadgw1.sanef.groupe windows Microsoft Windows Server 2022 Standard BI Production a_definir Production secops
733 vppboeacst1 vppboeacst1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops
734 vppciagtw1 vppciagtw1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) EMV Production a_definir Implémentation secops
735 vppciamft1 vppciamft1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) EMV Production a_definir Implémentation secops
736 vppciaquo1 vppciaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops 3PAR StoreServ (SSMC) 1
737 vppciasmc1 vppciasmc1.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
738 vppciasmc2 vppciasmc2.sanef.groupe linux HPE Linux Based on Debian Production a_definir Production secops
739 vppcmardp1 vppcmardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SCCM MECM
740 vppeaaadm1 vppeaaadm1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Péage Production a_definir Production secops SVP sanef 1
741 vppeaabst1 vppeaabst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow SIT - env PROD
742 vppeaabst2 vppeaabst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow SIT - env PROD
743 vppeaabst3 vppeaabst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow SIT - env PROD
744 vppeaaexp1 vppeaaexp1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
745 vppeaaiph1 vppeaaiph1.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Production secops
746 vppeaarcv1 vppeaarcv1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Free Flow RCV - env PROD
747 vppeaaref1 vppeaaref1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
748 vppeaaref2 vppeaaref2 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
749 vppeaaref4 vppeaaref4 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
750 vppeaasip1 vppeaasip1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
751 vppeaastl1 vppeaastl1.sanef.groupe linux Debian GNU/Linux 10 (buster) Production a_definir Implémentation secops
752 vppeabbst1 vppeabbst1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
753 vppeabbst2 vppeabbst2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
754 vppeabbst3 vppeabbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
755 vppeabbst4 vppeabbst4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Flux libre A13-A14 -
756 vppeabrac1 vppeabrac1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Production a_definir Implémentation secops
757 vppeabrac2 vppeabrac2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Production a_definir Implémentation secops
758 vppeabrac3 vppeabrac3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Production a_definir Implémentation secops
759 vppeabrac4 vppeabrac4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Production a_definir Implémentation secops
760 vppeahbst1 vppeahbst1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production DMZ a_definir Production secops Free Flow 1
761 vppeahbst3 vppeahbst3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Free Flow SIT - env PROD
762 vppixatsf1 vppixatsf1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
763 vppixatsf2 vppixatsf2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
764 vppixbams1 vppixbams1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
765 vppixbams2 vppixbams2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Production secops supervision pct TOPS
766 vppmrames1 vppmrames1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Gestion Radio 3RP 1
767 vpppeaaref1 vpppeaaref1 windows Microsoft Windows Server 2019 Datacenter Péage Production a_definir Production secops SVP sanef 1
768 vppwdahap1 vppwdahap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Implémentation secops
769 vppwdahap2 vppwdahap2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Implémentation secops
770 vppwdapod1 vppwdapod1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
771 vppwdapod2 vppwdapod2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
772 vppwdbsql1 vppwdbsql1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops
773 vpracaquo1 vpracaquo1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops
774 vpradbtef1 vpradbtef1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Trafic Production a_definir Production secops Gestion Radio 3RP 1
775 vprauahtp2 vprauahtp2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production DMZ a_definir Production secops ASUR (RAU) 1
776 vprauareb1 vprauareb1 windows Windows 7 Production a_definir Production secops
777 vpresardp1 vpresardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Gestion switch 1
778 vpresardp2 vpresardp2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Gestion switch 1
779 vproiagtc1 VPROIAGTC1 windows Windows 2019 Version 2004 Production a_definir Production secops
780 vproibgtc1 vproibgtc1 windows Microsoft Windows Server 2019 Standard Production a_definir Production secops
781 vprpaangx1 vprpaangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Production a_definir Implémentation secops Référentiel Péage Sanef 1
782 vprpnangx1 vprpnangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Production a_definir Implémentation secops Référentiel Péage Sanef 1
783 vprpsangx1 vprpsangx1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Péage Production a_definir Implémentation secops Référentiel Péage Sanef 1
784 vpsaaanvr1 vpsaaanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
785 vpsamaext1 vpsamaext1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops SAM - Gestion des Actifs Logiciels 1
786 vpsasacpt1 vpsasacpt1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
787 vpsasactr1 vpsasactr1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
788 vpsasamic1 vpsasamic1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
789 vpsasapil1 vpsasapil1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
790 vpsasawrk1 vpsasawrk1.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
791 vpsasawrk2 vpsasawrk2.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
792 vpsasawrk3 vpsasawrk3.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
793 vpsasawrk4 vpsasawrk4.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
794 vpsasawrk5 vpsasawrk5.sanef.groupe linux RHEL 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
795 vpsasawrk6 vpsasawrk6.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) BI Production a_definir Production secops SAS Viya
796 vpsdtanvr1 vpsdtanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
797 vpsecapki1 vpsecapki1.sanef.groupe linux Red Hat Enterprise Linux release 9.7 (Plow) Production a_definir Implémentation secops
798 vpsecausb1 vpsecausb1.sanef.groupe linux Ubuntu Infrastructure Production a_definir Production secops
799 vpsecawin1 vpsecawin1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion sécurité windows 1
800 vpsecbcadg2 vpsecbcadg2.sanef.groupe windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Production secops Nedap 1
801 vpsicamic1 vpsicamic1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Implémentation secops
802 vpsicapol1 vpsicapol1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Centreon 1
803 vpsicardp1 vpsicardp1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Trafic Production a_definir Implémentation secops MIVISU PMV 1
804 vpsimaapi1 vpsimaapi1.sanef.groupe linux CentOS Linux release 7.4.1708 (Core) Production a_definir Production secops
805 vpsimaapi2 vpsimaapi2.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
806 vpsimaexp1 vpsimaexp1.sanef.groupe windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops DOLLAR UNIVERSE 1
807 vpsimaexp2 vpsimaexp2.sanef.groupe linux CentOS Linux release 8.1.1911 (Core) Production a_definir Production secops
808 vpsimasvp1 vpsimasvp1.sanef.groupe windows Microsoft Windows Server 2016 Standard Péage Production a_definir Production secops Free Flow 1
809 vpsimaxsr1 vpsimaxsr1 windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops XFB Gateway 1
810 vpsroanvr1 vpsroanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
811 vpssiandes1 vpssiandes1.sanef.groupe windows Windows 2019 Version 1809 Infrastructure Production DMZ a_definir Production secops Gestion Pki 1
812 vpssiapki1 vpssiapki1.sanef.groupe linux CentOS Stream release 8 Production a_definir Production secops
813 vpssiapki2 vpssiapki2.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Infrastructure Production a_definir Production secops Gestion Pki 1
814 vpssiapki3 vpssiapki3.sanef.groupe windows Windows 2016 Version 1607 Infrastructure Production DMZ a_definir Production secops Gestion Pki 1
815 vpstlbhis1 vpstlbhis1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
816 vpstlbpea1 vpstlbpea1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
817 vpstlbpea2 vpstlbpea2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
818 vpstlbtel1 vpstlbtel1.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
819 vpstlbtel2 vpstlbtel2.sanef-int.adds windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
820 vpstqanvr1 vpstqanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
821 vpsupacen1 vpsupacen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
822 vpsupapol1 vpsupapol1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
823 vpsupapol2 vpsupapol2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
824 vpsupapol3 vpsupapol3.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
825 vpsupapol4 vpsupapol4.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Centreon 1
826 vpsupapol5 vpsupapol5.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Production secops Centreon 1
827 vpsupbcen1 vpsupbcen1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
828 vpsupbmap1 vpsupbmap1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
829 vpsupbmbi1 vpsupbmbi1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Flux Libre Production a_definir Implémentation secops Centreon 1
830 vptchagtc1 vptchagtc1 windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
831 vptchagtc2 vptchagtc2 windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
832 vptchbgtc1 vptchbgtc1 windows Microsoft Windows Server 2022 Standard Production a_definir Implémentation secops
833 vptchcgtc1 vptchcgtc1.sanef.groupe windows Microsoft Windows 10 Entreprise Production a_definir Implémentation secops
834 vptelagws1 vptelagws1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.6 (Maipo) Production a_definir Production secops
835 vpthlanvr1 vpthlanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
836 vptraagas1 vptraagas1.sanef.groupe linux Red Hat Enterprise Linux Server release 7.9 (Maipo) Production a_definir Production secops
837 vptraatai1 vptraatai1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
838 vptraatai2 vptraatai2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
839 vptraatpf1 vptraatpf1.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
840 vptraatpf2 vptraatpf2.sanef.groupe linux CentOS Linux release 7.9.2009 (Core) Production a_definir Production secops
841 vptraazen1 vptraazen1.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
842 vptraazen2 vptraazen2.sanef.groupe windows Microsoft Windows Server 2016 Standard Infrastructure Production a_definir Production secops
843 vptrabalx1 vptrabalx1.sanef.groupe windows Microsoft Windows Server 2019 Datacenter Trafic Production a_definir Production secops
844 vptrabkme1 vptrabkme1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production DMZ a_definir Production secops
845 vptrabmut1 vptrabmut1.sanef.groupe linux Production a_definir Implémentation secops
846 vptrabmut2 vptrabmut2.sanef.groupe linux Production a_definir Production secops
847 vptrabmut3 vptrabmut3.sanef.groupe linux Production a_definir Production secops
848 vptrabmut4 vptrabmut4.sanef.groupe linux Production a_definir Implémentation secops
849 vptrabpxp1 vptrabpxp1.sanef.groupe windows Microsoft Windows Server 2016 Standard Trafic Production DMZ a_definir Production secops
850 vptrabtpc1 vptrabtpc1.sanef.groupe windows Microsoft Windows Server 2019 Standard Trafic Production a_definir Production secops Temps de parcours v2 1
851 vptrabtpv1 vptrabtpv1.sanef.groupe windows Microsoft Windows Server 2019 Standard Trafic Production a_definir Production secops Temps de parcours v2 1
852 vptrabwaz1 vptrabwaz1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Implémentation secops
853 vptsyanvr1 vptsyanvr1 windows Microsoft Windows Server 2019 Standard Infrastructure Production a_definir Production secops Gestion Vidéo NVR 1
854 vpvidavsc1 vpvidavsc1.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Logiciel gestion vidéo 1
855 vpvidavsc2 vpvidavsc2.sanef.groupe windows Microsoft Windows Server 2022 Standard Infrastructure Production a_definir Implémentation secops Logiciel gestion vidéo 1
856 vpvpnaems1 vpvpnaems1.sanef.groupe linux Infrastructure Production a_definir Implémentation secops FortiAnalyzer 1
857 vpvpnarad1 vpvpnarad1.sanef.groupe linux Red Hat Enterprise Linux release 8.3 (Ootpa) Infrastructure Production a_definir Production secops VM de production pour l'authentification forte pour les accès distants SSL.
858 vpvpnarad2 vpvpnarad2.sanef.groupe linux Red Hat Enterprise Linux release 8.3 (Ootpa) Infrastructure Production a_definir Implémentation secops VM de production pour l'authentification forte pour les accès distants SSL.
859 vpvsaaafl1 vpvsaaafl1.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
860 vpvsaaafl2 vpvsaaafl2.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
861 vpvsaaafz1 vpvsaaafz1.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
862 vpvsaaafz2 vpvsaaafz2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
863 vpvsaaahp2 vpvsaaahp2.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
864 vpvsaaahz2 vpvsaaahz2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
865 vpvsaages1 vpvsaages1.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
866 vpvsaages2 vpvsaages2.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
867 vpvsaagez1 vpvsaagez1.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
868 vpvsaagez2 vpvsaagez2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
869 vpvsaaiad1 vpvsaaiad1.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
870 vpvsaaiad2 vpvsaaiad2.sanef.groupe linux Red Hat Enterprise Linux release 8.4 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
871 vpvsaamet1 vpvsaamet1.sanef.groupe linux Oracle Linux Server release 8.6 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
872 vpvsaamet2 vpvsaamet2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
873 vpvsaamez1 vpvsaamez1.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
874 vpvsaamez2 vpvsaamez2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
875 vpvsaarec2 vpvsaarec2.sanef.groupe linux Oracle Linux Server release 8.10 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
876 vpvsaarez2 vpvsaarez2.sanef.groupe linux Oracle Linux Server release 8.8 Infrastructure Production a_definir Production secops Gestion sauvegarde 1
877 vpvsaasia1 vpvsaasia1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
878 vpvsaasia2 vpvsaasia2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
879 vpvsaasic1 vpvsaasic1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
880 vpvsaasic2 vpvsaasic2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
881 vpvsampci1 vpvsampci1.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
882 vpvsampci2 vpvsampci2.sanef.groupe linux Red Hat Enterprise Linux release 8.10 (Ootpa) Infrastructure Production a_definir Production secops Gestion sauvegarde 1
883 vraptcpsh1 vraptcpsh1.sanef.groupe windows Microsoft Windows 11 Entreprise Production a_definir Production secops
884 vsapbdd1 vsapbdd1.sanef.groupe linux CentOS release 6.5 (Final) Production a_definir Production secops
885 vsccmr3 vsccmr3.sanef.groupe windows Microsoft Windows Server 2012 R2 Standard Production a_definir Production secops
886 vtmd vtmd.sanef.groupe windows Microsoft Windows Server 2008 R2 Standard Production a_definir Production secops
887 vtpataels1 vtpataels1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops
888 vtpatbsip1 vtpatbsip1.sanef-rec.fr linux Red Hat Enterprise Linux release 8.10 (Ootpa) Trafic Production a_definir Production secops SI PATRIMOINE 1.0

128
inputs/qualys_qql_ref.txt Normal file
View File

@ -0,0 +1,128 @@
----
====== Référence QQL — Asset Inventory Tag Rule Engine ======
<WRAP round info>
**Source officielle :** https://docs.qualys.com/en/gav/latest/search_tips/tag_rules.htm\\
**Contexte :** ce qu'il faut pour écrire des règles Tag Rules (tags dynamiques) dans la console Qualys AssetView / GAV — tous les champs, syntaxe, pièges.
</WRAP>
===== 1. Filtrer "asset avec Cloud Agent" =====
Champ natif propre :
<code>asset.trackingMethod: QAGENT</code>
Valeurs possibles pour ''trackingMethod'' :
* **QAGENT** : Cloud Agent
* IP, DNSNAME, NETBIOS
* INSTANCE_ID, OCA, VIRTUAL_MACHINE_ID, SEM, GCP_INSTANCE_ID
Alternative aussi valide :
<code>inventory:(source:`Cloud Agent`)</code>
===== 2. Chaîner des tags (tags.name) =====
''tags.name'' **est supporté** dans les règles Asset Inventory (même si pas dans l'autocomplete UI). Exemple officiel Qualys :
<code>tags.name: `Cloud Agent` AND software:(name: `Cisco AnyConnect Secure Mobility Client`)</code>
===== 3. Requête OS-LIN-SRV — 3 options valides =====
^ # ^ Requête ^ Reco ^
| 1 | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and asset.trackingMethod:QAGENT'' | **À privilégier** — bas niveau, stable, indépendant de tout tag |
| 2 | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and inventory:(source:`Cloud Agent`)'' | OK |
| 3 | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and tags.name:`Cloud Agent`'' | OK mais chaîne sur un autre tag |
===== 4. Syntaxe et opérateurs =====
^ Élément ^ Règle ^
| Backticks '' ` ` '' | Match exact |
| Guillemets '' " " '' | Match partiel (substring) |
| Sans quote | Match exact sur un mot simple |
| AND / OR / NOT | Booleans (MAJUSCULES obligatoires) |
| Wildcards | ''*dev*'' (contient), ''dev*'' (commence), ''*dev'' (finit) |
| Range | ''[val1 ... val2]'' entre crochets, exact only |
| Null | ''fieldname is null'' |
| Date | yyyy-mm-dd, UTC |
<WRAP round important>
Comparaisons ''<'', ''>'', ''>='', ''<='' : **uniquement** sur ''asset.riskScore''. Pour les versions de softs → ranges ''[16.0 ... 20.0]''.
</WRAP>
===== 5. Hiérarchie Operating System =====
^ Champ ^ Valeurs / Usage ^
| ''operatingSystem'' | Nom complet (ex: ''Red Hat Enterprise Linux 9.7'') |
| ''operatingSystem.category'' | Windows, Unix, Linux, Mac, Embedded (racine) |
| ''operatingSystem.category1'' | Primary (Windows, Linux…) |
| ''operatingSystem.category2'' | Server, Client, Embedded… |
| ''operatingSystem.publisher'' | Microsoft, Red Hat, Canonical… |
| ''operatingSystem.name'' | Windows 10, RHEL… |
| ''operatingSystem.architecture'' | 32-Bit, 64-Bit |
| ''operatingSystem.edition'' | Enterprise, Professional… |
| ''operatingSystem.update'' | SP2… |
| ''operatingSystem.version'' / ''marketVersion'' | Version numérique |
<WRAP round tip>
La forme ''operatingSystem.category:"Linux / Server"'' marche par tolérance Qualys, mais la doc préconise ''category1'' + ''category2'' **séparés** pour une syntaxe propre.
</WRAP>
===== 6. Tokens utiles pour la taxonomie V3 =====
* **Software installé** : ''software:(name:"Cloud Agent")'', ''software:(category:...)''
* **Service tournant** : ''compute.service:(name:...) and compute.service:(status:RUNNING)''
* **Domain role AD** : ''compute.domainRole'' — valeurs possibles :
* Standalone Workstation
* Member Workstation
* Standalone Server
* Member Server
* Backup Domain Controller
* Primary Domain Controller
* **Ports ouverts** : ''asset.openPorts:(port:22)'' — utile pour tagguer "a SSH" ou "a RDP"
* **RiskScore** : ''asset.riskScore:>800'' — pour un tag High Risk
* **Hardware** : ''hardware.category1:Computer'', ''hardware.manufacturer:Dell''
* **Interface** : ''asset.interface:(hostname:...)'', ''asset.interface:(address:...)''
* **BIOS** : ''asset.biosDescription:"..."''
===== 7. Points clés à retenir =====
- ''tags.name'' **fonctionne** dans les règles Asset Inventory, même si pas dans l'autocomplete UI
- ''asset.trackingMethod:QAGENT'' est LE champ natif pour "a un agent" — à privilégier
- Les Rule Engines autres qu'Asset Inventory (Asset Search legacy, Groovy, Regex OS, IP Range) existent mais ne sont **pas** couverts par cette doc QQL — ils ont leur propre syntaxe
- OS category propre = ''category1'' + ''category2'' séparés, pas la concat ''"Linux / Server"''
- Les comparaisons numériques (''<'', ''>'') ne marchent que sur ''asset.riskScore''
===== 8. Plan OS taxonomie (propositions QQL propres) =====
^ Tag ^ Règle QQL ^
| **OS-LIN-SRV** | ''operatingSystem.category1:Linux and operatingSystem.category2:Server and asset.trackingMethod:QAGENT'' |
| **OS-WIN-SRV** | ''operatingSystem.category1:Windows and operatingSystem.category2:Server and asset.trackingMethod:QAGENT'' |
| **OS-WIN-WKS** | ''operatingSystem.category1:Windows and operatingSystem.category2:Client and asset.trackingMethod:QAGENT'' |
| **OS-WIN-DC** | ''operatingSystem.category1:Windows and (compute.domainRole:"Primary Domain Controller" OR compute.domainRole:"Backup Domain Controller")'' |
| **OS-MAC** | ''operatingSystem.category1:Mac and asset.trackingMethod:QAGENT'' |
===== 9. Rule Engines disponibles (rappel) =====
Dans la console Tag Creation (vu UI SANEF) :
* **Asset Inventory** ← QQL moderne, tout ce qui est décrit ci-dessus
* Asset Name Contains
* IP Address In Range(s) / IP Address In Range(s) + Network(s)
* Network Addresses
* Open Ports
* Cloud Asset Search
* Vuln(QID) Exist
* Groovy Scriptlet
* **Asset Search** ← legacy XML, **à éviter**, renvoie l'erreur ''Unexpected character 'o' in prolog''
* Vulnerability Detection Searches
* Container Security
<WRAP round important>
Pour toute règle basée OS / agent / software / service, **toujours prendre Asset Inventory**. Les autres moteurs sont pour des cas spécifiques (scan IP, vulns, containers).
</WRAP>
----
//— Source : Qualys GAV docs ''/gav/latest/search_tips/tag_rules.htm'' — synthèse consolidée 2026-04-22 //

BIN
inputs/tagrule1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
inputs/tagrule2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
inputs/tagrule3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

16
inputs/typeswi.csv Normal file
View File

@ -0,0 +1,16 @@
"Asset ID","Host ID","Asset Name","NetBIOS Name","MAC Address","IPV4 Address","IPV6 Address","Operating System Category","Operating System","Operating System Version","Hardware Category","Hardware","CPU Count","CPU Speed (MHz)","CPU Description","Total Memory (MB)","BIOS Description","BIOS Serial Number","BIOS Asset Tag","Timezone","Last System Boot","Last Logged On User","Inventory Source","Agent ID","Inventory Created On","Inventory Last Updated On","Architecture","CriticalityScore","Modules","Tags","TruRisk Score"
"130584077","192833340","node2","","00:50:56:82:d1:ae, 66:2d:bf:44:a6:8b","10.45.2.57,10.233.75.0","fe80::250:56ff:fe82:d1ae,fe80::642d:bfff:fe44:a68b","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3200","Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz","24110","Phoenix Technologies LTD 6.00 12/12/2018","VMware-42 02 b4 9a 31 df 57 07-ae c3 e8 88 b2 b1 e0 ad","No Asset Tag","'+02:00","2025-02-26T17:07:09.000+02:00","zhou","Cloud Agent","929b11d7-0ff3-45ef-880d-69c40d5ab4e5","2022-07-07T11:36:33.000+02:00","2026-04-22T12:37:24.000+02:00","x86_64","2","SCA,VM,PM,GAV","OS-LIN-SRV,TYP-SWI,BDD-POS DYN,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE","342.0"
"197806642","243075126","nvr-spare-sen","NVR-SPARE-SEN","00:50:56:82:1A:CB","10.100.7.252","fe80::7528:d7bc:a9a5:421a","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 45 02 72 5f 3f 0e-c8 a3 5c 8b d7 30 bb 82","NoAssetTag","'+02:00","2026-01-28T15:18:35.000+02:00","Administrateur","Cloud Agent","5b15fe79-3ccc-4ba6-9687-d3908f115a35","2023-11-07T11:15:53.000+02:00","2026-04-22T14:14:29.000+02:00","64-Bit","3","SCA,VM,PM,GAV","TYP-SWI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,OS-WIN-SRV,DEX,NVR","523.0"
"197825360","243087339","nvr-spare-mtz","NVR-SPARE-MTZ","00:50:56:90:03:D9","10.12.7.252","fe80::29ae:1e3:beea:c9ab","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 10 d4 b3 ee b1 58 4b-cd 69 31 aa c7 85 fb eb","NoAssetTag","'+02:00","2026-01-28T12:54:31.000+02:00","Administrateur","Cloud Agent","8471a142-dfda-4b75-8759-ba79f32272e2","2023-11-07T13:29:47.000+02:00","2026-04-22T13:24:30.000+02:00","64-Bit","3","SCA,VM,PM,GAV","OS-WIN-SRV DYN,OS-WIN-SRV,Cloud Agent,Windows Server,DEX,TYP-SWI,NVR","523.0"
"130583362","192832990","node4","","06:ac:38:d5:6c:36, 66:9d:a3:05:39:af, ee:ee:ee:ee:ee:ee, 00:50:56:82:4b:e9","169.254.25.10,10.233.74.64,10.45.2.59","fe80::649d:a3ff:fe05:39af,fe80::ecee:eeff:feee:eeee,fe80::88bd:f1a0:d07e:13cb","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 26 dc 16 dd 43 ed-90 35 76 d2 bb fc 48 d2","No Asset Tag","'+02:00","2026-03-03T15:14:44.000+02:00","cybexpapp","Cloud Agent","43737328-a06b-4ffc-9b9e-0489c15501bf","2022-07-07T11:29:28.000+02:00","2026-04-22T13:51:21.000+02:00","x86_64","2","SCA,VM,PM,GAV","Cloud Agent,Linux Server,OS-LIN-SRV,MID-NGINX DYN,BDD-POS DYN,TYP-SWI,VRF_INCONNUE,Obsolete","341.0"
"198425521","243397942","nvr-spare-eco","NVR-SPARE-ECO","00:50:56:82:1B:0D","10.1.27.252","fe80::59df:b009:bdc0:9fbe","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 85 ba 43 4b 19 23-78 a2 34 50 58 0f d3 7b","NoAssetTag","'+02:00","2026-01-28T11:24:10.000+02:00","Administrateur","Cloud Agent","fc0b4019-8cfe-408c-8bec-c64625fe6b93","2023-11-10T15:50:36.000+02:00","2026-04-22T12:58:38.000+02:00","64-Bit","3","SCA,VM,GAV","TYP-SWI,OS-WIN-SRV,OS-WIN-SRV DYN,Cloud Agent,DEX,NVR","508.0"
"236555919","265282309","nvr-spare-tqx","NVR-SPARE-TQX","00:50:56:82:18:C6","10.1.27.251","fe80::ccab:f6c9:7cd5:aad0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 b0 8c 6c fe 45 4b-27 00 96 ac 2b e3 36 cb","NoAssetTag","'+02:00","2026-01-28T15:24:05.000+02:00","Administrateur","Cloud Agent","6a744aea-c93e-46a4-a30e-78344d97cfd7","2024-05-14T14:37:12.000+02:00","2026-04-22T10:20:22.000+02:00","64-Bit","2","SCA,VM,PM,GAV","TYP-SWI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,OS-WIN-SRV","348.0"
"317343007","327571264","nvr-spare-alb","NVR-SPARE-ALB","00:50:56:90:F2:FD","10.252.17.254","fe80::7095:3fc5:75e6:3265","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2095","Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz","8191","Phoenix Technologies LTD 6.00","VMware-42 10 ff 10 68 f6 38 46-78 2e 56 4d 6c 51 9e a7","NoAssetTag","'+02:00","2026-02-25T12:04:14.000+02:00","Administrateur","Cloud Agent","6147de41-9ae1-4334-b021-5a991c331d04","2025-04-17T08:45:10.000+02:00","2026-04-22T10:15:24.000+02:00","64-Bit","2","SCA,VM,PM,GAV","Cloud Agent,OS-WIN-SRV DYN,TYP-SWI,Péage,OS-WIN-SRV","245.0"
"197807916","243076074","nvr-spare-etv","NVR-SPARE-ETV","00:50:56:82:C1:E6","10.152.7.252","fe80::6c6c:919c:e531:6ba0","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 f1 84 9c e9 64 3c-50 4a 26 e9 a4 30 40 58","NoAssetTag","'+02:00","2026-01-28T12:50:40.000+02:00","Administrateur","Cloud Agent","fd3dfa9d-76ec-43cb-a898-50f8cd06b8ec","2023-11-07T11:28:24.000+02:00","2026-04-22T14:15:12.000+02:00","64-Bit","3","SCA,VM,PM,GAV","Cloud Agent,TYP-SWI,OS-WIN-SRV DYN,DEX,OS-WIN-SRV,NVR","508.0"
"130584251","192833335","node3","","00:50:56:82:3f:a3, 66:a4:6f:e0:c4:da, ee:ee:ee:ee:ee:ee, 22:09:18:03:9a:76","10.45.2.58,10.233.71.0,169.254.25.10","fe80::c251:be9c:d8ba:9277,fe80::64a4:6fff:fee0:c4da,fe80::ecee:eeff:feee:eeee","Linux / Server","The CentOS Project CentOS 7.9 (2009)","7.9","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","2400","Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz","24110","Phoenix Technologies LTD 6.00 11/12/2020","VMware-42 02 37 fd 56 01 65 85-f2 6f 3d 1f d8 40 d0 c6","No Asset Tag","'+02:00","2025-10-08T13:43:03.000+02:00","cybexpapp","Cloud Agent","3d718006-e555-46cc-b3f8-d1a8be458214","2022-07-07T11:37:04.000+02:00","2026-04-22T13:36:12.000+02:00","x86_64","2","SCA,VM,PM,GAV","TYP-SWI,BDD-POS DYN,VRF_INCONNUE,MID-NGINX DYN,OS-LIN-SRV,Obsolete,Cloud Agent,Linux Server","245.0"
"187710898","242960762","nvr-spare-beu","NVR-SPARE-BEU","00:50:56:82:F9:00","10.217.33.252","fe80::48e8:6230:d795:7e8","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 88 78 e1 0e 1d 1a-a2 1d de 15 e7 e6 ad ba","NoAssetTag","'+02:00","2026-02-03T11:51:43.000+02:00","Administrateur","Cloud Agent","e0362cd2-9080-46f7-8d39-374914806cb9","2023-09-13T18:51:25.000+02:00","2026-04-22T12:43:46.000+02:00","64-Bit","3","SCA,VM,GAV","DEX,NVR,OS-WIN-SRV DYN,Cloud Agent,OS-WIN-SRV,TYP-SWI","509.0"
"187719047","242979015","nvr-spare-mon","NVR-SPARE-MON","00:50:56:82:F4:AD","10.210.27.252","fe80::e93c:8368:73c2:e341","Windows / Server","Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit","1809","Virtualized / Virtual Machine","VMware VMware Virtual Platform Virtual Machine","4","3192","Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz","16383","Phoenix Technologies LTD 6.00","VMware-42 02 c1 69 93 94 35 ef-9e 76 dc ad 91 fc fb a8","NoAssetTag","'+02:00","2026-01-28T13:06:14.000+02:00","Administrateur","Cloud Agent","46c7b828-103e-472e-ad79-c05498fd6117","2023-09-13T19:53:46.000+02:00","2026-04-16T14:47:46.000+02:00","64-Bit","3","SCA,VM,GAV","NVR,Cloud Agent,DEX,OS-WIN-SRV DYN,TYP-SWI,OS-WIN-SRV","508.0"
"154878292","208504014","nac.sanef.fr","","","10.44.2.100","","/ Unidentified","UNKNOWN","","Unidentified / Unidentified","Unidentified","","","","","","","","'+01:00","","","Cloud Agent","9bca7598-3d2b-458d-9b2f-f5daf301e1f7","2023-01-10T16:49:15.000+02:00","2025-03-13T06:20:03.000+02:00","x64","2","SCA,VM,GAV","Cloud Agent,Linux Server,TYP-SWI","0.0"
"158130579","210892023","nmonucv2","NMONUCV2","00:90:FB:2A:3B:C9","10.229.17.33","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","TYP-SWI,Forescout","0.0"
"158077389","210846968","ndoz2ecv3","NDOZ2ECV3","00:90:FB:34:C0:D3","10.217.40.35","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,TYP-SWI","0.0"
"157994329","210806295","nchnucv2","NCHNUCV2","00:90:FB:34:C0:F5","10.217.25.31","","Windows / Client","Microsoft Windows XP (5.1)","5.1","Computers / Unidentified","Computers","","","","","","","","","","","","","","","","4","VM,GAV","Forescout,TYP-SWI","0.0"
1 Asset ID Host ID Asset Name NetBIOS Name MAC Address IPV4 Address IPV6 Address Operating System Category Operating System Operating System Version Hardware Category Hardware CPU Count CPU Speed (MHz) CPU Description Total Memory (MB) BIOS Description BIOS Serial Number BIOS Asset Tag Timezone Last System Boot Last Logged On User Inventory Source Agent ID Inventory Created On Inventory Last Updated On Architecture CriticalityScore Modules Tags TruRisk Score
2 130584077 192833340 node2 00:50:56:82:d1:ae, 66:2d:bf:44:a6:8b 10.45.2.57,10.233.75.0 fe80::250:56ff:fe82:d1ae,fe80::642d:bfff:fe44:a68b Linux / Server The CentOS Project CentOS 7.9 (2009) 7.9 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3200 Intel(R) Xeon(R) CPU E5-2667 v3 @ 3.20GHz 24110 Phoenix Technologies LTD 6.00 12/12/2018 VMware-42 02 b4 9a 31 df 57 07-ae c3 e8 88 b2 b1 e0 ad No Asset Tag '+02:00 2025-02-26T17:07:09.000+02:00 zhou Cloud Agent 929b11d7-0ff3-45ef-880d-69c40d5ab4e5 2022-07-07T11:36:33.000+02:00 2026-04-22T12:37:24.000+02:00 x86_64 2 SCA,VM,PM,GAV OS-LIN-SRV,TYP-SWI,BDD-POS DYN,Obsolete,Cloud Agent,Linux Server,VRF_INCONNUE 342.0
3 197806642 243075126 nvr-spare-sen NVR-SPARE-SEN 00:50:56:82:1A:CB 10.100.7.252 fe80::7528:d7bc:a9a5:421a Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3192 Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz 16383 Phoenix Technologies LTD 6.00 VMware-42 02 45 02 72 5f 3f 0e-c8 a3 5c 8b d7 30 bb 82 NoAssetTag '+02:00 2026-01-28T15:18:35.000+02:00 Administrateur Cloud Agent 5b15fe79-3ccc-4ba6-9687-d3908f115a35 2023-11-07T11:15:53.000+02:00 2026-04-22T14:14:29.000+02:00 64-Bit 3 SCA,VM,PM,GAV TYP-SWI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,OS-WIN-SRV,DEX,NVR 523.0
4 197825360 243087339 nvr-spare-mtz NVR-SPARE-MTZ 00:50:56:90:03:D9 10.12.7.252 fe80::29ae:1e3:beea:c9ab Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3192 Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz 16383 Phoenix Technologies LTD 6.00 VMware-42 10 d4 b3 ee b1 58 4b-cd 69 31 aa c7 85 fb eb NoAssetTag '+02:00 2026-01-28T12:54:31.000+02:00 Administrateur Cloud Agent 8471a142-dfda-4b75-8759-ba79f32272e2 2023-11-07T13:29:47.000+02:00 2026-04-22T13:24:30.000+02:00 64-Bit 3 SCA,VM,PM,GAV OS-WIN-SRV DYN,OS-WIN-SRV,Cloud Agent,Windows Server,DEX,TYP-SWI,NVR 523.0
5 130583362 192832990 node4 06:ac:38:d5:6c:36, 66:9d:a3:05:39:af, ee:ee:ee:ee:ee:ee, 00:50:56:82:4b:e9 169.254.25.10,10.233.74.64,10.45.2.59 fe80::649d:a3ff:fe05:39af,fe80::ecee:eeff:feee:eeee,fe80::88bd:f1a0:d07e:13cb Linux / Server The CentOS Project CentOS 7.9 (2009) 7.9 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 2400 Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz 24110 Phoenix Technologies LTD 6.00 11/12/2020 VMware-42 02 26 dc 16 dd 43 ed-90 35 76 d2 bb fc 48 d2 No Asset Tag '+02:00 2026-03-03T15:14:44.000+02:00 cybexpapp Cloud Agent 43737328-a06b-4ffc-9b9e-0489c15501bf 2022-07-07T11:29:28.000+02:00 2026-04-22T13:51:21.000+02:00 x86_64 2 SCA,VM,PM,GAV Cloud Agent,Linux Server,OS-LIN-SRV,MID-NGINX DYN,BDD-POS DYN,TYP-SWI,VRF_INCONNUE,Obsolete 341.0
6 198425521 243397942 nvr-spare-eco NVR-SPARE-ECO 00:50:56:82:1B:0D 10.1.27.252 fe80::59df:b009:bdc0:9fbe Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3192 Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz 16383 Phoenix Technologies LTD 6.00 VMware-42 02 85 ba 43 4b 19 23-78 a2 34 50 58 0f d3 7b NoAssetTag '+02:00 2026-01-28T11:24:10.000+02:00 Administrateur Cloud Agent fc0b4019-8cfe-408c-8bec-c64625fe6b93 2023-11-10T15:50:36.000+02:00 2026-04-22T12:58:38.000+02:00 64-Bit 3 SCA,VM,GAV TYP-SWI,OS-WIN-SRV,OS-WIN-SRV DYN,Cloud Agent,DEX,NVR 508.0
7 236555919 265282309 nvr-spare-tqx NVR-SPARE-TQX 00:50:56:82:18:C6 10.1.27.251 fe80::ccab:f6c9:7cd5:aad0 Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3192 Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz 16383 Phoenix Technologies LTD 6.00 VMware-42 02 b0 8c 6c fe 45 4b-27 00 96 ac 2b e3 36 cb NoAssetTag '+02:00 2026-01-28T15:24:05.000+02:00 Administrateur Cloud Agent 6a744aea-c93e-46a4-a30e-78344d97cfd7 2024-05-14T14:37:12.000+02:00 2026-04-22T10:20:22.000+02:00 64-Bit 2 SCA,VM,PM,GAV TYP-SWI,Cloud Agent,Windows Server,OS-WIN-SRV DYN,OS-WIN-SRV 348.0
8 317343007 327571264 nvr-spare-alb NVR-SPARE-ALB 00:50:56:90:F2:FD 10.252.17.254 fe80::7095:3fc5:75e6:3265 Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8389) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 2095 Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz 8191 Phoenix Technologies LTD 6.00 VMware-42 10 ff 10 68 f6 38 46-78 2e 56 4d 6c 51 9e a7 NoAssetTag '+02:00 2026-02-25T12:04:14.000+02:00 Administrateur Cloud Agent 6147de41-9ae1-4334-b021-5a991c331d04 2025-04-17T08:45:10.000+02:00 2026-04-22T10:15:24.000+02:00 64-Bit 2 SCA,VM,PM,GAV Cloud Agent,OS-WIN-SRV DYN,TYP-SWI,Péage,OS-WIN-SRV 245.0
9 197807916 243076074 nvr-spare-etv NVR-SPARE-ETV 00:50:56:82:C1:E6 10.152.7.252 fe80::6c6c:919c:e531:6ba0 Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3192 Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz 16383 Phoenix Technologies LTD 6.00 VMware-42 02 f1 84 9c e9 64 3c-50 4a 26 e9 a4 30 40 58 NoAssetTag '+02:00 2026-01-28T12:50:40.000+02:00 Administrateur Cloud Agent fd3dfa9d-76ec-43cb-a898-50f8cd06b8ec 2023-11-07T11:28:24.000+02:00 2026-04-22T14:15:12.000+02:00 64-Bit 3 SCA,VM,PM,GAV Cloud Agent,TYP-SWI,OS-WIN-SRV DYN,DEX,OS-WIN-SRV,NVR 508.0
10 130584251 192833335 node3 00:50:56:82:3f:a3, 66:a4:6f:e0:c4:da, ee:ee:ee:ee:ee:ee, 22:09:18:03:9a:76 10.45.2.58,10.233.71.0,169.254.25.10 fe80::c251:be9c:d8ba:9277,fe80::64a4:6fff:fee0:c4da,fe80::ecee:eeff:feee:eeee Linux / Server The CentOS Project CentOS 7.9 (2009) 7.9 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 2400 Intel(R) Xeon(R) Silver 4314 CPU @ 2.40GHz 24110 Phoenix Technologies LTD 6.00 11/12/2020 VMware-42 02 37 fd 56 01 65 85-f2 6f 3d 1f d8 40 d0 c6 No Asset Tag '+02:00 2025-10-08T13:43:03.000+02:00 cybexpapp Cloud Agent 3d718006-e555-46cc-b3f8-d1a8be458214 2022-07-07T11:37:04.000+02:00 2026-04-22T13:36:12.000+02:00 x86_64 2 SCA,VM,PM,GAV TYP-SWI,BDD-POS DYN,VRF_INCONNUE,MID-NGINX DYN,OS-LIN-SRV,Obsolete,Cloud Agent,Linux Server 245.0
11 187710898 242960762 nvr-spare-beu NVR-SPARE-BEU 00:50:56:82:F9:00 10.217.33.252 fe80::48e8:6230:d795:7e8 Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3192 Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz 16383 Phoenix Technologies LTD 6.00 VMware-42 02 88 78 e1 0e 1d 1a-a2 1d de 15 e7 e6 ad ba NoAssetTag '+02:00 2026-02-03T11:51:43.000+02:00 Administrateur Cloud Agent e0362cd2-9080-46f7-8d39-374914806cb9 2023-09-13T18:51:25.000+02:00 2026-04-22T12:43:46.000+02:00 64-Bit 3 SCA,VM,GAV DEX,NVR,OS-WIN-SRV DYN,Cloud Agent,OS-WIN-SRV,TYP-SWI 509.0
12 187719047 242979015 nvr-spare-mon NVR-SPARE-MON 00:50:56:82:F4:AD 10.210.27.252 fe80::e93c:8368:73c2:e341 Windows / Server Microsoft Windows Server 2019 Standard (1809 Build 17763.8276) 64-Bit 1809 Virtualized / Virtual Machine VMware VMware Virtual Platform Virtual Machine 4 3192 Intel(R) Xeon(R) Silver 4215R CPU @ 3.20GHz 16383 Phoenix Technologies LTD 6.00 VMware-42 02 c1 69 93 94 35 ef-9e 76 dc ad 91 fc fb a8 NoAssetTag '+02:00 2026-01-28T13:06:14.000+02:00 Administrateur Cloud Agent 46c7b828-103e-472e-ad79-c05498fd6117 2023-09-13T19:53:46.000+02:00 2026-04-16T14:47:46.000+02:00 64-Bit 3 SCA,VM,GAV NVR,Cloud Agent,DEX,OS-WIN-SRV DYN,TYP-SWI,OS-WIN-SRV 508.0
13 154878292 208504014 nac.sanef.fr 10.44.2.100 / Unidentified UNKNOWN Unidentified / Unidentified Unidentified '+01:00 Cloud Agent 9bca7598-3d2b-458d-9b2f-f5daf301e1f7 2023-01-10T16:49:15.000+02:00 2025-03-13T06:20:03.000+02:00 x64 2 SCA,VM,GAV Cloud Agent,Linux Server,TYP-SWI 0.0
14 158130579 210892023 nmonucv2 NMONUCV2 00:90:FB:2A:3B:C9 10.229.17.33 Windows / Client Microsoft Windows XP (5.1) 5.1 Computers / Unidentified Computers 4 VM,GAV TYP-SWI,Forescout 0.0
15 158077389 210846968 ndoz2ecv3 NDOZ2ECV3 00:90:FB:34:C0:D3 10.217.40.35 Windows / Client Microsoft Windows XP (5.1) 5.1 Computers / Unidentified Computers 4 VM,GAV Forescout,TYP-SWI 0.0
16 157994329 210806295 nchnucv2 NCHNUCV2 00:90:FB:34:C0:F5 10.217.25.31 Windows / Client Microsoft Windows XP (5.1) 5.1 Computers / Unidentified Computers 4 VM,GAV Forescout,TYP-SWI 0.0

64
send_docx.py Normal file
View File

@ -0,0 +1,64 @@
"""Send the SANEF Qualys V3 docx to khalid.moutaouakil-ext@sanef.com via Gmail SMTP."""
import os
import smtplib
import ssl
from email.message import EmailMessage
from pathlib import Path
SENDER = "kalid.moutaouakil@gmail.com"
RECIPIENT = "khalid.moutaouakil-ext@sanef.com"
ATTACHMENTS = [
(Path(r"C:\Claude\sanef\QL\docs\SANEF_Qualys_V3_Resume_Vigilance.docx"),
"vnd.openxmlformats-officedocument.wordprocessingml.document"),
(Path(r"C:\Claude\sanef\QL\docs\SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx"),
"vnd.openxmlformats-officedocument.spreadsheetml.sheet"),
]
password = os.environ.get("GMAIL_APP_PASSWORD")
if not password:
raise SystemExit("GMAIL_APP_PASSWORD non defini dans l'environnement")
password = password.replace(" ", "")
msg = EmailMessage()
msg["From"] = SENDER
msg["To"] = RECIPIENT
msg["Subject"] = "SANEF Qualys V3 - Resume d'execution + points de vigilance (mise a jour)"
msg.set_content(
"Bonjour Khalid,\n\n"
"En piece jointe le resume d'execution mis a jour de la taxonomie Qualys V3.\n\n"
"Modifications par rapport a la version precedente :\n"
" - Renommage TYP -> EQT (Equipement) : EQT-SRV, EQT-VIR, EQT-SWI\n"
" - Correction ENV-TST : exclusion des postes Superviseur Peage (svp*),\n"
" le tag passe de ~180 a 83 assets coherents\n"
" - Meme correction appliquee a EQT-SRV (and not asset.name:svp*)\n"
" - Ajout d'une decouverte technique en section 1.2 sur le conflit svp*\n"
" - Section 4 Annexes retiree (la reference complete est dans le xlsx joint)\n\n"
"Egalement en piece jointe : SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx\n"
"(reference complete : 23 tags dynamiques + 7 statiques + prefixes manuels)\n\n"
"Le document conserve les sections 2 (points de vigilance) et 3 (TODO).\n\n"
"Cordialement,\n"
"SECOPS\n"
)
for path, subtype in ATTACHMENTS:
if not path.exists():
raise SystemExit(f"Fichier introuvable : {path}")
with path.open("rb") as f:
msg.add_attachment(
f.read(),
maintype="application",
subtype=subtype,
filename=path.name,
)
ctx = ssl.create_default_context()
with smtplib.SMTP("smtp.gmail.com", 587, timeout=30) as s:
s.ehlo()
s.starttls(context=ctx)
s.ehlo()
s.login(SENDER, password)
s.send_message(msg)
for p, _ in ATTACHMENTS:
print(f" - {p.name} ({p.stat().st_size} bytes)")
print(f"Mail envoye a {RECIPIENT}")

59
send_xlsx.py Normal file
View File

@ -0,0 +1,59 @@
"""Send the SANEF Qualys V3 xlsx to khalid.moutaouakil-ext@sanef.com via Gmail SMTP.
App Password lu depuis variable d'env GMAIL_APP_PASSWORD (jamais en dur dans le script).
"""
import os
import smtplib
import ssl
from email.message import EmailMessage
from pathlib import Path
SENDER = "kalid.moutaouakil@gmail.com"
RECIPIENT = "khalid.moutaouakil-ext@sanef.com"
ATTACHMENT = Path(r"C:\Claude\sanef\QL\docs\SANEF_Qualys_Tags_V3_RuleTypes_v2.xlsx")
password = os.environ.get("GMAIL_APP_PASSWORD")
if not password:
raise SystemExit("GMAIL_APP_PASSWORD non defini dans l'environnement")
password = password.replace(" ", "") # Gmail App Password sans espaces
msg = EmailMessage()
msg["From"] = SENDER
msg["To"] = RECIPIENT
msg["Subject"] = "SANEF Qualys - Tags V3 (taxonomie complete + descriptions)"
msg.set_content(
"Bonjour Khalid,\n\n"
"En piece jointe le tableau de reference de la taxonomie Qualys V3 :\n"
" - Feuille 1 : 23 tags dynamiques (OS, EQT, ENV, POS, NOM-LEGACY, TAG-EMV, TAG-OBS) avec couleurs, descriptions et requetes QQL\n"
" - Feuille 2 : 7 tags statiques (TAG-SED, TAG-SEI, TAG-ELS, TAG-DEC, TAG-INT, TAG-SIC, TAG-SIA)\n"
" - Feuille 3 : prefixes a creer manuellement (APP, BDD, VRF, MID, VULN)\n\n"
"Mises a jour de cette version :\n"
" - Renommage TYP -> EQT (Equipement)\n"
" - Descriptions OS-* et EQT-* harmonisees\n"
" - ENV-TST corrige : exclusion des postes Superviseur Peage (svp*)\n"
" - EQT-SRV idem (and not asset.name:svp*)\n\n"
"Cordialement,\n"
"SECOPS\n"
)
if not ATTACHMENT.exists():
raise SystemExit(f"Fichier introuvable : {ATTACHMENT}")
with ATTACHMENT.open("rb") as f:
msg.add_attachment(
f.read(),
maintype="application",
subtype="vnd.openxmlformats-officedocument.spreadsheetml.sheet",
filename=ATTACHMENT.name,
)
ctx = ssl.create_default_context()
with smtplib.SMTP("smtp.gmail.com", 587, timeout=30) as s:
s.ehlo()
s.starttls(context=ctx)
s.ehlo()
s.login(SENDER, password)
s.send_message(msg)
print(f"Mail envoye a {RECIPIENT} avec piece jointe {ATTACHMENT.name} ({ATTACHMENT.stat().st_size} bytes)")