commit 01bcb56ab7e51a01d75ba776d3a1b16be778de2b Author: Mike Phares Date: Mon Jun 3 07:17:41 2024 -0700 2024-06-03 diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..cf34b68 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,255 @@ +[*.md] +end_of_line = crlf +file_header_template = unset +indent_size = 2 +indent_style = space +insert_final_newline = false +root = true +tab_width = 2 +[*.cs] +csharp_indent_block_contents = true +csharp_indent_braces = false +csharp_indent_case_contents = true +csharp_indent_case_contents_when_block = true +csharp_indent_labels = one_less_than_current +csharp_indent_switch_labels = true +csharp_new_line_before_catch = true +csharp_new_line_before_else = true +csharp_new_line_before_finally = true +csharp_new_line_before_members_in_anonymous_types = true +csharp_new_line_before_members_in_object_initializers = true +csharp_new_line_before_open_brace = all +csharp_new_line_between_query_expression_clauses = true +csharp_prefer_braces = false +csharp_prefer_qualified_reference = true:error +csharp_prefer_simple_default_expression = true:warning +csharp_prefer_simple_using_statement = true:warning +csharp_prefer_static_local_function = true:warning +csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async +csharp_preserve_single_line_blocks = true +csharp_preserve_single_line_statements = false +csharp_space_after_cast = false +csharp_space_after_colon_in_inheritance_clause = true +csharp_space_after_comma = true +csharp_space_after_dot = false +csharp_space_after_keywords_in_control_flow_statements = true +csharp_space_after_semicolon_in_for_statement = true +csharp_space_around_binary_operators = before_and_after +csharp_space_around_declaration_statements = false +csharp_space_before_colon_in_inheritance_clause = true +csharp_space_before_comma = false +csharp_space_before_dot = false +csharp_space_before_open_square_brackets = false +csharp_space_before_semicolon_in_for_statement = false +csharp_space_between_empty_square_brackets = false +csharp_space_between_method_call_empty_parameter_list_parentheses = false +csharp_space_between_method_call_name_and_opening_parenthesis = false +csharp_space_between_method_call_parameter_list_parentheses = false +csharp_space_between_method_declaration_empty_parameter_list_parentheses = false +csharp_space_between_method_declaration_name_and_open_parenthesis = false +csharp_space_between_method_declaration_parameter_list_parentheses = false +csharp_space_between_parentheses = false +csharp_space_between_square_brackets = false +csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true +csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true +csharp_style_allow_embedded_statements_on_same_line_experimental = true +csharp_style_conditional_delegate_call = true +csharp_style_deconstructed_variable_declaration = false +csharp_style_expression_bodied_accessors = when_on_single_line:warning +csharp_style_expression_bodied_constructors = when_on_single_line:warning +csharp_style_expression_bodied_indexers = when_on_single_line:warning +csharp_style_expression_bodied_lambdas = when_on_single_line:warning +csharp_style_expression_bodied_local_functions = when_on_single_line:warning +csharp_style_expression_bodied_methods = when_on_single_line:warning +csharp_style_expression_bodied_operators = when_on_single_line:warning +csharp_style_expression_bodied_properties = when_on_single_line:warning +csharp_style_implicit_object_creation_when_type_is_apparent = true:warning +csharp_style_inlined_variable_declaration = false +csharp_style_namespace_declarations = file_scoped:warning +csharp_style_pattern_local_over_anonymous_function = true:warning +csharp_style_pattern_matching_over_as_with_null_check = true:warning +csharp_style_pattern_matching_over_is_with_cast_check = true:warning +csharp_style_prefer_index_operator = true:warning +csharp_style_prefer_not_pattern = true:warning +csharp_style_prefer_null_check_over_type_check = true +csharp_style_prefer_pattern_matching = true:warning +csharp_style_prefer_range_operator = true:warning +csharp_style_prefer_switch_expression = true:warning +csharp_style_throw_expression = true +csharp_style_unused_value_assignment_preference = discard_variable:warning +csharp_style_unused_value_expression_statement_preference = discard_variable:warning +csharp_style_var_elsewhere = false:warning +csharp_style_var_for_built_in_types = false:warning +csharp_style_var_when_type_is_apparent = false:warning +csharp_using_directive_placement = outside_namespace +dotnet_code_quality_unused_parameters = all +dotnet_code_quality_unused_parameters = non_public # IDE0060: Remove unused parameter +dotnet_code_quality.CAXXXX.api_surface = private, internal +dotnet_diagnostic.CA1825.severity = warning # CA1823: Avoid zero-length array allocations +dotnet_diagnostic.CA1829.severity = warning # CA1829: Use Length/Count property instead of Count() when available +dotnet_diagnostic.CA1834.severity = warning # CA1834: Consider using 'StringBuilder.Append(char)' when applicable +dotnet_diagnostic.IDE0001.severity = warning # IDE0001: Simplify name +dotnet_diagnostic.IDE0004.severity = warning # IDE0004: Cast is redundant. +dotnet_diagnostic.IDE0002.severity = warning # Simplify (member access) - System.Version.Equals("1", "2"); Version.Equals("1", "2"); +dotnet_diagnostic.IDE0005.severity = warning # Using directive is unnecessary +dotnet_diagnostic.IDE0031.severity = warning # Use null propagation (IDE0031) +dotnet_diagnostic.IDE0047.severity = warning # IDE0047: Parentheses can be removed +dotnet_diagnostic.IDE0049.severity = warning # Use language keywords instead of framework type names for type references (IDE0049) +dotnet_diagnostic.IDE0060.severity = warning # IDE0060: Remove unused parameter +dotnet_naming_rule.abstract_method_should_be_pascal_case.severity = warning +dotnet_naming_rule.abstract_method_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.abstract_method_should_be_pascal_case.symbols = abstract_method +dotnet_naming_rule.class_should_be_pascal_case.severity = warning +dotnet_naming_rule.class_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.class_should_be_pascal_case.symbols = class +dotnet_naming_rule.delegate_should_be_pascal_case.severity = warning +dotnet_naming_rule.delegate_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.delegate_should_be_pascal_case.symbols = delegate +dotnet_naming_rule.enum_should_be_pascal_case.severity = warning +dotnet_naming_rule.enum_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.enum_should_be_pascal_case.symbols = enum +dotnet_naming_rule.event_should_be_pascal_case.severity = warning +dotnet_naming_rule.event_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.event_should_be_pascal_case.symbols = event +dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning +dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i +dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface +dotnet_naming_rule.method_should_be_pascal_case.severity = warning +dotnet_naming_rule.method_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.method_should_be_pascal_case.symbols = method +dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning +dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members +dotnet_naming_rule.private_method_should_be_pascal_case.severity = warning +dotnet_naming_rule.private_method_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.private_method_should_be_pascal_case.symbols = private_method +dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.severity = warning +dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.style = private_of_internal_field +dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.symbols = private_or_internal_field +dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.severity = warning +dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.style = private_of_internal_field +dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.symbols = private_or_internal_static_field +dotnet_naming_rule.property_should_be_pascal_case.severity = warning +dotnet_naming_rule.property_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.property_should_be_pascal_case.symbols = property +dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.severity = warning +dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.style = private_of_internal_field +dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.symbols = public_or_protected_field +dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning +dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field +dotnet_naming_rule.static_method_should_be_pascal_case.severity = warning +dotnet_naming_rule.static_method_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.static_method_should_be_pascal_case.symbols = static_method +dotnet_naming_rule.struct_should_be_pascal_case.severity = warning +dotnet_naming_rule.struct_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.struct_should_be_pascal_case.symbols = struct +dotnet_naming_rule.types_should_be_pascal_case.severity = warning +dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case +dotnet_naming_rule.types_should_be_pascal_case.symbols = types +dotnet_naming_style.begins_with_i.capitalization = pascal_case +dotnet_naming_style.begins_with_i.required_prefix = I +dotnet_naming_style.begins_with_i.required_suffix = +dotnet_naming_style.begins_with_i.word_separator = +dotnet_naming_style.pascal_case.capitalization = pascal_case +dotnet_naming_style.pascal_case.required_prefix = +dotnet_naming_style.pascal_case.required_suffix = +dotnet_naming_style.pascal_case.word_separator = +dotnet_naming_style.private_of_internal_field.capitalization = pascal_case +dotnet_naming_style.private_of_internal_field.required_prefix = _ +dotnet_naming_style.private_of_internal_field.required_suffix = +dotnet_naming_style.private_of_internal_field.word_separator = +dotnet_naming_symbols.abstract_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.abstract_method.applicable_kinds = method +dotnet_naming_symbols.abstract_method.required_modifiers = abstract +dotnet_naming_symbols.class.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.class.applicable_kinds = class +dotnet_naming_symbols.class.required_modifiers = +dotnet_naming_symbols.delegate.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.delegate.applicable_kinds = delegate +dotnet_naming_symbols.delegate.required_modifiers = +dotnet_naming_symbols.enum.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.enum.applicable_kinds = enum +dotnet_naming_symbols.enum.required_modifiers = +dotnet_naming_symbols.event.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.event.applicable_kinds = event +dotnet_naming_symbols.event.required_modifiers = +dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.interface.applicable_kinds = interface +dotnet_naming_symbols.interface.required_modifiers = +dotnet_naming_symbols.method.applicable_accessibilities = public +dotnet_naming_symbols.method.applicable_kinds = method +dotnet_naming_symbols.method.required_modifiers = +dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method +dotnet_naming_symbols.non_field_members.required_modifiers = +dotnet_naming_symbols.private_method.applicable_accessibilities = private +dotnet_naming_symbols.private_method.applicable_kinds = method +dotnet_naming_symbols.private_method.required_modifiers = +dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected +dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field +dotnet_naming_symbols.private_or_internal_field.required_modifiers = +dotnet_naming_symbols.private_or_internal_static_field.applicable_accessibilities = internal, private, private_protected +dotnet_naming_symbols.private_or_internal_static_field.applicable_kinds = field +dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = static +dotnet_naming_symbols.property.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.property.applicable_kinds = property +dotnet_naming_symbols.property.required_modifiers = +dotnet_naming_symbols.public_or_protected_field.applicable_accessibilities = public, protected +dotnet_naming_symbols.public_or_protected_field.applicable_kinds = field +dotnet_naming_symbols.public_or_protected_field.required_modifiers = +dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.static_field.applicable_kinds = field +dotnet_naming_symbols.static_field.required_modifiers = static +dotnet_naming_symbols.static_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.static_method.applicable_kinds = method +dotnet_naming_symbols.static_method.required_modifiers = static +dotnet_naming_symbols.struct.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.struct.applicable_kinds = struct +dotnet_naming_symbols.struct.required_modifiers = +dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected +dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum +dotnet_naming_symbols.types.required_modifiers = +dotnet_remove_unnecessary_suppression_exclusions = 0 +dotnet_separate_import_directive_groups = false +dotnet_sort_system_directives_first = false +dotnet_style_allow_multiple_blank_lines_experimental = false:warning +dotnet_style_allow_statement_immediately_after_block_experimental = true +dotnet_style_coalesce_expression = true +dotnet_style_collection_initializer = true:warning +dotnet_style_explicit_tuple_names = true:warning +dotnet_style_namespace_match_folder = true +dotnet_style_null_propagation = true:warning +dotnet_style_object_initializer = true:warning +dotnet_style_operator_placement_when_wrapping = beginning_of_line +dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity +dotnet_style_parentheses_in_other_operators = never_if_unnecessary +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity +dotnet_style_predefined_type_for_locals_parameters_members = true +dotnet_style_predefined_type_for_member_access = true:warning +dotnet_style_prefer_auto_properties = true:warning +dotnet_style_prefer_compound_assignment = true:warning +dotnet_style_prefer_conditional_expression_over_assignment = false +dotnet_style_prefer_conditional_expression_over_return = false +dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning +dotnet_style_prefer_inferred_tuple_names = true:warning +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning +dotnet_style_prefer_simplified_boolean_expressions = true:warning +dotnet_style_prefer_simplified_interpolation = true +dotnet_style_qualification_for_event = false:error +dotnet_style_qualification_for_field = false +dotnet_style_qualification_for_method = false:error +dotnet_style_qualification_for_property = false:error +dotnet_style_readonly_field = true:warning +dotnet_style_require_accessibility_modifiers = for_non_interface_members +end_of_line = crlf +file_header_template = unset +indent_size = 4 +indent_style = space +insert_final_newline = false +root = true +tab_width = 4 +# https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1822 +# https://github.com/dotnet/aspnetcore/blob/main/.editorconfig +# https://github.com/dotnet/project-system/blob/main/.editorconfig \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fe5307d --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +.eva +.Fab +.iteraplan +.kanbn +.stfolder +.stignore +.vscode/Helper/** + +node_modules + +incoming +outgoing + +*.xls +*.xlsx + +*sync-con-flict-2023* + +sync.ffs_db \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..ff73823 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,14 @@ +# to exclude Obsidian workspace settings (including plugin and hotkey configurations) +.obsidian/* +!.obsidian/hotkeys.json +!.obsidian/app.json +!.obsidian/community-plugins.json +!.obsidian/core-plugins.json +!.obsidian/graph.json +!.obsidian/appearance.json + +**/.vscode/* + +*.json + +*.zip \ No newline at end of file diff --git a/.vscode/638245815760743870.json b/.vscode/638245815760743870.json new file mode 100644 index 0000000..b0eb578 --- /dev/null +++ b/.vscode/638245815760743870.json @@ -0,0 +1,1408 @@ +[ + { + "id": "d4be1723-7b89-412b-a53e-01c55c21e087", + "name": "MET08THFTIRQS408M", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/d4be1723-7b89-412b-a53e-01c55c21e087", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 332269, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRQS408M", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRQS408M", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRQS408M", + "isDisabled": false + }, + { + "id": "be60a336-7ed1-4689-aa15-032a7f84db04", + "name": "MET08PLMAPRPM", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/be60a336-7ed1-4689-aa15-032a7f84db04", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 104162, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMAPRPM", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMAPRPM", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMAPRPM", + "isDisabled": false + }, + { + "id": "3a0c22a2-221b-4e60-8d29-037938e5e353", + "name": "MET08ANLYSDIFAAST230", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/3a0c22a2-221b-4e60-8d29-037938e5e353", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 274730, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08ANLYSDIFAAST230", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08ANLYSDIFAAST230", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08ANLYSDIFAAST230", + "isDisabled": false + }, + { + "id": "2cb52b83-e70b-4058-862d-04ac8288ab28", + "name": "MET08DDINCAN8620", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/2cb52b83-e70b-4058-862d-04ac8288ab28", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 112822, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDINCAN8620", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDINCAN8620", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDINCAN8620", + "isDisabled": false + }, + { + "id": "b3c0c863-3fc6-4a25-b7a1-15851d098cf6", + "name": "Barcode-Server", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/b3c0c863-3fc6-4a25-b7a1-15851d098cf6", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "size": 0, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Server", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Server", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Server", + "isDisabled": false + }, + { + "id": "007824d4-98c4-4a0e-880d-1cca800bf9ac", + "name": "MET08VPDSUBCON", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/007824d4-98c4-4a0e-880d-1cca800bf9ac", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 83388, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08VPDSUBCON", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08VPDSUBCON", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08VPDSUBCON", + "isDisabled": false + }, + { + "id": "df82e46d-3b85-4dd2-988f-1ddc62fd5eda", + "name": "Leominster-Serial-Log-Framework-461", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/df82e46d-3b85-4dd2-988f-1ddc62fd5eda", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 2710839, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Leominster-Serial-Log-Framework-461", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Leominster-Serial-Log-Framework-461", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Leominster-Serial-Log-Framework-461", + "isDisabled": false + }, + { + "id": "da70256c-8163-4931-9869-2889920efc15", + "name": "OpenInsight", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/da70256c-8163-4931-9869-2889920efc15", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 12010577, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight", + "isDisabled": false + }, + { + "id": "d238426d-85cb-4db1-b96c-2a001f14b5f9", + "name": "MET08RESIHGCV", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/d238426d-85cb-4db1-b96c-2a001f14b5f9", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 295907, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIHGCV", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIHGCV", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIHGCV", + "isDisabled": false + }, + { + "id": "e8ee6f7e-0d76-4a72-960e-2ace9a00d50a", + "name": "Mesa-Backlog", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/e8ee6f7e-0d76-4a72-960e-2ace9a00d50a", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 224490, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Backlog", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Backlog", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Backlog", + "isDisabled": false + }, + { + "id": "e69b9ccb-a743-40b6-950c-2c621bb7c55a", + "name": "FI-Operations", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/e69b9ccb-a743-40b6-950c-2c621bb7c55a", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 665554, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/FI-Operations", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/FI-Operations", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/FI-Operations", + "isDisabled": false + }, + { + "id": "2acf347e-dde5-4987-9e2e-2fcb5d85f483", + "name": "APC-Viewer", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/2acf347e-dde5-4987-9e2e-2fcb5d85f483", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 1321338, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/APC-Viewer", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/APC-Viewer", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/APC-Viewer", + "isDisabled": false + }, + { + "id": "6a01b238-5e86-4288-9f9b-32227404639f", + "name": "Scan-Simulation", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/6a01b238-5e86-4288-9f9b-32227404639f", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 24891, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Scan-Simulation", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Scan-Simulation", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Scan-Simulation", + "isDisabled": false + }, + { + "id": "f3cca049-65e1-4adc-ae2d-340e85014297", + "name": "MesaFabApproval", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/f3cca049-65e1-4adc-ae2d-340e85014297", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 50432429, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MesaFabApproval", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MesaFabApproval", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MesaFabApproval", + "isDisabled": false + }, + { + "id": "96fddeb2-1b5f-48ef-92eb-36835269a4c6", + "name": "FabApprovalJobSchedulerUI", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/96fddeb2-1b5f-48ef-92eb-36835269a4c6", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 1671993, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/FabApprovalJobSchedulerUI", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/FabApprovalJobSchedulerUI", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/FabApprovalJobSchedulerUI", + "isDisabled": false + }, + { + "id": "21763b0b-c390-461d-bda7-37df2fea02f4", + "name": "Tool-Setpoint-Calculator", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/21763b0b-c390-461d-bda7-37df2fea02f4", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/development", + "size": 289902, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Tool-Setpoint-Calculator", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Tool-Setpoint-Calculator", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Tool-Setpoint-Calculator", + "isDisabled": false + }, + { + "id": "6de0e64c-5ef9-44f2-acf7-38e103454268", + "name": "MET08BVHGPROBE", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/6de0e64c-5ef9-44f2-acf7-38e103454268", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 95824, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08BVHGPROBE", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08BVHGPROBE", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08BVHGPROBE", + "isDisabled": false + }, + { + "id": "6bc3e663-ef21-4fe2-b568-394d7530fff7", + "name": "SSRReport", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/6bc3e663-ef21-4fe2-b568-394d7530fff7", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 952490, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/SSRReport", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/SSRReport", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/SSRReport", + "isDisabled": false + }, + { + "id": "1040203a-1e93-4c85-9fad-395370ea0869", + "name": "MET08THFTIRSTRATUS", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/1040203a-1e93-4c85-9fad-395370ea0869", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 398957, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRSTRATUS", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRSTRATUS", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRSTRATUS", + "isDisabled": false + }, + { + "id": "a98fc3c2-8683-4ee0-ac97-3b70db8d12d7", + "name": "MET08RESIMAPCDE", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/a98fc3c2-8683-4ee0-ac97-3b70db8d12d7", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 393692, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIMAPCDE", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIMAPCDE", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIMAPCDE", + "isDisabled": false + }, + { + "id": "e8dc93f8-b81d-4217-9aee-3d313824abe3", + "name": "gittest", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/e8dc93f8-b81d-4217-9aee-3d313824abe3", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 747, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/gittest", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/gittest", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/gittest", + "isDisabled": false + }, + { + "id": "5ba8df29-91f8-402f-a390-42adb4435360", + "name": "MET08NDFRESIMAP151C", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/5ba8df29-91f8-402f-a390-42adb4435360", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 86756, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08NDFRESIMAP151C", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08NDFRESIMAP151C", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08NDFRESIMAP151C", + "isDisabled": false + }, + { + "id": "00fdf5a7-7377-4675-a24c-48f84b0958dc", + "name": "DEP08EGANAIXG5", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/00fdf5a7-7377-4675-a24c-48f84b0958dc", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 473558, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08EGANAIXG5", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/DEP08EGANAIXG5", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08EGANAIXG5", + "isDisabled": false + }, + { + "id": "9853f1fe-bfb8-49f1-9005-4cb2ee2304cb", + "name": "MesaReportingServices", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/9853f1fe-bfb8-49f1-9005-4cb2ee2304cb", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 3591628, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MesaReportingServices", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MesaReportingServices", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MesaReportingServices", + "isDisabled": false + }, + { + "id": "3ae125f0-9e70-4d4d-9539-50c53898953c", + "name": "MET08XRDXPERTPROMRDXL", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/3ae125f0-9e70-4d4d-9539-50c53898953c", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 114269, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08XRDXPERTPROMRDXL", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08XRDXPERTPROMRDXL", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08XRDXPERTPROMRDXL", + "isDisabled": false + }, + { + "id": "1499340e-b829-47b7-9283-5234dc63247e", + "name": "RDS_Info", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/1499340e-b829-47b7-9283-5234dc63247e", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 465424, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/RDS_Info", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/RDS_Info", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/RDS_Info", + "isDisabled": false + }, + { + "id": "bf39657a-1f3a-4da9-9a94-565578b0e4a4", + "name": "MET08PRFUSB4000", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/bf39657a-1f3a-4da9-9a94-565578b0e4a4", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 150707, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PRFUSB4000", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08PRFUSB4000", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PRFUSB4000", + "isDisabled": false + }, + { + "id": "4d36f7b9-2bc4-44cc-ae1f-579d0966d1d7", + "name": "MET08MESMICROSCOPE", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/4d36f7b9-2bc4-44cc-ae1f-579d0966d1d7", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 85494, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08MESMICROSCOPE", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08MESMICROSCOPE", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08MESMICROSCOPE", + "isDisabled": false + }, + { + "id": "aa0e7b43-8e86-45ec-aa07-5da83820e5c9", + "name": "MonALibrary", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/aa0e7b43-8e86-45ec-aa07-5da83820e5c9", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 192502, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MonALibrary", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MonALibrary", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MonALibrary", + "isDisabled": false + }, + { + "id": "ba70ac5a-c632-45e1-9588-619367bee5ca", + "name": "EAF-Viewer", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/ba70ac5a-c632-45e1-9588-619367bee5ca", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 1838846, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EAF-Viewer", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/EAF-Viewer", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EAF-Viewer", + "isDisabled": false + }, + { + "id": "d81253ec-2070-4a1e-809c-682e8a83dc29", + "name": "DEP08SIASM", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/d81253ec-2070-4a1e-809c-682e8a83dc29", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 2204321, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIASM", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIASM", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIASM", + "isDisabled": false + }, + { + "id": "b176730d-30aa-49ee-af08-712b9bfee7c9", + "name": "OpenInsight Monitoring", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/b176730d-30aa-49ee-af08-712b9bfee7c9", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 6113652, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight%20Monitoring", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight%20Monitoring", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight%20Monitoring", + "isDisabled": false + }, + { + "id": "01ae751b-ebd7-425d-ba42-75398150c4bb", + "name": "DEP08SIHTRPLC", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/01ae751b-ebd7-425d-ba42-75398150c4bb", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 123645, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIHTRPLC", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIHTRPLC", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIHTRPLC", + "isDisabled": false + }, + { + "id": "6dd9fffc-42c8-455c-8e44-75f0ebb91076", + "name": "PDF-Text-Stripper", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/6dd9fffc-42c8-455c-8e44-75f0ebb91076", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 14776, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/PDF-Text-Stripper", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/PDF-Text-Stripper", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/PDF-Text-Stripper", + "isDisabled": false + }, + { + "id": "c97375fb-d1c3-4107-ab91-76d77cfbd1af", + "name": "OI-Wizard", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/c97375fb-d1c3-4107-ab91-76d77cfbd1af", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 1568519, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI-Wizard", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/OI-Wizard", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI-Wizard", + "isDisabled": false + }, + { + "id": "6bf89583-501f-45c5-a08f-864b18466e7b", + "name": "EC", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/6bf89583-501f-45c5-a08f-864b18466e7b", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 154650, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EC", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/EC", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EC", + "isDisabled": false + }, + { + "id": "6c5e8764-48b7-48d8-af73-8c04f224b9c8", + "name": "OldFabApprovalJobScheduler", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/6c5e8764-48b7-48d8-af73-8c04f224b9c8", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 10314222, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OldFabApprovalJobScheduler", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/OldFabApprovalJobScheduler", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OldFabApprovalJobScheduler", + "isDisabled": false + }, + { + "id": "5341e00a-f6c1-441a-8e8b-9076d40ef832", + "name": "MET08RESISRP2100", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/5341e00a-f6c1-441a-8e8b-9076d40ef832", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 153395, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESISRP2100", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESISRP2100", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESISRP2100", + "isDisabled": false + }, + { + "id": "8568ce2c-a4b3-4a7d-8cb1-91c298e64a1f", + "name": "OI-Metrology", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/8568ce2c-a4b3-4a7d-8cb1-91c298e64a1f", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 10796634, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI-Metrology", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/OI-Metrology", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI-Metrology", + "isDisabled": false + }, + { + "id": "c44d2661-57cd-43c0-9626-925b38013aea", + "name": "Fab-2-Approval-System", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/c44d2661-57cd-43c0-9626-925b38013aea", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 6679198, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Fab-2-Approval-System", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Fab-2-Approval-System", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Fab-2-Approval-System", + "isDisabled": false + }, + { + "id": "9ac8cc24-fb43-47ee-ad8e-946c7592bee9", + "name": "Expose-MyIT", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/9ac8cc24-fb43-47ee-ad8e-946c7592bee9", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/development", + "size": 268473, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Expose-MyIT", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Expose-MyIT", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Expose-MyIT", + "isDisabled": false + }, + { + "id": "acca16f5-e74a-40a7-b898-9516cebbff19", + "name": "Form_0311", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/acca16f5-e74a-40a7-b898-9516cebbff19", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 237866, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Form_0311", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Form_0311", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Form_0311", + "isDisabled": false + }, + { + "id": "e2105381-74f0-40f8-9deb-9f6a8ed8b02b", + "name": "File-Folder-Helper", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/e2105381-74f0-40f8-9deb-9f6a8ed8b02b", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 86256, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/File-Folder-Helper", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/File-Folder-Helper", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/File-Folder-Helper", + "isDisabled": false + }, + { + "id": "f6678df9-d77f-4db1-9b50-a5e26b189120", + "name": "BaGet", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/f6678df9-d77f-4db1-9b50-a5e26b189120", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/Development", + "size": 979136, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/BaGet", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/BaGet", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/BaGet", + "isDisabled": false + }, + { + "id": "7eef2bc0-1037-4048-b88e-ac07ccd2d645", + "name": "MET08EBEAMINTEGRITY26", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/7eef2bc0-1037-4048-b88e-ac07ccd2d645", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 87883, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08EBEAMINTEGRITY26", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08EBEAMINTEGRITY26", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08EBEAMINTEGRITY26", + "isDisabled": false + }, + { + "id": "feca0b0d-58dd-4034-9cfc-added1f80010", + "name": "MET08PLMPPLATO", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/feca0b0d-58dd-4034-9cfc-added1f80010", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 100131, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMPPLATO", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMPPLATO", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMPPLATO", + "isDisabled": false + }, + { + "id": "f6e75d15-3608-4816-b331-affe698cb8d0", + "name": "Mesa-Goto", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/f6e75d15-3608-4816-b331-affe698cb8d0", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 36040, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Goto", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Goto", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Goto", + "isDisabled": false + }, + { + "id": "5a116746-269a-4960-99a5-b486c183a161", + "name": "NGINX-Conf", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/5a116746-269a-4960-99a5-b486c183a161", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 60050, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/NGINX-Conf", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/NGINX-Conf", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/NGINX-Conf", + "isDisabled": false + }, + { + "id": "f47382a5-fabe-4e46-9e66-b7ecabb3bc0f", + "name": "Intra-Client", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/f47382a5-fabe-4e46-9e66-b7ecabb3bc0f", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 22766, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Intra-Client", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Intra-Client", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Intra-Client", + "isDisabled": false + }, + { + "id": "4afc882e-eba9-4302-8e65-c1537c0d007e", + "name": "SQDS", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/4afc882e-eba9-4302-8e65-c1537c0d007e", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 94546350, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/SQDS", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/SQDS", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/SQDS", + "isDisabled": false + }, + { + "id": "d9dd6755-02b8-4136-a777-c40a8672da55", + "name": "MET08UVH44GS100M", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/d9dd6755-02b8-4136-a777-c40a8672da55", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 86553, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08UVH44GS100M", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08UVH44GS100M", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08UVH44GS100M", + "isDisabled": false + }, + { + "id": "5733920c-3a29-4ab5-8a02-c8293261e3dc", + "name": "Clipboard-Console", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/5733920c-3a29-4ab5-8a02-c8293261e3dc", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 14230, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Clipboard-Console", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Clipboard-Console", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Clipboard-Console", + "isDisabled": false + }, + { + "id": "d3863a97-e090-4d7b-b326-c96b836efa8e", + "name": "MESAFIBACKLOG", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/d3863a97-e090-4d7b-b326-c96b836efa8e", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/Development", + "size": 269294, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MESAFIBACKLOG", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MESAFIBACKLOG", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MESAFIBACKLOG", + "isDisabled": false + }, + { + "id": "4c11543d-1722-4a06-b93b-c99df96d4883", + "name": "MET08HALLHL5580", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/4c11543d-1722-4a06-b93b-c99df96d4883", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 92025, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08HALLHL5580", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08HALLHL5580", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08HALLHL5580", + "isDisabled": false + }, + { + "id": "759a0be0-e8e1-487c-af36-cbf844267776", + "name": "EDA-Viewer", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/759a0be0-e8e1-487c-af36-cbf844267776", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 965883, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EDA-Viewer", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/EDA-Viewer", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EDA-Viewer", + "isDisabled": false + }, + { + "id": "bca41d77-0f9a-44d8-a618-d0e45df326ba", + "name": "MET08WGEOMX203641Q", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/bca41d77-0f9a-44d8-a618-d0e45df326ba", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 90996, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08WGEOMX203641Q", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08WGEOMX203641Q", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08WGEOMX203641Q", + "isDisabled": false + }, + { + "id": "ac8714ac-7ce3-4feb-bb6c-d2c583c97093", + "name": "MET08AFMD3100", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/ac8714ac-7ce3-4feb-bb6c-d2c583c97093", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 90634, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08AFMD3100", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08AFMD3100", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08AFMD3100", + "isDisabled": false + }, + { + "id": "add0667d-c44e-4c5b-bd9f-d72b18502201", + "name": "Barcode-Host", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/add0667d-c44e-4c5b-bd9f-d72b18502201", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 112797, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Host", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Host", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Host", + "isDisabled": false + }, + { + "id": "6eeb8f75-2860-4088-97c6-d79635c95035", + "name": "MET08DDUPSP1TBI", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/6eeb8f75-2860-4088-97c6-d79635c95035", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 388673, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSP1TBI", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSP1TBI", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSP1TBI", + "isDisabled": false + }, + { + "id": "cdf99f45-537a-46c4-9aeb-dc1d4499622f", + "name": "NGINdeX.io", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/cdf99f45-537a-46c4-9aeb-dc1d4499622f", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 1436115, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/NGINdeX.io", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/NGINdeX.io", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/NGINdeX.io", + "isDisabled": false + }, + { + "id": "4f22de19-17d1-4be7-99f1-dfac846ca23b", + "name": "MET08DDUPSFS6420", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/4f22de19-17d1-4be7-99f1-dfac846ca23b", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 352257, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSFS6420", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSFS6420", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSFS6420", + "isDisabled": false + }, + { + "id": "aeb3af03-9b25-455b-9449-e04fab3825d8", + "name": "VSCode-Kanbn", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/aeb3af03-9b25-455b-9449-e04fab3825d8", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 69563199, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/VSCode-Kanbn", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/VSCode-Kanbn", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/VSCode-Kanbn", + "isDisabled": false + }, + { + "id": "df9c2abe-7fff-423f-b659-e0c1336ff954", + "name": "YODA-Viewer", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/df9c2abe-7fff-423f-b659-e0c1336ff954", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 269591, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/YODA-Viewer", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/YODA-Viewer", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/YODA-Viewer", + "isDisabled": false + }, + { + "id": "81ff9e68-97ed-4c01-b8b0-eb8e5191d520", + "name": "OI Barcode", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/81ff9e68-97ed-4c01-b8b0-eb8e5191d520", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 748, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI%20Barcode", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/OI%20Barcode", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI%20Barcode", + "isDisabled": false + }, + { + "id": "c2a9bf87-c02b-4259-9e58-f21425e58aa7", + "name": "Centered-Content-Angular", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/c2a9bf87-c02b-4259-9e58-f21425e58aa7", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 308224, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Centered-Content-Angular", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Centered-Content-Angular", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Centered-Content-Angular", + "isDisabled": false + }, + { + "id": "f4d8f61d-74cf-40a5-93c8-f56aad712792", + "name": "MET08CVHGPROBE802B150", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/f4d8f61d-74cf-40a5-93c8-f56aad712792", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 92766, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08CVHGPROBE802B150", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/MET08CVHGPROBE802B150", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08CVHGPROBE802B150", + "isDisabled": false + }, + { + "id": "d141debc-12bc-4d9a-9d5e-fbf0553ec013", + "name": "Web-Barcode-Scanner", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/50d42a4e-e8f9-4499-8a02-3b6616c2cf39/_apis/git/repositories/d141debc-12bc-4d9a-9d5e-fbf0553ec013", + "project": { + "id": "50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "name": "Mesa_FI", + "description": "KLUSA ID: 18020006, 18090020\n\nTo track Mesa FI solution development", + "url": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/_apis/projects/50d42a4e-e8f9-4499-8a02-3b6616c2cf39", + "state": 1, + "revision": 35148345, + "visibility": 0, + "lastUpdateTime": "\/Date(1681494182757)\/" + }, + "defaultBranch": "refs/heads/master", + "size": 731237, + "remoteUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Web-Barcode-Scanner", + "sshUrl": "ssh://tfs.intra.infineon.com:22/tfs/ManufacturingIT/Mesa_FI/_git/Web-Barcode-Scanner", + "webUrl": "https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Web-Barcode-Scanner", + "isDisabled": false + } +] \ No newline at end of file diff --git a/.vscode/a.md b/.vscode/a.md new file mode 100644 index 0000000..bb50428 --- /dev/null +++ b/.vscode/a.md @@ -0,0 +1,260 @@ +--- +type: "note" +created: "2023-09-25T16:09:52.211Z" +updated: "2023-09-25T16:09:52.211Z" +--- + +# a + +- [x] [IteraPlan-Application-SPS](https://iteraplan.icp.infineon.com/client/#/list/InformationSystem?columns=fieldK%2FidP%2FwidthK%2F100B%2FfieldK%2FnameP%2FsortK%2FascP%2FwidthK%2F210P%2FsortedAtK%2F0B%2FfieldK%2FApplication%20OwnerP%2FfieldIdK%2F36376P%2FwidthK%2F234P%2FresizedK%2FtrueB%2FfieldK%2FPersonal%20Data%20Protection%20ClassP%2FfieldIdK%2F781P%2FwidthK%2F130B%2FfieldK%2FDevelopment%20modelP%2FfieldIdK%2F19P%2FwidthK%2F130B%2FfieldK%2FLocation%20of%20InstancesP%2FfieldIdK%2F11821P%2FwidthK%2F130B%2FfieldK%2FEVA%20InstancesP%2FfieldIdK%2F36901P%2FwidthK%2F300B%2FfieldK%2FdescriptionP%2FwidthK%2F536&filter=enumS%2FApplication%20OwnerS%2FcontainsS%2F(mjarsey1)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(buuck)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(belasco)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(phares)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(ouellette)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(tuckerc)S%2F36376O%2FtextS%2FEVA%20InstancesS%2FcontainsS%2F(MES-OP%2520FE)S%2F36901O%2FtextS%2FEVA%20InstancesS%2FcontainsS%2F(MES)S%2F36901O%2FtextS%2FEVA%20InstancesS%2FcontainsS%2FBE%2520(LEO)S%2F36901C%2FC%2FC%2F&treeViewMode=list&squuid=a1ec05c0-e06c-4b1b-83c2-63557693aa74) + +- [x] [IteraPlan-ItService-SPS](https://iteraplan.icp.infineon.com/client/#/list/ItService?columns=fieldK%2FnameP%2FsortK%2FascP%2FwidthK%2F210B%2FfieldK%2FResponsibleP%2FfieldIdK%2F52400P%2FwidthK%2F210B%2FfieldK%2FbusinessMappingsP%2FwidthK%2F340C%2FfieldK%2FBusinessMapping.informationSystemP%2FgroupNameK%2FbusinessMappingsP%2FwidthK%2F340B%2FfieldK%2FdescriptionP%2FwidthK%2F670B%2FfieldK%2FinformationSystemDomainAssociationsP%2FwidthK%2F340C%2FfieldK%2FIsd2ItsAssociation.informationSystemDomainP%2FgroupNameK%2FinformationSystemDomainAssociationsP%2FwidthK%2F340&treeViewMode=list&squuid=a1ec05c0-e06c-4b1b-83c2-63557693aa74&filter=textS%2FResponsibleS%2Fstarts_withS%2FJarseyS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FBuuckS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FBelascoS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FPharesS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FOuelletteS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FTuckerS%2F52400C%2FC%2FC%2F) + +```json +[ + { + "AssetId": "CMDB50000472120", + "Name": "Camstar BE (LEO)" + }, + { + "AssetId": "CMDB50000538323", + "Name": "Camstar BE (LEO) - DEV" + }, + { + "AssetId": "CMDB50000538322", + "Name": "Camstar BE (LEO) - STAGE" + }, + { + "AssetId": "CMDB50000407673", + "Name": "Camstar BE (LEO) - TEST" + }, + { + "AssetId": "CMDB50000538324", + "Name": "Camstar BE (LEO) - TRAIN" + }, + { + "AssetId": "CMDB50000471547", + "Name": "Camstar BE Testing (LEO) - TEST" + }, + { + "AssetId": "CMDB50000742506", + "Name": "CEP ISIG (LEO-IT)" + }, + { + "AssetId": "CMDB50000404289", + "Name": "DHCP Service (LEO)" + }, + { + "AssetId": "CMDB50000517431", + "Name": "DNS (LEO)" + }, + { + "AssetId": "CMDB50000486060", + "Name": "FileBeat Service (LEO)" + }, + { + "AssetId": "CMDB50000396995", + "Name": "Foreman Smart-Proxy (LEO)" + }, + { + "AssetId": "CMDB50000408309", + "Name": "Lenel (LEO)" + }, + { + "AssetId": "CMDB50000520249", + "Name": "MySQL System (LEO)" + }, + { + "AssetId": "CMDB50000581041", + "Name": "PLATO e1ns HiRel (LEO)" + }, + { + "AssetId": "CMDB50000396998", + "Name": "Puppetmaster (LEO)" + }, + { + "AssetId": "CMDB50000616359", + "Name": "Tableau Tableau - LEO (LEO)" + } +] +``` + +```json +[ + { + "AssetId": "CMDB50000543577", + "Name": "APC Trend (MES-OP FE)" + }, + { + "AssetId": "CMDB50000543575", + "Name": "APC Trend (MES-OP FE) - DEV" + }, + { + "AssetId": "CMDB50000543576", + "Name": "APC Trend (MES-OP FE) - STAGE" + }, + { + "AssetId": "CMDB50000668512", + "Name": "CEP ISIG (MES-IT)" + }, + { + "AssetId": "CMDB50000404290", + "Name": "DHCP Service (MES)" + }, + { + "AssetId": "CMDB50000517430", + "Name": "DNS (MES)" + }, + { + "AssetId": "CMDB50000546134", + "Name": "EA Data Framework (MES-OP FE)" + }, + { + "AssetId": "CMDB50000546133", + "Name": "EA Data Framework (MES-OP FE) - STAGE" + }, + { + "AssetId": "CMDB50000546132", + "Name": "EA Data Framework (MES-OP FE) - TEST" + }, + { + "AssetId": "CMDB50000476423", + "Name": "EAF (MES-OP FE)" + }, + { + "AssetId": "CMDB50000476218", + "Name": "EAF (MES-OP FE) - DEV" + }, + { + "AssetId": "CMDB50000476422", + "Name": "EAF (MES-OP FE) - STAGE" + }, + { + "AssetId": "CMDB50000476421", + "Name": "EAF GaN (MES-OP FE)" + }, + { + "AssetId": "CMDB50000476418", + "Name": "EAF GaN (MES-OP FE) - STAGE" + }, + { + "AssetId": "CMDB50000635197", + "Name": "Fab Approval System (MES-OP FE)" + }, + { + "AssetId": "CMDB50000586793", + "Name": "FabTime (MES-OP FE)" + }, + { + "AssetId": "CMDB50000486062", + "Name": "FileBeat Service (MES)" + }, + { + "AssetId": "CMDB50000523179", + "Name": "Foreman Smart-Proxy (MES)" + }, + { + "AssetId": "CMDB50000540745", + "Name": "HA Remote Daemon (MES)" + }, + { + "AssetId": "CMDB50000550133", + "Name": "HA Remote Daemon (MES) - DEV" + }, + { + "AssetId": "CMDB50000550134", + "Name": "HA Remote Daemon (MES) - STAGE" + }, + { + "AssetId": "CMDB50000558927", + "Name": "InfinityQS GaN (MES-OP FE)" + }, + { + "AssetId": "CMDB50000558926", + "Name": "InfinityQS Si (MES-OP FE)" + }, + { + "AssetId": "CMDB50000390440", + "Name": "Lenel (MES)" + }, + { + "AssetId": "CMDB50000465401", + "Name": "OpenInsight (MES-OP FE)" + }, + { + "AssetId": "CMDB50000558634", + "Name": "OpenInsight (MES-OP FE) - DEV" + }, + { + "AssetId": "CMDB50000595513", + "Name": "OpenLDAP Service (MES)" + }, + { + "AssetId": "CMDB50000523181", + "Name": "Puppetmaster (MES)" + }, + { + "AssetId": "CMDB50000540746", + "Name": "YODA (MES)" + }, + { + "AssetId": "CMDB50000543579", + "Name": "YODA (MES-OP FE) - DEV" + }, + { + "AssetId": "CMDB50000543578", + "Name": "YODA (MES-OP FE) - STAGE" + } +] +``` + +```bash +apc-trend-mes-op-fe +apc-trend-mes-op-fe-dev +apc-trend-mes-op-fe-stage +camstar-be-leo +camstar-be-leo-dev +camstar-be-leo-stage +camstar-be-leo-test +camstar-be-leo-train +camstar-be-testing-leo-test +cep-isig-leo-it +cep-isig-mes-it +dhcp-service-leo +dhcp-service-mes +dns-leo +dns-mes +ea-data-framework-mes-op-fe +ea-data-framework-mes-op-fe-stage +ea-data-framework-mes-op-fe-test +eaf-ga-n-mes-op-fe +eaf-ga-n-mes-op-fe-stage +eaf-mes-op-fe +eaf-mes-op-fe-dev +eaf-mes-op-fe-stage +fab-approval-system-mes-op-fe +fab-time-mes-op-fe +file-beat-service-leo +file-beat-service-mes +foreman-smart-proxy-leo +foreman-smart-proxy-mes +ha-remote-daemon-mes +ha-remote-daemon-mes-dev +ha-remote-daemon-mes-stage +infinity-qs-ga-n-mes-op-fe +infinity-qs-si-mes-op-fe +lenel-leo +lenel-mes +my-sql-system-leo +open-insight-mes-op-fe +open-insight-mes-op-fe-dev +open-insight-metrology-viewer-na-op-fe +open-ldap-service-mes +plato-e1ns-hi-rel-leo +puppetmaster-leo +puppetmaster-mes +tableau-tableau-leo-leo +yoda-mes +yoda-mes-op-fe-dev +yoda-mes-op-fe-stage +``` diff --git a/.vscode/after.ini b/.vscode/after.ini new file mode 100644 index 0000000..050202c --- /dev/null +++ b/.vscode/after.ini @@ -0,0 +1,123 @@ +[Summary] +Total_Server=11 + +[Server1] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.36 +Port1=1,36,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=TENCOR1 + +[Server2] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.37 +Port1=1,37,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=TENCOR2 + +[Server3] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.38 +Port1=1,38,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=TENCOR3 + +[Server4] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.39 +Port1=1,39,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=HGCV1 + +[Server5] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.17 +Port1=1,17,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=HGCV2 + +[Server6] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.40 +Port1=1,40,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=HGCV3 + +[Server7] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.41 +Port1=1,41,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=BIORAD2 + +[Server8] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.42 +Port1=1,42,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=BIORAD3 + +[Server9] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.43 +Port1=1,43,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=CDE2 + +[Server10] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.44 +Port1=1,44,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=Spare + +[Server11] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.45 +Port1=1,45,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=Spare + +[Server12] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.46 +Port1=1,46,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=Spare + +[Server13] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.47 +Port1=1,47,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=Spare + +[Server14] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.48 +Port1=1,48,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=Spare + +[Server15] +APID=0x80005110 +HWID=0x5110 +IP=10.95.154.49 +Port1=1,49,0,0,0,0,0,12,0,3,0,0,5000 +Grouping_Status1=0,0,3 +Alias=Spare + diff --git a/.vscode/c-pfree.md b/.vscode/c-pfree.md new file mode 100644 index 0000000..8482c08 --- /dev/null +++ b/.vscode/c-pfree.md @@ -0,0 +1,48 @@ +--- +type: "note" +created: "2024-04-09T15:33:17.107Z" +updated: "2024-04-09T15:33:31.888Z" +--- + +# c-pfree + +| Percentage | Julian | PMon | Name | +|------------|---------------|--------------|-------------| +| 09 | 1712588400000 | FREE_PERCENT | mestsa05ec | +| 12 | 1712588400000 | FREE_PERCENT | messa012 | +| 16 | 1712588400000 | FREE_PERCENT | messa005 | +| 16 | 1712588400000 | FREE_PERCENT | messa022ec | +| 16 | 1712588400000 | FREE_PERCENT | messa023ec | +| 17 | 1712588400000 | FREE_PERCENT | messa004 | +| 19 | 1712588400000 | FREE_PERCENT | messa016ec | +| 21 | 1712588400000 | FREE_PERCENT | messa019ec | +| 24 | 1712588400000 | FREE_PERCENT | leosatec04 | +| 25 | 1712588400000 | FREE_PERCENT | messa010ec | +| 25 | 1712588400000 | FREE_PERCENT | messa011ec | +| 28 | 1712588400000 | FREE_PERCENT | mestsa006 | +| 28 | 1712588400000 | FREE_PERCENT | mestsa03ec | +| 31 | 1712588400000 | FREE_PERCENT | messa014ec | +| 31 | 1712588400000 | FREE_PERCENT | messa015ec | +| 31 | 1712588400000 | FREE_PERCENT | messa09ec | +| 36 | 1712588400000 | FREE_PERCENT | mestsa07ec | +| 37 | 1712588400000 | FREE_PERCENT | mestsa003 | +| 38 | 1712588400000 | FREE_PERCENT | mestsa02ec | +| 42 | 1712588400000 | FREE_PERCENT | mestsa06ec | +| 43 | 1712588400000 | FREE_PERCENT | messa013ec | +| 43 | 1712588400000 | FREE_PERCENT | messa020ec | +| 43 | 1712588400000 | FREE_PERCENT | mestsa08ec | +| 44 | 1712588400000 | FREE_PERCENT | messa04ec | +| 45 | 1712588400000 | FREE_PERCENT | messbpec01 | +| 46 | 1712588400000 | FREE_PERCENT | messa012ec | +| 46 | 1712588400000 | FREE_PERCENT | messa014 | +| 46 | 1712588400000 | FREE_PERCENT | mestsa004 | +| 52 | 1712588400000 | FREE_PERCENT | messa06ec | +| 54 | 1712588400000 | FREE_PERCENT | messa01ec | +| 55 | 1712588400000 | FREE_PERCENT | messa017 | +| 56 | 1712588400000 | FREE_PERCENT | mestsa005 | +| 57 | 1712588400000 | FREE_PERCENT | leosaec04 | +| 62 | 1712588400000 | FREE_PERCENT | messa010 | +| 63 | 1712588400000 | FREE_PERCENT | mestsa007 | +| 66 | 1712588400000 | FREE_PERCENT | messv03ech1 | +| 66 | 1712588400000 | FREE_PERCENT | mestsv02ec | +| 69 | 1712588400000 | FREE_PERCENT | messv03ech2 | diff --git a/.vscode/c-total.md b/.vscode/c-total.md new file mode 100644 index 0000000..5ca6162 --- /dev/null +++ b/.vscode/c-total.md @@ -0,0 +1,48 @@ +--- +type: "note" +created: "2024-04-09T15:13:47.159Z" +updated: "2024-04-09T15:16:19.071Z" +--- + +# c-total + +| Size | Julian | Name | +|--------------|---------------|-------------| +| 059053699072 | 1712588400000 | messa005 | +| 059053699072 | 1712588400000 | messa012 | +| 063347617792 | 1712588400000 | messa011ec | +| 064422408192 | 1712588400000 | messa004 | +| 064422408192 | 1712588400000 | messa014ec | +| 064422408192 | 1712588400000 | messa015ec | +| 064422408192 | 1712588400000 | messa09ec | +| 064422408192 | 1712588400000 | mestsa006 | +| 064422408192 | 1712588400000 | mestsa02ec | +| 064422408192 | 1712588400000 | mestsa03ec | +| 085250273280 | 1712588400000 | leosatec04 | +| 085251321856 | 1712588400000 | messa019ec | +| 085251321856 | 1712588400000 | mestsa05ec | +| 085251321856 | 1712588400000 | mestsa08ec | +| 085896196096 | 1712588400000 | leosaec04 | +| 085896196096 | 1712588400000 | messa010ec | +| 085896196096 | 1712588400000 | messa04ec | +| 085896196096 | 1712588400000 | messa06ec | +| 091264905216 | 1712588400000 | mestsa07ec | +| 103426289664 | 1712588400000 | messa017 | +| 106726158336 | 1712588400000 | messa010 | +| 106726158336 | 1712588400000 | messa014 | +| 106726158336 | 1712588400000 | messa016ec | +| 106726158336 | 1712588400000 | messa020ec | +| 106726158336 | 1712588400000 | messv03ech1 | +| 106726158336 | 1712588400000 | messv03ech2 | +| 106726158336 | 1712588400000 | mestsa007 | +| 106726158336 | 1712588400000 | mestsa06ec | +| 106726158336 | 1712588400000 | mestsv02ec | +| 107371032576 | 1712588400000 | messa01ec | +| 107371032576 | 1712588400000 | messbpec01 | +| 107371032576 | 1712588400000 | mestsa003 | +| 107371032576 | 1712588400000 | mestsa004 | +| 117463576576 | 1712588400000 | messa022ec | +| 117463576576 | 1712588400000 | messa023ec | +| 128200994816 | 1712588400000 | messa012ec | +| 128200994816 | 1712588400000 | messa013ec | +| 128200994816 | 1712588400000 | mestsa005 | diff --git a/.vscode/d-pfree.md b/.vscode/d-pfree.md new file mode 100644 index 0000000..19a2585 --- /dev/null +++ b/.vscode/d-pfree.md @@ -0,0 +1,48 @@ +--- +type: "note" +created: "2024-04-09T15:33:24.653Z" +updated: "2024-04-09T15:33:31.889Z" +--- + +# d-pfree + +| Percentage | Julian | PMon | Name | +|------------|---------------|--------------|-------------| +| 04 | 1712588400000 | FREE_PERCENT | messa017 | +| 08 | 1712588400000 | FREE_PERCENT | mestsa07ec | +| 13 | 1712588400000 | FREE_PERCENT | messa01ec | +| 13 | 1712588400000 | FREE_PERCENT | mestsa004 | +| 16 | 1712588400000 | FREE_PERCENT | mestsa003 | +| 20 | 1712588400000 | FREE_PERCENT | messa005 | +| 24 | 1712588400000 | FREE_PERCENT | messa010ec | +| 24 | 1712588400000 | FREE_PERCENT | messa012 | +| 34 | 1712588400000 | FREE_PERCENT | mestsa05ec | +| 39 | 1712588400000 | FREE_PERCENT | messa09ec | +| 41 | 1712588400000 | FREE_PERCENT | messa019ec | +| 47 | 1712588400000 | FREE_PERCENT | mestsa08ec | +| 48 | 1712588400000 | FREE_PERCENT | messa011ec | +| 58 | 1712588400000 | FREE_PERCENT | messa06ec | +| 59 | 1712588400000 | FREE_PERCENT | messa04ec | +| 60 | 1712588400000 | FREE_PERCENT | messa010 | +| 65 | 1712588400000 | FREE_PERCENT | messa022ec | +| 68 | 1712588400000 | FREE_PERCENT | mestsa06ec | +| 73 | 1712588400000 | FREE_PERCENT | messv03ech1 | +| 77 | 1712588400000 | FREE_PERCENT | messa016ec | +| 78 | 1712588400000 | FREE_PERCENT | messa004 | +| 80 | 1712588400000 | FREE_PERCENT | mestsa02ec | +| 81 | 1712588400000 | FREE_PERCENT | mestsa006 | +| 83 | 1712588400000 | FREE_PERCENT | mestsa03ec | +| 85 | 1712588400000 | FREE_PERCENT | mestsv02ec | +| 86 | 1712588400000 | FREE_PERCENT | messa014 | +| 90 | 1712588400000 | FREE_PERCENT | messa012ec | +| 91 | 1712588400000 | FREE_PERCENT | messa013ec | +| 91 | 1712588400000 | FREE_PERCENT | mestsa005 | +| 92 | 1712588400000 | FREE_PERCENT | leosaec04 | +| 92 | 1712588400000 | FREE_PERCENT | messa020ec | +| 93 | 1712588400000 | FREE_PERCENT | messa014ec | +| 93 | 1712588400000 | FREE_PERCENT | messa015ec | +| 97 | 1712588400000 | FREE_PERCENT | messbpec01 | +| 98 | 1712588400000 | FREE_PERCENT | leosatec04 | +| 98 | 1712588400000 | FREE_PERCENT | messa023ec | +| 99 | 1712588400000 | FREE_PERCENT | messv03ech2 | +| 99 | 1712588400000 | FREE_PERCENT | mestsa007 | diff --git a/.vscode/d-total.md b/.vscode/d-total.md new file mode 100644 index 0000000..7161cd0 --- /dev/null +++ b/.vscode/d-total.md @@ -0,0 +1,48 @@ +--- +type: "note" +created: "2024-04-09T15:13:47.159Z" +updated: "2024-04-09T15:16:19.071Z" +--- + +# d-total + +| Size | Julian | Name | +|--------------|---------------|--------------------------| +| 018172866560 | 1712588400000 | mestsa003.infineon.com | +| 021472735232 | 1712588400000 | messa011ec.infineon.com | +| 021472735232 | 1712588400000 | messa017.infineon.com | +| 021472735232 | 1712588400000 | mestsa004.infineon.com | +| 032209104896 | 1712588400000 | leosaec04.infineon.com | +| 039647703040 | 1712588400000 | messa010ec.infineon.com | +| 040749756416 | 1712588400000 | mestsa07ec.infineon.com | +| 040796942336 | 1712588400000 | messa09ec.infineon.com | +| 052334424064 | 1712588400000 | messa013ec.infineon.com | +| 052610199552 | 1712588400000 | messa022ec.infineon.com | +| 052610199552 | 1712588400000 | messa023ec.infineon.com | +| 052610199552 | 1712588400000 | mestsa02ec.infineon.com | +| 063347617792 | 1712588400000 | messa012ec.infineon.com | +| 063347617792 | 1712588400000 | mestsa005.infineon.com | +| 075096911872 | 1712588400000 | mestsa06ec.infineon.com | +| 080528535552 | 1712588400000 | messa005.infineon.com | +| 080528535552 | 1712588400000 | messa012.infineon.com | +| 085897244672 | 1712588400000 | messa004.infineon.com | +| 096634662912 | 1712588400000 | messa06ec.infineon.com | +| 106297290752 | 1712588400000 | messa014.infineon.com | +| 106297290752 | 1712588400000 | mestsa05ec.infineon.com | +| 107371032576 | 1712588400000 | messa01ec.infineon.com | +| 107372081152 | 1712588400000 | leosatec04.infineon.com | +| 107372081152 | 1712588400000 | messa04ec.infineon.com | +| 161059110912 | 1712588400000 | messv03ech1.infineon.com | +| 161059110912 | 1712588400000 | messv03ech2.infineon.com | +| 161059172352 | 1712588400000 | mestsv02ec.infineon.com | +| 171795542016 | 1712588400000 | messa019ec.infineon.com | +| 187902717952 | 1712588400000 | mestsa08ec.infineon.com | +| 212597731328 | 1712588400000 | messa015ec.infineon.com | +| 213671473152 | 1712588400000 | messa014ec.infineon.com | +| 213671473152 | 1712588400000 | mestsa006.infineon.com | +| 213671473152 | 1712588400000 | mestsa03ec.infineon.com | +| 214746263552 | 1712588400000 | messa010.infineon.com | +| 214746263552 | 1712588400000 | mestsa007.infineon.com | +| 265208983552 | 1712588400000 | messa020ec.infineon.com | +| 483180670976 | 1712588400000 | messbpec01.infineon.com | +| 526120906752 | 1712588400000 | messa016ec.infineon.com | diff --git a/.vscode/ignore.md b/.vscode/ignore.md new file mode 100644 index 0000000..7532cb9 --- /dev/null +++ b/.vscode/ignore.md @@ -0,0 +1,57 @@ +--- +type: "note" +created: "2024-04-09T15:27:13.186Z" +updated: "2024-04-09T15:27:28.314Z" +--- + +# ignore + +```EC Mapped +messa02ec | IT OS - Utility +messa05ec | EC Utility server +messa08ec | EAF Application Server +messa017ec | EC Web Server +messa018ec | EC Tableau Prod +``` + +```Permissions +mestsa01ec | OpenInisght Dev +``` + +```EC Offline +messa03ec | Sharepoint +messv01ec | MES SQL Prod +mestsv01ec | MES SQL Dev +messd01ec | EC File Server +mestsa04ec | EC Tableau Dev +``` + +```Other +messa009 +mesxs015 +messa1005 +messcec01 +messnec01 +messpec01 +messt6501 +messt6502 +mestsa008 +elsstec101 +leosatec01 +messtec101 +messtec102 +mesxsec011 +mesxsec012 +mesxsec013 +mesxsec014 +mesxvec031 +mesxvec034 +mesxvec035 +loesapaec21 +leosataec21 +loesapaec22 +mesirwfp001 +messv02ech1 +messv02ech2 +isccvmd0af56899 +``` diff --git a/.vscode/mklink.md b/.vscode/mklink.md new file mode 100644 index 0000000..66f6945 --- /dev/null +++ b/.vscode/mklink.md @@ -0,0 +1,35 @@ +--- +type: "note" +created: "2024-01-14T02:17:44.611Z" +updated: "2024-01-14T02:27:47.631Z" +--- + +# mklink + +```bash +mklink /J "D:\Documents\Notes\EC-Documentation\.git" "L:\Git\Notes-EC-Documentation\.git" +mklink /J "D:\Documents\Notes\EC-Documentation\.kanbn" "D:\5-Other-Small\Kanban\EC-Documentation" +mklink /J "D:\Documents\Notes\EC-Documentation\incoming" "D:\Documents\Notes\EC-Documentation\port" +mklink /J "D:\Documents\Notes\EC-Documentation\outgoing" "D:\Documents\Notes\EC-Documentation\port" +``` + +```bash +mklink /J "D:\5-Other-Small\Notes\EC-Documentation\.git" "L:\Git\Notes-EC-Documentation\.git" +mklink /J "D:\5-Other-Small\Notes\EC-Documentation\.kanbn" "D:\5-Other-Small\Kanban\EC-Documentation" +mklink /J "D:\5-Other-Small\Notes\EC-Documentation\incoming" "D:\5-Other-Small\Notes\EC-Documentation\port" +mklink /J "D:\5-Other-Small\Notes\EC-Documentation\outgoing" "D:\5-Other-Small\Notes\EC-Documentation\port" +``` + +```bash +mklink /J "L:\Git\Notes-EC-Documentation\.EC-Documentation\incoming" "D:\5-Other-Small\Notes\EC-Documentation\port" +mklink /J "L:\Git\Notes-EC-Documentation\.EC-Documentation\outgoing" "D:\5-Other-Small\Notes\EC-Documentation\port" +``` + +```bash +git init L:/Git/Notes-EC-Documentation +mklink /J "L:\Git\Notes-EC-Documentation\.EC-Documentation" "D:\5-Other-Small\Notes\EC-Documentation" +mklink /J "D:\5-Other-Small\Notes\EC-Documentation\.git" "L:\Git\Notes-EC-Documentation\.git" +code "L:\Git\Notes-EC-Documentation\.EC-Documentation" +codium "L:\Git\Notes-EC-Documentation\.EC-Documentation" +code-insiders "L:\Git\Notes-EC-Documentation\.EC-Documentation" +``` diff --git a/.vscode/netsh.txt b/.vscode/netsh.txt new file mode 100644 index 0000000..a18cc5c --- /dev/null +++ b/.vscode/netsh.txt @@ -0,0 +1,49 @@ +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.64.131.48 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.64.188.20 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.95.104.253 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.95.140.122 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=104.208.16.90 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.213.69 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.246.69 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.42.16 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.42.18 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.5.93 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.89.179.9 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=152.199.4.33 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=172.23.2.115 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=172.23.4.93 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.108.133 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.109.133 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.110.133 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.111.133 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=192.30.255.113 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.189.173.3 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.131 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.132 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.193 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.194 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.195 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.196 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.42.73.25 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.216 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.217 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.225 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.226 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.227 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.228 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.229 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.230 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.231 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.233 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.235 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.237 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.238 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.239 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.126.62.130 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.126.62.131 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.199 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.202 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.203 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.204 +netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=52.182.141.63 +dir \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..af2cc85 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,76 @@ +{ + "files.eol": "\n", + "[markdown]": { + "editor.wordWrap": "off" + }, + "cSpell.words": [ + "Bianchin", + "CMDB", + "fileshare", + "Infineon", + "messa", + "messdv", + "messv", + "mestsa", + "Ouellette", + "PDSF", + "Phares", + "Syncthing" + ], + "files.exclude": { + "**/node_modules": true + }, + "files.watcherExclude": { + "**/node_modules": true + }, + "foam.files.ignore": [ + ".foam/**/*", + ".stfolder/**/*", + ".UserSecrets/**/*", + "**/_layouts/**/*", + "**/_site/**/*", + "**/.vscode/**/*", + "**/node_modules/**/*" + ], + "kanbn.showBurndownButton": false, + "kanbn.showSprintButton": false, + "foam.links.hover.enable": false, + "foam.placeholders.exclude": [".kanbn/Archive/**/*"], + "foam.orphans.exclude": [ + ".Applications/**/*", + ".DevOps/**/*", + ".Fab/**/*", + ".journal/**/*" + ], + "foam.graph.titleMaxLength": 10, + "foam.graph.style": { + "background": "#202020", + "color-palette-url": "https://coolors.co/palette/f94144-f3722c-f8961e-f9844a-f9c74f-90be6d-43aa8b-4d908e-577590-277da1", + "node": { + "account": "#277DA1", + "database": "#F9844A", + "cep": "#F3722C", + "dns": "#577590", + "fileshare": "#4D908E", + "port": "#43AA8B", + "server": "#90BE6D", + "process": "#F9C74F", + "d": "#F8961E", + "eva": "#F94144", + "topic": "#bc2a3c", + "kanbn": "#ff7b00", + "basic-note": "#773b93", + "daily-note": "#ff9d00", + "note": "#f2cb1d", + "placeholder": "#F94144", + "tag": "#0494c1", + "bug": "#bc2a3c", + "epic": "#ff7b00", + "feature": "#773b93", + "issue": "#ff9d00", + "task": "#f2cb1d", + "test-case": "#ff9d00", + "user-story": "#0494c1" + } + } +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..028653d --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,95 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "File-Folder-Helper AOT s M .Kanbn Index", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/.kanbn", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M .Kanbn Tasks", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/.kanbn/tasks", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M Account", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/account", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M IteraPlan", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/iteraplan -d L:/Git/Notes-EC-Documentation/.EC-Documentation/.iteraplan", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M Database", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/database", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M DNS", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/dns", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M EVA", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/eva -d L:/Git/Notes-EC-Documentation/.EC-Documentation/.eva", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M Index", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/.index", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M Fileshare", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/fileshare", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M Process", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/process", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M Port", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/port", + "problemMatcher": [] + }, + { + "label": "File-Folder-Helper AOT s M Server", + "type": "shell", + "command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/server", + "problemMatcher": [] + }, + { + "label": "Kanbn Console", + "type": "npm", + "script": "kanbn.board", + "problemMatcher": [] + }, + { + "label": "Kanbn Write Boad", + "type": "shell", + "command": "& kanbn board -j | L:/Git/kanbn2md/kanbn2md.exe >.kanbn/board.md", + "problemMatcher": [] + }, + { + "label": "Kanbn Write json", + "type": "npm", + "script": "kanbn.board.json", + "problemMatcher": [] + } + ] +} \ No newline at end of file diff --git a/.vscode/timeline.md b/.vscode/timeline.md new file mode 100644 index 0000000..d97f4bd --- /dev/null +++ b/.vscode/timeline.md @@ -0,0 +1,58 @@ +--- +type: "note" +created: "2023-10-28T04:42:46.814Z" +updated: "2023-11-07T18:45:14.511Z" +--- + +# Timeline + +## Timeline + +* SPC License troubles +* Helping users install Stealth +* Helping users install SPC if they used to use iApps +* Thursday 10 AM fab start +* Thursday 10:01 AM Find missing config change in EDA (fixed and back loaded data within 45 minutes) +- ~~Thursday 10:45 AM Find hardcode reference to ec.local (update and rollout affect instances)~~ +* Find Win NT [SP1], XP [Stratus], 7 [SPV (not impacted)], 10 [SRP ENG] can't access file share +* Thursday 4:30 PM made change SVG - CEP FL to Win 2023 fileshare to support Win NT and Win XP. This change effected 9 nPort devices +* Thursday 4:40 PM SPC (Si) shortcut typo fixed by Charles Lemke +* Restart 9 nPort devices and leave 7 PM Thursday +- ~~Friday 8 AM BioRad bug for 14 point recipes reported due to hardcode reference rollout~~ +* Friday 1 PM Fixed missing config change in OI Metrology Viewer for Viewer to OI +* Friday 12:43 PM made another change SVG - EAF FL to Win 2023 fileshare to support Win NT and Win XP. This change effected 9 nPort devices +* Friday 2 PM made yet another change SVG - CEP Clear Text from EAF to support Win NT and Win XP. This change effected 9 nPort devices +* Friday 9:30 PM restarted becuase of lack of data for 45 minutes on all 9 nPort devices +* Saturday 9:30 AM Surge made last change to allow EAF to read Stratus files from Win 2023 fileshare +* Sunday 10:30 AM added *_ to Thickness 14 point import fixing configuration differences between EC and IFX +* Monday 11 AM Changed EAF only nPort instances to write to EAF agent local drive +* Monday 12 PM two more SVG changes were made and didn't affect nPort EAF instances +* + +## nPort Metrology 9 total + +* Tencor 1, 2, 3 +* CDE 2 +* HgCV 1, 2, 3 +* BioRad 2 and 3 only + +## non-nPort Metrology + +* Straus 4, 5 (2008) +* SP1 (Push button) +* SPV (SECS/GEM) +* SRP + +## Tech + +* Printers out of EC +* Win 20## to 2022 for fileshare +* SVG Stealth + +``` +Protocol Version First Client Version First Server Version +SMB 2.0 Windows Vista Windows Server 2008 +SMB 2.1 Windows 7 Windows Server 2008R2 +SMB 3.0 Windows 8 Windows Server 2012 +SMB 3.1 Windows 10 Windows Server 2016 +``` diff --git a/Databases-Oracle.sv b/Databases-Oracle.sv new file mode 100644 index 0000000..242ed19 --- /dev/null +++ b/Databases-Oracle.sv @@ -0,0 +1,585 @@ +"Account","Login Name","Password","Web Site","Comments" +"EC - Prod - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmesp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmesp-db.ec.local)(port=7001)))(connect_data=(sid=apcmesp))) + +C:\\Users\\ecphares>nslookup apcmesp-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: apcmesp-db.ec.local +Address: 10.95.131.154 + +fdc_admin/M3s_apc_tr3nd_2019!@apcmesp.mes.infineon.com" +"EC - Prod - EDA","edaprod","M3sapc_t3st2019","AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC","edaprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp))) + +C:\\Windows\\system32>D:\\Tmp\\phares\\EDA\\Binaries-FOR-IT-ONLY\\4.7.0\\Server_x86\\AIS.DataFramework.Server.exe -encrypt ******* + +Your encrypted password is: AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC + +C:\\Users\\ecphares>nslookup fimesp-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: fimesp-db.ec.local +Address: 10.95.131.155" +"EC - Prod - Yoda","yodaprod","M3sapc_t3st2019","","yodprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp))) + +C:\\Users\\ecphares>nslookup fimesp-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: fimesp-db.ec.local +Address: 10.95.131.155" +"IFX - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=apcmest))) + +C:\\Users\\phares>nslookup apcmest-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: mesxv035.mes.infineon.com +Address: 10.95.179.45 +Aliases: apcmest-db.mes.infineon.com + +fdc_admin/M3s_apc_tr3nd_2019!@apcmest.mes.infineon.com" +"IFX - EDA","edatest","M3sapc_t3st2019","","edatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest))) + +C:\\Users\\phares>nslookup fimest-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: mesxv034.mes.infineon.com +Address: 10.95.179.44 +Aliases: fimest-db.mes.infineon.com" +"IFX - Yoda","yodatest","M3sapc_t3st2019","","yodatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest))) + +C:\\Users\\phares>nslookup fimest-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: mesxv034.mes.infineon.com +Address: 10.95.179.44 +Aliases: fimest-db.mes.infineon.com" +"EC - Stage - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmess.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmess-db.ec.local)(port=7001)))(connect_data=(sid=apcmess))) + +C:\\Users\\ecphares>nslookup apcmess-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: mesxvec035.ec.local +Address: 10.95.131.45 +Aliases: apcmess-db.ec.local + +fdc_admin/M3s_apc_tr3nd_2019!@apcmess.mes.infineon.com" +"EC - Stage - EDA","edastag","M3sapc_t3st2019","","edastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess))) + +C:\\Users\\ecphares>nslookup fimess-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: mesxvec034.ec.local +Address: 10.95.131.44 +Aliases: fimess-db.ec.local" +"EC - Stage - Yoda","yodastag","M3sapc_t3st2019","","yodastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess))) + +C:\\Users\\ecphares>nslookup fimess-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: mesxvec034.ec.local +Address: 10.95.131.44 +Aliases: fimess-db.ec.local" +"EC - Prod - EAF","eafprod","Mes_E@f2018!","","eafprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafprod-db.ec.local)(port=9151)))(connect_data=(sid=eafprod))) + +C:\\Users\\ecphares>nslookup eafprod-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: eafprod-db.ec.local +Address: 10.95.131.151" +"IFX - Prod - EAF - GaN","ganeafp","Mes_E@f2018!","","ganeafp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafp-db.mes.infineon.com)(port=9151)))(connect_data=(sid=ganeafp))) + +C:\\Users\\phares>nslookup ganeafp-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: ganeafp-db.mes.infineon.com +Address: 10.95.179.151" +"EC - Stage - EAF","eafstag","Mes_E@f2018!","","eafstag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafstag-db.ec.local)(port=9153)))(connect_data=(sid=eafstag))) + +C:\\Users\\ecphares>nslookup eafstag-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: eafstag-db.ec.local +Address: 10.95.131.153" +"IFX - Stage - EAF - GaN","ganeafs","Mes_E@f2018","","ganeafs.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafs-db.mes.infineon.com)(port=9152)))(connect_data=(sid=ganeafs))) + +C:\\Users\\phares>nslookup ganeafs-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: ganeafs-db.mes.infineon.com +Address: 10.95.179.152" +"IFX - EAF - Obsolete","eafdev","Mes_E@f2018!","","FIMEST.MES.INFINEON.COM +EAFDEV +Ix!OCk6zGx!!y2eGQ1:H + +eafdev.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafdev-db.ec.local)(port=9152)))(connect_data=(sid=eafdev))) + +C:\\Users\\phares>nslookup eafdev-db.ec.local +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Non-authoritative answer: +Name: eafdev-db.ec.local +Address: 10.95.131.152" +"APC - List","","","",">----------------------PROD------------------------ +>APC3.3 RBG FE +FDC_ADMIN/fdc_march13_rbg@apcrbg.rbg.infineon.com +FDC_DEV/fdc!fngrwg@apcrbg.rbg.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbg.rbg.infineon.com +FDC_EXTRACTOR/extractor33_rbg@apcrbg.rbg.infineon.com +FDC_V32/DCL_read@apcrbg.rbg.infineon.com +FDC_TREND/fdctrend!global@apcrbg.rbg.infineon.com +FDC_TREND2/trend$user@apcrbg.rbg.infineon.com +FDC_CONFIG/fdcconfig!global@apcrbg.rbg.infineon.com +FDC_CONFIG2/config$user@apcrbg.rbg.infineon.com +APCCHECK/APCCHECK$user@apcrbg.rbg.infineon.com +APCCHECK2/APCCHECK2$user@apcrbg.rbg.infineon.com +OCNS/OCNS$user@apcrbg.rbg.infineon.com +FDC_REPORTING/rep$user@apcrbg.rbg.infineon.com +FDC_EBS/ebs$user@apcrbg.rbg.infineon.com +FDC_ALECS/alecs$user@apcrbg.rbg.infineon.com +FDC_CERBERUS/cerberus_fdc@apcrbg.rbg.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbg.rbg.infineon.com +LOGEVAL/LOGEVAL1qay2wsx@apcrbg.rbg.infineon.com +OLE_ADMIN/yaq1xsw3@apcrbg.rbg.infineon.com +FDC_OPC/)I58n711iD=*snlH3LPg@apcrbg.rbg.infineon.com +FDC_JOB/J0b$U5er123?@apcrbg.rbg.infineon.com +dbl$dwh_rbg$glb_al_apc/dwh_rbg$glb_al_apc18@apcrbg.rbg.infineon.com +>APC3.3 RBG BE +FDC_ADMIN/FL6duKsZ@apcrbgbe.rbg.infineon.com +FDC_DEV/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgbe.rbg.infineon.com +FDC_EXTRACTOR/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_V32/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_TREND/fdctrend!global@apcrbgbe.rbg.infineon.com +FDC_TREND2/trend$user@apcrbgbe.rbg.infineon.com +FDC_CONFIG/fdcconfig!global@apcrbgbe.rbg.infineon.com +FDC_CONFIG2/config$user@apcrbgbe.rbg.infineon.com +APCCHECK/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +APCCHECK2/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +OCNS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_REPORTING/rep$user@apcrbgbe.rbg.infineon.com +FDC_ALECS/alecs$user@apcrbgbe.rbg.infineon.com +FDC_CERBERUS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgbe.rbg.infineon.com +LOGEVAL/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +OLE_ADMIN/cde3vfr4@apcrbgbe.rbg.infineon.com +FDC_JOB/J0b$U5er123?@apcrbgbe.rbg.infineon.com +FDC_BE_CONVERTER/diewdwiiz@apcrbgbe.rbg.infineon.com +>APC3.3 VIH +FDC_ADMIN/fdc_feb14_vih@apcvih.vih.infineon.com +FDC_DEV/fdc!fngrwg@apcvih.vih.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcvih.vih.infineon.com +FDC_EXTRACTOR/fdc!fngrwg@apcvih.vih.infineon.com +FDC_V32/DCL_read@apcvih.vih.infineon.com +FDC_TREND/fdctrend!global@apcvih.vih.infineon.com +FDC_TREND2/trend$user@apcvih.vih.infineon.com +FDC_CONFIG/fdcconfig!global@apcvih.vih.infineon.com +FDC_CONFIG2/config$user@apcvih.vih.infineon.com +APCCHECK/fdc!fngrwg@apcvih.vih.infineon.com +APCCHECK2/fdc!fngrwg@apcvih.vih.infineon.com +OCNS/OCNS$user@apcvih.vih.infineon.com +FDC_REPORTING/rep$user@apcvih.vih.infineon.com +FDC_EBS/ebs$user@apcvih.vih.infineon.com +FDC_ALECS/alecs$user@apcvih.vih.infineon.com +FDC_CERBERUS/cerberus$user@apcvih.vih.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcvih.vih.infineon.com +LOGEVAL/fdc!fngrwg@apcvih.vih.infineon.com +OLE_ADMIN/sVg3YGl@apcvih.vih.infineon.com +FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcvih.vih.infineon.com +FDC_JOB/J0b$U5er123?@apcvih.vih.infineon.com +>APC3.3 SFD200 +FDC_ADMIN/37hLpQb8XuwD@apcdd200.drs.infineon.com +FDC_DEV/EHIWMCZGoGHF@apcdd200.drs.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd200.drs.infineon.com +FDC_EXTRACTOR/Cci4UZdylAup@apcdd200.drs.infineon.com +FDC_V32/fkXdhKGJUTPL@apcdd200.drs.infineon.com +FDC_TREND/fdctrend!global@apcdd200.drs.infineon.com +FDC_TREND2/trend$user@apcdd200.drs.infineon.com +FDC_CONFIG/z7SIdgDGAOrO@apcdd200.drs.infineon.com +FDC_CONFIG2/config$user@apcdd200.drs.infineon.com +APCCHECK/APCCHECK@apcdd200.drs.infineon.com +APCCHECK2/QRBhhVTFleWL@apcdd200.drs.infineon.com +OCNS/64ppQ7TWtEQR@apcdd200.drs.infineon.com +FDC_REPORTING/DrZNjvyC5CvzSOn2@apcdd200.drs.infineon.com +FDC_EBS/8lXRsm14kEaWDs8t@apcdd200.drs.infineon.com +FDC_ALECS/alecs$user@apcdd200.drs.infineon.com +FDC_CERBERUS/JOlpVR10oev9@apcdd200.drs.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd200.drs.infineon.com +LOGEVAL/tdM8qz02mTn4@apcdd200.drs.infineon.com +OLE_ADMIN/uc71LEROXTjgPimq@apcdd200.drs.infineon.com +FDC_OPC/,_7!w,-eqdyEv+1qZX-O@apcdd200.drs.infineon.com +FDC_JOB/J0b$U5er123?@apcdd200.drs.infineon.com +FDC_CA/W7+Y_AYx*9!3mYkyNc-u@apcdd200.drs.infineon.com +FDC_BCC/BoBwathN2e4bKmVg@apcdd200.drs.infineon.com +GMS_MESSENGER/ZsRxBDVyLB0qB9NO@apcdd200.drs.infineon.com +>APC3.3 SFD300 +FDC_ADMIN/PQQE6QhEENKa@apcdd300.drs.infineon.com +FDC_DEV/6mBscwnty39k@apcdd300.drs.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd300.drs.infineon.com +FDC_EXTRACTOR/MeL4MsQZ2KHh@apcdd300.drs.infineon.com +FDC_V32/TyuKR0kAjP3Z@apcdd300.drs.infineon.com +FDC_TREND/fdctrend!global@apcdd300.drs.infineon.com +FDC_TREND2/trend$user@apcdd300.drs.infineon.com +FDC_CONFIG/kZGrBwChZznU@apcdd300.drs.infineon.com +FDC_CONFIG2/config$user@apcdd300.drs.infineon.com +APCCHECK/APCCHECK@apcdd300.drs.infineon.com +APCCHECK2/VvUFTiisOEqB@apcdd300.drs.infineon.com +OCNS/siwpNrWrtTsl@apcdd300.drs.infineon.com +FDC_REPORTING/uV8zSWRRe3Oz6pLl@apcdd300.drs.infineon.com +FDC_EBS/f4WW9m3HTTwfxHlq@apcdd300.drs.infineon.com +FDC_ALECS/alecs$user@apcdd300.drs.infineon.com +FDC_CERBERUS/FtBNWFbLB0pP@apcdd300.drs.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd300.drs.infineon.com +LOGEVAL/otZgN9G9s9Bs@apcdd300.drs.infineon.com +OLE_ADMIN/f58aKtqVoiIanf6P@apcdd300.drs.infineon.com +FDC_OPC/#xG_pT+0#N03GYFBL34K@apcdd300.drs.infineon.com +FDC_JOB/J0b$U5er123?@apcdd300.drs.infineon.com +FDC_BCC/jg9HmphljCDOZT7B@apcdd300.drs.infineon.com +GMS_MESSENGER/Fgp57BOQ8PVeAraB@apcdd300.drs.infineon.com +>APC3.3 WAR +FDC_ADMIN/FL6duKsZ@apcwar.war.infineon.com +FDC_DEV/dbhiw!amfdg@apcwar.war.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwar.war.infineon.com +FDC_EXTRACTOR/dbhiw!amfdg@apcwar.war.infineon.com +FDC_V32/dbhiw!amfdg@apcwar.war.infineon.com +FDC_TREND/fdctrend!global1@apcwar.war.infineon.com +FDC_TREND2/trend$user@apcwar.war.infineon.com +FDC_CONFIG/Fdcconfig!global1@apcwar.war.infineon.com +FDC_CONFIG2/config$user@apcwar.war.infineon.com +APCCHECK/dbhiw!amfdg@apcwar.war.infineon.com +APCCHECK2/dbhiw!amfdg@apcwar.war.infineon.com +OCNS/dbhiw!amfdg@apcwar.war.infineon.com +FDC_REPORTING/rep$user@apcwar.war.infineon.com +FDC_ALECS/alecs$user@apcwar.war.infineon.com +FDC_CERBERUS/dbhiw!amfdg@apcwar.war.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwar.war.infineon.com +LOGEVAL/dbhiw!amfdg@apcwar.war.infineon.com +OLE_ADMIN/cde3vfr4@apcwar.war.infineon.com +FDC_JOB/J0b$U5er123?@apcwar.war.infineon.com +FDC_BE_CONVERTER/diewdwiiz@apcwar.war.infineon.com +>APC3.3 KLM (Kulim) +FDC_ADMIN/fdc01klm@apcklm.klm.infineon.com +FDC_DEV/fdcdevklm@apcklm.klm.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcklm.klm.infineon.com +FDC_EXTRACTOR/fdc01klm@apcklm.klm.infineon.com +FDC_V32/fdc32klm@apcklm.klm.infineon.com +FDC_TREND/fdctrend!global@apcklm.klm.infineon.com +FDC_TREND2/trend01klm@apcklm.klm.infineon.com +FDC_CONFIG/fdc01klm@apcklm.klm.infineon.com +FDC_CONFIG2/fdc01klm@apcklm.klm.infineon.com +APCCHECK/fdc01klm@apcklm.klm.infineon.com +APCCHECK2/fdc01klm@apcklm.klm.infineon.com +OCNS/OCNS01klm@apcklm.klm.infineon.com +FDC_REPORTING/rep$user@apcklm.klm.infineon.com +FDC_EBS/ebs01klm@apcklm.klm.infineon.com +FDC_CERBERUS/cerberus01klm@apcklm.klm.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcklm.klm.infineon.com +LOGEVAL/fdc01klm@apcklm.klm.infineon.com +OLE_ADMIN/ole1!klmXD@apcklm.klm.infineon.com +FDC_JOB/J0b$U5er123?@apcklm.klm.infineon.com +>APC3.3 MKZ (Malacca) +FDC_ADMIN/apcmaladmin@apcmkz.mkz.infineon.com +FDC_DEV/adm$!fdc@apcmkz.mkz.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcmkz.mkz.infineon.com +FDC_EXTRACTOR/adm$!fdc@apcmkz.mkz.infineon.com +FDC_V32/adm$!fdc@apcmkz.mkz.infineon.com +FDC_TREND/fdctrend!global@apcmkz.mkz.infineon.com +FDC_TREND2/t2daC2eyaPuBEsp@apcmkz.mkz.infineon.com +FDC_CONFIG/fdcconfig!global@apcmkz.mkz.infineon.com +FDC_CONFIG2/frAtebracevu3ub@apcmkz.mkz.infineon.com +APCCHECK/apcc100@apcmkz.mkz.infineon.com +APCCHECK2/apcc100@apcmkz.mkz.infineon.com +OCNS/adm$!fdc@apcmkz.mkz.infineon.com +FDC_REPORTING/rep$user@apcmkz.mkz.infineon.com +FDC_CERBERUS/adm$!fdc@apcmkz.mkz.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcmkz.mkz.infineon.com +LOGEVAL/adm$!fdc@apcmkz.mkz.infineon.com +OLE_ADMIN/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com +FDC_JOB/J0b$U5er123?@apcmkz.mkz.infineon.com +FDC_BE_CONVERTER/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com +>APC3.3 SIN (Singapur) +FDC_ADMIN/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_DEV/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcsin.sin.infineon.com +FDC_EXTRACTOR/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_V32/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_TREND/fdctrend!global@apcsin.sin.infineon.com +FDC_TREND2/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_CONFIG/fdcconfig!global@apcsin.sin.infineon.com +FDC_CONFIG2/config$user@apcsin.sin.infineon.com +APCCHECK/dbhiw!amfdg@apcsin.sin.infineon.com +APCCHECK2/dbhiw!amfdg@apcsin.sin.infineon.com +OCNS/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_REPORTING/rep$user@apcsin.sin.infineon.com +FDC_CERBERUS/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcsin.sin.infineon.com +LOGEVAL/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_PARALLEL/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_JOB/J0b$U5er123?@apcsin.sin.infineon.com +>APC3.3 BAT (Batam) +FDC_ADMIN/apcbatadmin@apcbth.bth.infineon.com +FDC_DEV/adm$!fdc@apcbth.bth.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcbth.bth.infineon.com +FDC_EXTRACTOR/adm$!fdc@apcbth.bth.infineon.com +FDC_V32/adm$!fdc@apcbth.bth.infineon.com +FDC_TREND/fdctrend!global@apcbth.bth.infineon.com +FDC_TREND2/Yacreph4@apcbth.bth.infineon.com +FDC_CONFIG/fdcconfig!global@apcbth.bth.infineon.com +FDC_CONFIG2/p5crafRa@apcbth.bth.infineon.com +APCCHECK/apcc100@apcbth.bth.infineon.com +APCCHECK2/HdoUOW*fHf8jNNaO7J#Q@apcbth.bth.infineon.com +OCNS/adm$!fdc@apcbth.bth.infineon.com +FDC_REPORTING/rep$user@apcbth.bth.infineon.com +FDC_CERBERUS/YC{E6j35cwN[wztHGqh5@apcbth.bth.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcbth.bth.infineon.com +LOGEVAL/adm$!fdc@apcbth.bth.infineon.com +FDC_PARALLEL/8uchUwRa@apcbth.bth.infineon.com +OLE_ADMIN/adm$!fdc@apcbth.bth.infineon.com +FDC_JOB/J0b$U5er123?@apcbth.bth.infineon.com +>APC3.3 WUX (Wuxi) +FDC_ADMIN/apcwuxadmin@apcwux.wux.infineon.com +FDC_DEV/adm$!fdc@apcwux.wux.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwux.wux.infineon.com +FDC_EXTRACTOR/adm$!fdc@apcwux.wux.infineon.com +FDC_V32/adm$!fdc@apcwux.wux.infineon.com +FDC_TREND/fdctrend!global@apcwux.wux.infineon.com +FDC_TREND2/frEces5U@apcwux.wux.infineon.com +FDC_CONFIG/fdcconfig!global@apcwux.wux.infineon.com +FDC_CONFIG2/frEces5X@apcwux.wux.infineon.com +APCCHECK/apcc100@apcwux.wux.infineon.com +APCCHECK2/apcc100@apcwux.wux.infineon.com +OCNS/apcwuxOCNS@apcwux.wux.infineon.com +FDC_REPORTING/rep$user@apcwux.wux.infineon.com +FDC_CERBERUS/fdcP@ssw0rd@apcwux.wux.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwux.wux.infineon.com +LOGEVAL/adm$!fdc@apcwux.wux.infineon.com +FDC_PARALLEL/8uchUwRa@apcwux.wux.infineon.com +OLE_ADMIN/8+h!!rRTl]grl9]!p7?L@apcwux.wux.infineon.com +FDC_JOB/J0b$U5er123?@apcwux.wux.infineon.com +FDC_BE_CONVERTER/zo-zJ#gy!M{3DWQSnv]b@apcwux.wux.infineon.com +>----------------------TEST------------------------ +>APC3.3 ICAPCDEV +FDC_ADMIN/ole!fcb789@icapcdev.klu.infineon.com +FDC_DEV/olefcb1@icapcdev.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@icapcdev.klu.infineon.com +FDC_EXTRACTOR/fdc4extor@icapcdev.klu.infineon.com +FDC_TREND/trendexv3@icapcdev.klu.infineon.com +FDC_TREND2/trend$user@icapcdev.klu.infineon.com +FDC_CONFIG/trecovex@icapcdev.klu.infineon.com +FDC_CONFIG2/config$user@icapcdev.klu.infineon.com +fdc_checktool/olefcb1@icapcdev.klu.infineon.com +FDC_ALECS/alecs$user@icapcdev.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@icapcdev.klu.infineon.com +OLE_ADMIN/OLE_ADMIN@icapcdev.klu.infineon.com +FDC_PARALLEL/olefcb1@icapcdev.klu.infineon.com +FDC_JOB/J0b$U5er123?@icapcdev.klu.infineon.com +DWH_SUPPORT/PASSWORT4US@icapcdev.klu.infineon.com +>APC3.3 APCVIHT (ITBox EU) +FDC_ADMIN/fdc_feb14_vih@apcviht.klu.infineon.com +FDC_DEV/fdc!fngrwg@apcviht.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcviht.klu.infineon.com +FDC_EXTRACTOR/fdc!fngrwg@apcviht.klu.infineon.com +FDC_V32/DCL_read@apcviht.klu.infineon.com +FDC_TREND/fdc!fngrwg@apcviht.klu.infineon.com +FDC_TREND2/trend$user@apcviht.klu.infineon.com +FDC_CONFIG/fdc!fngrwg@apcviht.klu.infineon.com +FDC_CONFIG2/config$user@apcviht.klu.infineon.com +APCCHECK/fdc!fngrwg@apcviht.klu.infineon.com +APCCHECK2/fdc!fngrwg@apcviht.klu.infineon.com +OCNS/OCNS$user@apcviht.klu.infineon.com +EM/Except1(ik)ol@apcviht.klu.infineon.com +FDC_REPORTING/rep$user@apcviht.klu.infineon.com +FDC_EBS/ebs$user@apcviht.klu.infineon.com +FDC_ALECS/alecs$user@apcviht.klu.infineon.com +FDC_CERBERUS/cerberus$user@apcviht.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcviht.klu.infineon.com +LOGEVAL/fdc!fngrwg@apcviht.klu.infineon.com +OLE_ADMIN/sVg3YGl@apcviht.klu.infineon.com +FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcviht.klu.infineon.com +FDC_JOB/J0b$U5er123?@apcviht.klu.infineon.com +>APC3.3 APCRBGT (SandBox EU) +FDC_ADMIN/FDC_ADMIN_test@apcrbgt.klu.infineon.com +FDC_DEV/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgt.klu.infineon.com +FDC_V32/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_EXTRACTOR/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_TREND/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_TREND2/trend$user@apcrbgt.klu.infineon.com +FDC_CONFIG/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_CONFIG2/config$user@apcrbgt.klu.infineon.com +APCCHECK/fdc!fngrwg@apcrbgt.klu.infineon.com +APCCHECK2/fdc!fngrwg@apcrbgt.klu.infineon.com +OCNS/fdc!fngrwg@apcrbgt.klu.infineon.com +EM/Except1(ik)ol@apcrbgt.klu.infineon.com +FDC_ALECS/alecs$user@apcrbgt.klu.infineon.com +FDC_CERBERUS/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgt.klu.infineon.com +LOGEVAL/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_PARALLEL/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_JOB/J0b$U5er123?@apcrbgt.klu.infineon.com +>APC3.3 APCDRST (BigTests EU) +FDC_ADMIN/37hLpQb8XuwDt@apcdrst.klu.infineon.com +FDC_DEV/EHIWMCZGoGHFt@apcdrst.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdrst.klu.infineon.com +FDC_EXTRACTOR/Cci4UZdylAupt@apcdrst.klu.infineon.com +FDC_V32/fkXdhKGJUTPLt@apcdrst.klu.infineon.com +FDC_TREND/O4jnyceVN4i0t@apcdrst.klu.infineon.com +FDC_TREND2/trend$usert@apcdrst.klu.infineon.com +FDC_CONFIG/z7SIdgDGAOrOt@apcdrst.klu.infineon.com +FDC_CONFIG2/config$usert@apcdrst.klu.infineon.com +APCCHECK/APCCHECKt@apcdrst.klu.infineon.com +APCCHECK2/QRBhhVTFleWLt@apcdrst.klu.infineon.com +OCNS/64ppQ7TWtEQRt@apcdrst.klu.infineon.com +FDC_REPORTING/DrZNjvyC5CvzSOn2t@apcdrst.klu.infineon.com +FDC_EBS/8lXRsm14kEaWDs8tt@apcdrst.klu.infineon.com +FDC_ALECS/alecs$usert@apcdrst.klu.infineon.com +FDC_CERBERUS/JOlpVR10oev9t@apcdrst.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdrst.klu.infineon.com +LOGEVAL/tdM8qz02mTn4t@apcdrst.klu.infineon.com +OLE_ADMIN/uc71LEROXTjgPimqt@apcdrst.klu.infineon.com +FDC_JOB/J0b$U5er123?@apcdrst.klu.infineon.com +FDC_BCC/BoBwathN2e4bKmVgt@apcdrst.klu.infineon.com +GMS_MESSENGER/Xq4M1K2A)EpvngQf@apcdrst.klu.infineon.com +>APC3.3 APCTR (Training) +FDC_ADMIN/apctr_0987@apctr.klu.infineon.com +FDC_DEV/apctr_0987@apctr.klu.infineon.com +FDC_LOCAL/Apctr_0987_apctr@apctr.klu.infineon.com +FDC_EXTRACTOR/apctr_0987@apctr.klu.infineon.com +FDC_V32/apctr_0987@apctr.klu.infineon.com +FDC_TREND/apctr_0987@apctr.klu.infineon.com +FDC_CONFIG/apctr_0987@apctr.klu.infineon.com +APCCHECK/apctr_0987@apctr.klu.infineon.com +APCCHECK2/apctr_0987@apctr.klu.infineon.com +OCNS/apctr_0987@apctr.klu.infineon.com +FDC_REPORTING/apctr_0987@apctr.klu.infineon.com +FDC_CERBERUS/apctr_0987@apctr.klu.infineon.com +LOGEVAL/apctr_0987@apctr.klu.infineon.com +OLE_ADMIN/apctr_0987@apctr.klu.infineon.com +FDC_JOB/J0b$U5er123?@apctr.klu.infineon.com +FDC_BE_CONVERTER/apctr_0987@apctr.klu.infineon.com +>APC3.3 APCTEST (SandBox AP) +FDC_ADMIN/ilovemydba123@apctest.sin.infineon.com +FDC_DEV/ilovemydba123@apctest.sin.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apctest.sin.infineon.com +FDC_EXTRACTOR/ilovemydba123@apctest.sin.infineon.com +FDC_V32/ilovemydba123@apctest.sin.infineon.com +FDC_TREND/ilovemydba123@apctest.sin.infineon.com +FDC_TREND2/tugabaX8@apctest.sin.infineon.com +FDC_CONFIG/ilovemydba123@apctest.sin.infineon.com +FDC_CONFIG2/F5vAcHat@apctest.sin.infineon.com +APCCHECK/ilovemydba123@apctest.sin.infineon.com +APCCHECK2/ilovemydba123@apctest.sin.infineon.com +OCNS/ilovemydba123@apctest.sin.infineon.com +FDC_REPORTING/ilovemydba123@apctest.sin.infineon.com +FDC_CERBERUS/ilovemydba123@apctest.sin.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apctest.sin.infineon.com +LOGEVAL/ilovemydba123@apctest.sin.infineon.com +OLE_ADMIN/EQyd1*HrQnP=@APCTEST.SIN.INFINEON.COM +FDC_JOB/J0b$U5er123?@APCTEST.SIN.INFINEON.COM +>APC3.3 APCITBOX (ITBox AP) +FDC_ADMIN/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_DEV/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@APCITBOX.SIN.INFINEON.COM +FDC_EXTRACTOR/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_V32/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_TREND/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_TREND2/tugabaX8@APCITBOX.SIN.INFINEON.COM +FDC_CONFIG/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_CONFIG2/F5vAcHat@APCITBOX.SIN.INFINEON.COM +APCCHECK/ilovemydba123@APCITBOX.SIN.INFINEON.COM +APCCHECK2/ilovemydba123@APCITBOX.SIN.INFINEON.COM +OCNS/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_REPORTING/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_CERBERUS/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@APCITBOX.SIN.INFINEON.COM +LOGEVAL/ilovemydba123@APCITBOX.SIN.INFINEON.COM +OLE_ADMIN/EQyd1*HrQnP=@APCITBOX.SIN.INFINEON.COM +FDC_JOB/J0b$U5er123?@APCITBOX.SIN.INFINEON.COM" +"EAF - IP","","","","tnsping host port ip +apcmesp.mes.infineon.com apcmesp-db.ec.local 7001 10.95.131.154 +apcmess.mes.infineon.com apcmess-db.ec.local 7001 10.95.131.45 +apcmest.mes.infineon.com apcmest-db.mes.infineon.com 7001 10.95.179.45 +eafdev.mes.infineon.com eafdev-db.ec.local 9152 10.95.131.152 +eafprod.mes.infineon.com eafprod-db.ec.local 9151 10.95.131.151 +eafstag.mes.infineon.com eafstag-db.ec.local 9153 10.95.131.153 +edaprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155 +edastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44 +edatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44 +ganeafp.mes.infineon.com ganeafp-db.mes.infineon.com 9151 10.95.179.151 +ganeafs.mes.infineon.com ganeafs-db.mes.infineon.com 9152 10.95.179.152 +yodastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44 +yodatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44 +yodprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155" +"IFX - EAF","eafdev","263U29M:ptqo2WA","","sqlplus eafdev/\"asdf\"@FIMEST.MES.INFINEON.COM + +Old (2021-07-16) is yOb9b8y2UcbnAYQc-0BQ +Old (2020-08-25) is cVOKXj3DD!NnQlbg45EFj +Old (2022-04-12) is RZp4B1b3w_0mwGgO7aZc0 +Old (2022-07-12) is 64670ee9c18873413d7_82 + +C:\\Users\\phares>tnsping FIMEST.MES.INFINEON.COM + +TNS Ping Utility for 64-bit Windows: Version 12.1.0.2.0 - Production on 07-MAY-2020 14:01:31 + +Used LDAP adapter to resolve the alias +Attempting to contact (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest))) +OK (200 msec) + +Summary: SR: Oracle Database - Import/Migrate/Copy Schema [Mesa]-SSO89735 +------------------------------------------------------------------------------------------------------------------------------------------------------ + +Dear Leslie Phares, + +GLOBAL_NAME USERNAME PW +------------------------------ ------------------------- -------------------- +FIMEST.MES.INFINEON.COM EAFDEV + +Regards, +Tai + +Old password +Ix!OCk6zGx!!y2eGQ1:H + +Old password 2021-04-19 +Yuw2PQZnKepdMMb-zYnR + +Old password 2022-01-13 +hpJ_hgG_vSS2NPLvQTbU" +"IFX - EAF Reporting","eafdev_admin_reporting","ft028JF2*m887*EA.P6w","","fimest.mes.infineon.com +eafdev_admin_reporting +" +"APC - FDC_WAC","FDC_WAC","","","Dear Admins, + +below the pwd list for FDC_WAC user for all sites for your reference + +Database PWD +apcbth.bth.infineon.com wr7m6qUWeblZe3?Sw5KI +apcdd200.drs.infineon.com 5ows2K6py4ozYkT=0Wyp +apcdd300.drs.infineon.com ktwEC?k-YD=B1#=QGNbq +apcdrst.klu.infineon.com lkBbfx.teBKTXI+88LxP +apcitbox.sin.infineon.com )IqaMV.LL#SOM4A;!L&L +apcklm.klm.infineon.com K0P+.Fw,xwHod4d>9=H# +apcmkz.mkz.infineon.com roWaChEP3fraci#EtlY+ +apcrbg.rbg.infineon.com q4Qa!.kL Add +7. Users need to be added to AD Group. +EC-MES-PRJ-SPC-SI-C-L (Change group) +EC-MES-PRJ-SPC-SI-R-L (Read group) " +"LSL2SQL","10.95.128.28","0okm9ijn","10.95.128.28\\PROD1,53959","\"server\": \"10.95.128.28\\\\PROD1,53959\", +\"database\": \"\", +\"authenticationType\": \"SqlLogin\", +\"user\": \"srpadmin\", +\"password\": \"\", +\"emptyPasswordInput\": false, +\"savePassword\": true, +\"profileName\": \"LSL2SQL\"" diff --git a/Infineon-NA.sv b/Infineon-NA.sv new file mode 100644 index 0000000..880bc00 --- /dev/null +++ b/Infineon-NA.sv @@ -0,0 +1,943 @@ +"Account","Login Name","Password","Web Site","Comments" +"SP1-1097-0156","","","10.95.154.12","00:10:6F:00:D7:4E" +"MESD1UNITY4.ifxcep.net","","","10.95.154.13","6C:0B:84:E3:AD:7E" +"mesd1biorad4.ifxcep.net","","","10.95.154.10","1C:6F:65:C3:51:DB" +"mesd1qs2200.ifxcep.net","","","10.95.154.11","00:30:48:43:DE:97" +"MESA.APCTrend@infineon.com","","","","Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1534244 +Internal Reference No.:INC000004218687 " +"MesYodaAdm@infineon.com","","","","Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1534246 +Internal Reference No.:INC000004218726 " +"MesEdaAdm@infineon.com","","","","Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1528792 +Internal Reference No.:INC000004206774 " +"zzz MesApcAdm@infineon.com","","","","Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1528790 +Internal Reference No.:INC000004206771 " +"MesEafAdm@infineon.com","","","","Your IT-Shop Order has been resolved +Requestor: Fui Lian Liow (IFKM CSC FI SGI) +Recipient: Fui Lian Liow (IFKM CSC FI SGI) +Orderable: SR: Functional Mailbox - Modification [Kulim]-ORD1438136 +Internal Reference No.:INC000003980292 " +"N Port","NA","moax","","Unity nPort Name Fixed IP MAC +1 TENCOR1 10.95.192.31 00:90:E8:65:1F:2B +2 TENCOR2 10.95.192.32 00:90:E8:6E:3C:24 +3 TENCOR3 10.95.192.33 00:90:E8:6E:3C:1E +4 HGCV1 10.95.192.34 00:90:E8:6E:3C:26 +5 HGCV2 10.95.192.35 00:90:E8:6E:3C:35 +6 HGCV3 10.95.192.36 00:90:E8:6E:3C:23 +7 BIORAD2 10.95.192.37 00:90:E8:6E:3C:18 +8 BIORAD3 10.95.192.38 00:90:E8:6E:3C:22 +9 CDE2 10.95.192.39 00:90:E8:6E:3B:F0 +10 CDE3 10.95.192.41 00:90:E8:6E:3C:37 +11 CDE5 10.95.192.40 00:90:E8:6E:3C:30 +12 BIORAD4 10.95.154.10 1C:6F:65:C3:51:DB +13 BIORAD5 10.95.154.11 00:30:48:43:DE:97 +14 SP101 10.95.154.12 00:10:6F:00:D7:4E +15 Spare #1 10.95.192.47 00:90:E8:6E:3C:31 +16 Spare #2 10.95.192.48 00:90:E8:6E:3C:1D +17 Spare #3 10.95.192.49 00:90:E8:6E:3C:19 +18 Spare #4 10.95.192.50 00:90:E8:6E:3C:1A +19 Spare #5 10.95.192.51 00:90:E8:6E:3C:36 + +moax" +"EC - Prod - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmesp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmesp-db.ec.local)(port=7001)))(connect_data=(sid=apcmesp))) + +C:\\Users\\ecphares>nslookup apcmesp-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: apcmesp-db.ec.local +Address: 10.95.131.154 + +fdc_admin/M3s_apc_tr3nd_2019!@apcmesp.mes.infineon.com" +"EC - Prod - EDA","edaprod","M3sapc_t3st2019","AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC","edaprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp))) + +C:\\Windows\\system32>D:\\Tmp\\phares\\EDA\\Binaries-FOR-IT-ONLY\\4.7.0\\Server_x86\\AIS.DataFramework.Server.exe -encrypt ******* + +Your encrypted password is: AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC + +C:\\Users\\ecphares>nslookup fimesp-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: fimesp-db.ec.local +Address: 10.95.131.155" +"EC - Prod - Yoda","yodaprod","M3sapc_t3st2019","","yodprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp))) + +C:\\Users\\ecphares>nslookup fimesp-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: fimesp-db.ec.local +Address: 10.95.131.155" +"IFX - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=apcmest))) + +C:\\Users\\phares>nslookup apcmest-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: mesxv035.mes.infineon.com +Address: 10.95.179.45 +Aliases: apcmest-db.mes.infineon.com + +fdc_admin/M3s_apc_tr3nd_2019!@apcmest.mes.infineon.com" +"IFX - EDA","edatest","M3sapc_t3st2019","","edatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest))) + +C:\\Users\\phares>nslookup fimest-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: mesxv034.mes.infineon.com +Address: 10.95.179.44 +Aliases: fimest-db.mes.infineon.com" +"IFX - Yoda","yodatest","M3sapc_t3st2019","","yodatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest))) + +C:\\Users\\phares>nslookup fimest-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: mesxv034.mes.infineon.com +Address: 10.95.179.44 +Aliases: fimest-db.mes.infineon.com" +"EC - Stage - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmess.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmess-db.ec.local)(port=7001)))(connect_data=(sid=apcmess))) + +C:\\Users\\ecphares>nslookup apcmess-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: mesxvec035.ec.local +Address: 10.95.131.45 +Aliases: apcmess-db.ec.local + +fdc_admin/M3s_apc_tr3nd_2019!@apcmess.mes.infineon.com" +"EC - Stage - EDA","edastag","M3sapc_t3st2019","","edastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess))) + +C:\\Users\\ecphares>nslookup fimess-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: mesxvec034.ec.local +Address: 10.95.131.44 +Aliases: fimess-db.ec.local" +"EC - Stage - Yoda","yodastag","M3sapc_t3st2019","","yodastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess))) + +C:\\Users\\ecphares>nslookup fimess-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: mesxvec034.ec.local +Address: 10.95.131.44 +Aliases: fimess-db.ec.local" +"EC - Prod - EAF","eafprod","Mes_E@f2018!","","eafprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafprod-db.ec.local)(port=9151)))(connect_data=(sid=eafprod))) + +C:\\Users\\ecphares>nslookup eafprod-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: eafprod-db.ec.local +Address: 10.95.131.151" +"IFX - Prod - EAF - GaN","ganeafp","Mes_E@f2018!","","ganeafp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafp-db.mes.infineon.com)(port=9151)))(connect_data=(sid=ganeafp))) + +C:\\Users\\phares>nslookup ganeafp-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: ganeafp-db.mes.infineon.com +Address: 10.95.179.151" +"EC - Stage - EAF","eafstag","Mes_E@f2018!","","eafstag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafstag-db.ec.local)(port=9153)))(connect_data=(sid=eafstag))) + +C:\\Users\\ecphares>nslookup eafstag-db.ec.local +Server: messcec01.ec.local +Address: 10.95.128.11 + +Name: eafstag-db.ec.local +Address: 10.95.131.153" +"IFX - Stage - EAF - GaN","ganeafs","Mes_E@f2018","","ganeafs.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafs-db.mes.infineon.com)(port=9152)))(connect_data=(sid=ganeafs))) + +C:\\Users\\phares>nslookup ganeafs-db.mes.infineon.com +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Name: ganeafs-db.mes.infineon.com +Address: 10.95.179.152" +"IFX - EAF - Obsolete","eafdev","Mes_E@f2018!","","FIMEST.MES.INFINEON.COM +EAFDEV +Ix!OCk6zGx!!y2eGQ1:H + +eafdev.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafdev-db.ec.local)(port=9152)))(connect_data=(sid=eafdev))) + +C:\\Users\\phares>nslookup eafdev-db.ec.local +Server: elssc001.na.infineon.com +Address: 10.64.176.11 + +Non-authoritative answer: +Name: eafdev-db.ec.local +Address: 10.95.131.152" +"APC - List","","","",">----------------------PROD------------------------ +>APC3.3 RBG FE +FDC_ADMIN/fdc_march13_rbg@apcrbg.rbg.infineon.com +FDC_DEV/fdc!fngrwg@apcrbg.rbg.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbg.rbg.infineon.com +FDC_EXTRACTOR/extractor33_rbg@apcrbg.rbg.infineon.com +FDC_V32/DCL_read@apcrbg.rbg.infineon.com +FDC_TREND/fdctrend!global@apcrbg.rbg.infineon.com +FDC_TREND2/trend$user@apcrbg.rbg.infineon.com +FDC_CONFIG/fdcconfig!global@apcrbg.rbg.infineon.com +FDC_CONFIG2/config$user@apcrbg.rbg.infineon.com +APCCHECK/APCCHECK$user@apcrbg.rbg.infineon.com +APCCHECK2/APCCHECK2$user@apcrbg.rbg.infineon.com +OCNS/OCNS$user@apcrbg.rbg.infineon.com +FDC_REPORTING/rep$user@apcrbg.rbg.infineon.com +FDC_EBS/ebs$user@apcrbg.rbg.infineon.com +FDC_ALECS/alecs$user@apcrbg.rbg.infineon.com +FDC_CERBERUS/cerberus_fdc@apcrbg.rbg.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbg.rbg.infineon.com +LOGEVAL/LOGEVAL1qay2wsx@apcrbg.rbg.infineon.com +OLE_ADMIN/yaq1xsw3@apcrbg.rbg.infineon.com +FDC_OPC/)I58n711iD=*snlH3LPg@apcrbg.rbg.infineon.com +FDC_JOB/J0b$U5er123?@apcrbg.rbg.infineon.com +dbl$dwh_rbg$glb_al_apc/dwh_rbg$glb_al_apc18@apcrbg.rbg.infineon.com +>APC3.3 RBG BE +FDC_ADMIN/FL6duKsZ@apcrbgbe.rbg.infineon.com +FDC_DEV/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgbe.rbg.infineon.com +FDC_EXTRACTOR/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_V32/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_TREND/fdctrend!global@apcrbgbe.rbg.infineon.com +FDC_TREND2/trend$user@apcrbgbe.rbg.infineon.com +FDC_CONFIG/fdcconfig!global@apcrbgbe.rbg.infineon.com +FDC_CONFIG2/config$user@apcrbgbe.rbg.infineon.com +APCCHECK/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +APCCHECK2/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +OCNS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_REPORTING/rep$user@apcrbgbe.rbg.infineon.com +FDC_ALECS/alecs$user@apcrbgbe.rbg.infineon.com +FDC_CERBERUS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgbe.rbg.infineon.com +LOGEVAL/dbhiw!amfdg@apcrbgbe.rbg.infineon.com +OLE_ADMIN/cde3vfr4@apcrbgbe.rbg.infineon.com +FDC_JOB/J0b$U5er123?@apcrbgbe.rbg.infineon.com +FDC_BE_CONVERTER/diewdwiiz@apcrbgbe.rbg.infineon.com +>APC3.3 VIH +FDC_ADMIN/fdc_feb14_vih@apcvih.vih.infineon.com +FDC_DEV/fdc!fngrwg@apcvih.vih.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcvih.vih.infineon.com +FDC_EXTRACTOR/fdc!fngrwg@apcvih.vih.infineon.com +FDC_V32/DCL_read@apcvih.vih.infineon.com +FDC_TREND/fdctrend!global@apcvih.vih.infineon.com +FDC_TREND2/trend$user@apcvih.vih.infineon.com +FDC_CONFIG/fdcconfig!global@apcvih.vih.infineon.com +FDC_CONFIG2/config$user@apcvih.vih.infineon.com +APCCHECK/fdc!fngrwg@apcvih.vih.infineon.com +APCCHECK2/fdc!fngrwg@apcvih.vih.infineon.com +OCNS/OCNS$user@apcvih.vih.infineon.com +FDC_REPORTING/rep$user@apcvih.vih.infineon.com +FDC_EBS/ebs$user@apcvih.vih.infineon.com +FDC_ALECS/alecs$user@apcvih.vih.infineon.com +FDC_CERBERUS/cerberus$user@apcvih.vih.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcvih.vih.infineon.com +LOGEVAL/fdc!fngrwg@apcvih.vih.infineon.com +OLE_ADMIN/sVg3YGl@apcvih.vih.infineon.com +FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcvih.vih.infineon.com +FDC_JOB/J0b$U5er123?@apcvih.vih.infineon.com +>APC3.3 SFD200 +FDC_ADMIN/37hLpQb8XuwD@apcdd200.drs.infineon.com +FDC_DEV/EHIWMCZGoGHF@apcdd200.drs.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd200.drs.infineon.com +FDC_EXTRACTOR/Cci4UZdylAup@apcdd200.drs.infineon.com +FDC_V32/fkXdhKGJUTPL@apcdd200.drs.infineon.com +FDC_TREND/fdctrend!global@apcdd200.drs.infineon.com +FDC_TREND2/trend$user@apcdd200.drs.infineon.com +FDC_CONFIG/z7SIdgDGAOrO@apcdd200.drs.infineon.com +FDC_CONFIG2/config$user@apcdd200.drs.infineon.com +APCCHECK/APCCHECK@apcdd200.drs.infineon.com +APCCHECK2/QRBhhVTFleWL@apcdd200.drs.infineon.com +OCNS/64ppQ7TWtEQR@apcdd200.drs.infineon.com +FDC_REPORTING/DrZNjvyC5CvzSOn2@apcdd200.drs.infineon.com +FDC_EBS/8lXRsm14kEaWDs8t@apcdd200.drs.infineon.com +FDC_ALECS/alecs$user@apcdd200.drs.infineon.com +FDC_CERBERUS/JOlpVR10oev9@apcdd200.drs.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd200.drs.infineon.com +LOGEVAL/tdM8qz02mTn4@apcdd200.drs.infineon.com +OLE_ADMIN/uc71LEROXTjgPimq@apcdd200.drs.infineon.com +FDC_OPC/,_7!w,-eqdyEv+1qZX-O@apcdd200.drs.infineon.com +FDC_JOB/J0b$U5er123?@apcdd200.drs.infineon.com +FDC_CA/W7+Y_AYx*9!3mYkyNc-u@apcdd200.drs.infineon.com +FDC_BCC/BoBwathN2e4bKmVg@apcdd200.drs.infineon.com +GMS_MESSENGER/ZsRxBDVyLB0qB9NO@apcdd200.drs.infineon.com +>APC3.3 SFD300 +FDC_ADMIN/PQQE6QhEENKa@apcdd300.drs.infineon.com +FDC_DEV/6mBscwnty39k@apcdd300.drs.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd300.drs.infineon.com +FDC_EXTRACTOR/MeL4MsQZ2KHh@apcdd300.drs.infineon.com +FDC_V32/TyuKR0kAjP3Z@apcdd300.drs.infineon.com +FDC_TREND/fdctrend!global@apcdd300.drs.infineon.com +FDC_TREND2/trend$user@apcdd300.drs.infineon.com +FDC_CONFIG/kZGrBwChZznU@apcdd300.drs.infineon.com +FDC_CONFIG2/config$user@apcdd300.drs.infineon.com +APCCHECK/APCCHECK@apcdd300.drs.infineon.com +APCCHECK2/VvUFTiisOEqB@apcdd300.drs.infineon.com +OCNS/siwpNrWrtTsl@apcdd300.drs.infineon.com +FDC_REPORTING/uV8zSWRRe3Oz6pLl@apcdd300.drs.infineon.com +FDC_EBS/f4WW9m3HTTwfxHlq@apcdd300.drs.infineon.com +FDC_ALECS/alecs$user@apcdd300.drs.infineon.com +FDC_CERBERUS/FtBNWFbLB0pP@apcdd300.drs.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd300.drs.infineon.com +LOGEVAL/otZgN9G9s9Bs@apcdd300.drs.infineon.com +OLE_ADMIN/f58aKtqVoiIanf6P@apcdd300.drs.infineon.com +FDC_OPC/#xG_pT+0#N03GYFBL34K@apcdd300.drs.infineon.com +FDC_JOB/J0b$U5er123?@apcdd300.drs.infineon.com +FDC_BCC/jg9HmphljCDOZT7B@apcdd300.drs.infineon.com +GMS_MESSENGER/Fgp57BOQ8PVeAraB@apcdd300.drs.infineon.com +>APC3.3 WAR +FDC_ADMIN/FL6duKsZ@apcwar.war.infineon.com +FDC_DEV/dbhiw!amfdg@apcwar.war.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwar.war.infineon.com +FDC_EXTRACTOR/dbhiw!amfdg@apcwar.war.infineon.com +FDC_V32/dbhiw!amfdg@apcwar.war.infineon.com +FDC_TREND/fdctrend!global1@apcwar.war.infineon.com +FDC_TREND2/trend$user@apcwar.war.infineon.com +FDC_CONFIG/Fdcconfig!global1@apcwar.war.infineon.com +FDC_CONFIG2/config$user@apcwar.war.infineon.com +APCCHECK/dbhiw!amfdg@apcwar.war.infineon.com +APCCHECK2/dbhiw!amfdg@apcwar.war.infineon.com +OCNS/dbhiw!amfdg@apcwar.war.infineon.com +FDC_REPORTING/rep$user@apcwar.war.infineon.com +FDC_ALECS/alecs$user@apcwar.war.infineon.com +FDC_CERBERUS/dbhiw!amfdg@apcwar.war.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwar.war.infineon.com +LOGEVAL/dbhiw!amfdg@apcwar.war.infineon.com +OLE_ADMIN/cde3vfr4@apcwar.war.infineon.com +FDC_JOB/J0b$U5er123?@apcwar.war.infineon.com +FDC_BE_CONVERTER/diewdwiiz@apcwar.war.infineon.com +>APC3.3 KLM (Kulim) +FDC_ADMIN/fdc01klm@apcklm.klm.infineon.com +FDC_DEV/fdcdevklm@apcklm.klm.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcklm.klm.infineon.com +FDC_EXTRACTOR/fdc01klm@apcklm.klm.infineon.com +FDC_V32/fdc32klm@apcklm.klm.infineon.com +FDC_TREND/fdctrend!global@apcklm.klm.infineon.com +FDC_TREND2/trend01klm@apcklm.klm.infineon.com +FDC_CONFIG/fdc01klm@apcklm.klm.infineon.com +FDC_CONFIG2/fdc01klm@apcklm.klm.infineon.com +APCCHECK/fdc01klm@apcklm.klm.infineon.com +APCCHECK2/fdc01klm@apcklm.klm.infineon.com +OCNS/OCNS01klm@apcklm.klm.infineon.com +FDC_REPORTING/rep$user@apcklm.klm.infineon.com +FDC_EBS/ebs01klm@apcklm.klm.infineon.com +FDC_CERBERUS/cerberus01klm@apcklm.klm.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcklm.klm.infineon.com +LOGEVAL/fdc01klm@apcklm.klm.infineon.com +OLE_ADMIN/ole1!klmXD@apcklm.klm.infineon.com +FDC_JOB/J0b$U5er123?@apcklm.klm.infineon.com +>APC3.3 MKZ (Malacca) +FDC_ADMIN/apcmaladmin@apcmkz.mkz.infineon.com +FDC_DEV/adm$!fdc@apcmkz.mkz.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcmkz.mkz.infineon.com +FDC_EXTRACTOR/adm$!fdc@apcmkz.mkz.infineon.com +FDC_V32/adm$!fdc@apcmkz.mkz.infineon.com +FDC_TREND/fdctrend!global@apcmkz.mkz.infineon.com +FDC_TREND2/t2daC2eyaPuBEsp@apcmkz.mkz.infineon.com +FDC_CONFIG/fdcconfig!global@apcmkz.mkz.infineon.com +FDC_CONFIG2/frAtebracevu3ub@apcmkz.mkz.infineon.com +APCCHECK/apcc100@apcmkz.mkz.infineon.com +APCCHECK2/apcc100@apcmkz.mkz.infineon.com +OCNS/adm$!fdc@apcmkz.mkz.infineon.com +FDC_REPORTING/rep$user@apcmkz.mkz.infineon.com +FDC_CERBERUS/adm$!fdc@apcmkz.mkz.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcmkz.mkz.infineon.com +LOGEVAL/adm$!fdc@apcmkz.mkz.infineon.com +OLE_ADMIN/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com +FDC_JOB/J0b$U5er123?@apcmkz.mkz.infineon.com +FDC_BE_CONVERTER/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com +>APC3.3 SIN (Singapur) +FDC_ADMIN/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_DEV/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcsin.sin.infineon.com +FDC_EXTRACTOR/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_V32/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_TREND/fdctrend!global@apcsin.sin.infineon.com +FDC_TREND2/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_CONFIG/fdcconfig!global@apcsin.sin.infineon.com +FDC_CONFIG2/config$user@apcsin.sin.infineon.com +APCCHECK/dbhiw!amfdg@apcsin.sin.infineon.com +APCCHECK2/dbhiw!amfdg@apcsin.sin.infineon.com +OCNS/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_REPORTING/rep$user@apcsin.sin.infineon.com +FDC_CERBERUS/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcsin.sin.infineon.com +LOGEVAL/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_PARALLEL/dbhiw!amfdg@apcsin.sin.infineon.com +FDC_JOB/J0b$U5er123?@apcsin.sin.infineon.com +>APC3.3 BAT (Batam) +FDC_ADMIN/apcbatadmin@apcbth.bth.infineon.com +FDC_DEV/adm$!fdc@apcbth.bth.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcbth.bth.infineon.com +FDC_EXTRACTOR/adm$!fdc@apcbth.bth.infineon.com +FDC_V32/adm$!fdc@apcbth.bth.infineon.com +FDC_TREND/fdctrend!global@apcbth.bth.infineon.com +FDC_TREND2/Yacreph4@apcbth.bth.infineon.com +FDC_CONFIG/fdcconfig!global@apcbth.bth.infineon.com +FDC_CONFIG2/p5crafRa@apcbth.bth.infineon.com +APCCHECK/apcc100@apcbth.bth.infineon.com +APCCHECK2/HdoUOW*fHf8jNNaO7J#Q@apcbth.bth.infineon.com +OCNS/adm$!fdc@apcbth.bth.infineon.com +FDC_REPORTING/rep$user@apcbth.bth.infineon.com +FDC_CERBERUS/YC{E6j35cwN[wztHGqh5@apcbth.bth.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcbth.bth.infineon.com +LOGEVAL/adm$!fdc@apcbth.bth.infineon.com +FDC_PARALLEL/8uchUwRa@apcbth.bth.infineon.com +OLE_ADMIN/adm$!fdc@apcbth.bth.infineon.com +FDC_JOB/J0b$U5er123?@apcbth.bth.infineon.com +>APC3.3 WUX (Wuxi) +FDC_ADMIN/apcwuxadmin@apcwux.wux.infineon.com +FDC_DEV/adm$!fdc@apcwux.wux.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwux.wux.infineon.com +FDC_EXTRACTOR/adm$!fdc@apcwux.wux.infineon.com +FDC_V32/adm$!fdc@apcwux.wux.infineon.com +FDC_TREND/fdctrend!global@apcwux.wux.infineon.com +FDC_TREND2/frEces5U@apcwux.wux.infineon.com +FDC_CONFIG/fdcconfig!global@apcwux.wux.infineon.com +FDC_CONFIG2/frEces5X@apcwux.wux.infineon.com +APCCHECK/apcc100@apcwux.wux.infineon.com +APCCHECK2/apcc100@apcwux.wux.infineon.com +OCNS/apcwuxOCNS@apcwux.wux.infineon.com +FDC_REPORTING/rep$user@apcwux.wux.infineon.com +FDC_CERBERUS/fdcP@ssw0rd@apcwux.wux.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwux.wux.infineon.com +LOGEVAL/adm$!fdc@apcwux.wux.infineon.com +FDC_PARALLEL/8uchUwRa@apcwux.wux.infineon.com +OLE_ADMIN/8+h!!rRTl]grl9]!p7?L@apcwux.wux.infineon.com +FDC_JOB/J0b$U5er123?@apcwux.wux.infineon.com +FDC_BE_CONVERTER/zo-zJ#gy!M{3DWQSnv]b@apcwux.wux.infineon.com +>----------------------TEST------------------------ +>APC3.3 ICAPCDEV +FDC_ADMIN/ole!fcb789@icapcdev.klu.infineon.com +FDC_DEV/olefcb1@icapcdev.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@icapcdev.klu.infineon.com +FDC_EXTRACTOR/fdc4extor@icapcdev.klu.infineon.com +FDC_TREND/trendexv3@icapcdev.klu.infineon.com +FDC_TREND2/trend$user@icapcdev.klu.infineon.com +FDC_CONFIG/trecovex@icapcdev.klu.infineon.com +FDC_CONFIG2/config$user@icapcdev.klu.infineon.com +fdc_checktool/olefcb1@icapcdev.klu.infineon.com +FDC_ALECS/alecs$user@icapcdev.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@icapcdev.klu.infineon.com +OLE_ADMIN/OLE_ADMIN@icapcdev.klu.infineon.com +FDC_PARALLEL/olefcb1@icapcdev.klu.infineon.com +FDC_JOB/J0b$U5er123?@icapcdev.klu.infineon.com +DWH_SUPPORT/PASSWORT4US@icapcdev.klu.infineon.com +>APC3.3 APCVIHT (ITBox EU) +FDC_ADMIN/fdc_feb14_vih@apcviht.klu.infineon.com +FDC_DEV/fdc!fngrwg@apcviht.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcviht.klu.infineon.com +FDC_EXTRACTOR/fdc!fngrwg@apcviht.klu.infineon.com +FDC_V32/DCL_read@apcviht.klu.infineon.com +FDC_TREND/fdc!fngrwg@apcviht.klu.infineon.com +FDC_TREND2/trend$user@apcviht.klu.infineon.com +FDC_CONFIG/fdc!fngrwg@apcviht.klu.infineon.com +FDC_CONFIG2/config$user@apcviht.klu.infineon.com +APCCHECK/fdc!fngrwg@apcviht.klu.infineon.com +APCCHECK2/fdc!fngrwg@apcviht.klu.infineon.com +OCNS/OCNS$user@apcviht.klu.infineon.com +EM/Except1(ik)ol@apcviht.klu.infineon.com +FDC_REPORTING/rep$user@apcviht.klu.infineon.com +FDC_EBS/ebs$user@apcviht.klu.infineon.com +FDC_ALECS/alecs$user@apcviht.klu.infineon.com +FDC_CERBERUS/cerberus$user@apcviht.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcviht.klu.infineon.com +LOGEVAL/fdc!fngrwg@apcviht.klu.infineon.com +OLE_ADMIN/sVg3YGl@apcviht.klu.infineon.com +FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcviht.klu.infineon.com +FDC_JOB/J0b$U5er123?@apcviht.klu.infineon.com +>APC3.3 APCRBGT (SandBox EU) +FDC_ADMIN/FDC_ADMIN_test@apcrbgt.klu.infineon.com +FDC_DEV/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgt.klu.infineon.com +FDC_V32/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_EXTRACTOR/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_TREND/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_TREND2/trend$user@apcrbgt.klu.infineon.com +FDC_CONFIG/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_CONFIG2/config$user@apcrbgt.klu.infineon.com +APCCHECK/fdc!fngrwg@apcrbgt.klu.infineon.com +APCCHECK2/fdc!fngrwg@apcrbgt.klu.infineon.com +OCNS/fdc!fngrwg@apcrbgt.klu.infineon.com +EM/Except1(ik)ol@apcrbgt.klu.infineon.com +FDC_ALECS/alecs$user@apcrbgt.klu.infineon.com +FDC_CERBERUS/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgt.klu.infineon.com +LOGEVAL/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_PARALLEL/fdc!fngrwg@apcrbgt.klu.infineon.com +FDC_JOB/J0b$U5er123?@apcrbgt.klu.infineon.com +>APC3.3 APCDRST (BigTests EU) +FDC_ADMIN/37hLpQb8XuwDt@apcdrst.klu.infineon.com +FDC_DEV/EHIWMCZGoGHFt@apcdrst.klu.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdrst.klu.infineon.com +FDC_EXTRACTOR/Cci4UZdylAupt@apcdrst.klu.infineon.com +FDC_V32/fkXdhKGJUTPLt@apcdrst.klu.infineon.com +FDC_TREND/O4jnyceVN4i0t@apcdrst.klu.infineon.com +FDC_TREND2/trend$usert@apcdrst.klu.infineon.com +FDC_CONFIG/z7SIdgDGAOrOt@apcdrst.klu.infineon.com +FDC_CONFIG2/config$usert@apcdrst.klu.infineon.com +APCCHECK/APCCHECKt@apcdrst.klu.infineon.com +APCCHECK2/QRBhhVTFleWLt@apcdrst.klu.infineon.com +OCNS/64ppQ7TWtEQRt@apcdrst.klu.infineon.com +FDC_REPORTING/DrZNjvyC5CvzSOn2t@apcdrst.klu.infineon.com +FDC_EBS/8lXRsm14kEaWDs8tt@apcdrst.klu.infineon.com +FDC_ALECS/alecs$usert@apcdrst.klu.infineon.com +FDC_CERBERUS/JOlpVR10oev9t@apcdrst.klu.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdrst.klu.infineon.com +LOGEVAL/tdM8qz02mTn4t@apcdrst.klu.infineon.com +OLE_ADMIN/uc71LEROXTjgPimqt@apcdrst.klu.infineon.com +FDC_JOB/J0b$U5er123?@apcdrst.klu.infineon.com +FDC_BCC/BoBwathN2e4bKmVgt@apcdrst.klu.infineon.com +GMS_MESSENGER/Xq4M1K2A)EpvngQf@apcdrst.klu.infineon.com +>APC3.3 APCTR (Training) +FDC_ADMIN/apctr_0987@apctr.klu.infineon.com +FDC_DEV/apctr_0987@apctr.klu.infineon.com +FDC_LOCAL/Apctr_0987_apctr@apctr.klu.infineon.com +FDC_EXTRACTOR/apctr_0987@apctr.klu.infineon.com +FDC_V32/apctr_0987@apctr.klu.infineon.com +FDC_TREND/apctr_0987@apctr.klu.infineon.com +FDC_CONFIG/apctr_0987@apctr.klu.infineon.com +APCCHECK/apctr_0987@apctr.klu.infineon.com +APCCHECK2/apctr_0987@apctr.klu.infineon.com +OCNS/apctr_0987@apctr.klu.infineon.com +FDC_REPORTING/apctr_0987@apctr.klu.infineon.com +FDC_CERBERUS/apctr_0987@apctr.klu.infineon.com +LOGEVAL/apctr_0987@apctr.klu.infineon.com +OLE_ADMIN/apctr_0987@apctr.klu.infineon.com +FDC_JOB/J0b$U5er123?@apctr.klu.infineon.com +FDC_BE_CONVERTER/apctr_0987@apctr.klu.infineon.com +>APC3.3 APCTEST (SandBox AP) +FDC_ADMIN/ilovemydba123@apctest.sin.infineon.com +FDC_DEV/ilovemydba123@apctest.sin.infineon.com +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apctest.sin.infineon.com +FDC_EXTRACTOR/ilovemydba123@apctest.sin.infineon.com +FDC_V32/ilovemydba123@apctest.sin.infineon.com +FDC_TREND/ilovemydba123@apctest.sin.infineon.com +FDC_TREND2/tugabaX8@apctest.sin.infineon.com +FDC_CONFIG/ilovemydba123@apctest.sin.infineon.com +FDC_CONFIG2/F5vAcHat@apctest.sin.infineon.com +APCCHECK/ilovemydba123@apctest.sin.infineon.com +APCCHECK2/ilovemydba123@apctest.sin.infineon.com +OCNS/ilovemydba123@apctest.sin.infineon.com +FDC_REPORTING/ilovemydba123@apctest.sin.infineon.com +FDC_CERBERUS/ilovemydba123@apctest.sin.infineon.com +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apctest.sin.infineon.com +LOGEVAL/ilovemydba123@apctest.sin.infineon.com +OLE_ADMIN/EQyd1*HrQnP=@APCTEST.SIN.INFINEON.COM +FDC_JOB/J0b$U5er123?@APCTEST.SIN.INFINEON.COM +>APC3.3 APCITBOX (ITBox AP) +FDC_ADMIN/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_DEV/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@APCITBOX.SIN.INFINEON.COM +FDC_EXTRACTOR/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_V32/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_TREND/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_TREND2/tugabaX8@APCITBOX.SIN.INFINEON.COM +FDC_CONFIG/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_CONFIG2/F5vAcHat@APCITBOX.SIN.INFINEON.COM +APCCHECK/ilovemydba123@APCITBOX.SIN.INFINEON.COM +APCCHECK2/ilovemydba123@APCITBOX.SIN.INFINEON.COM +OCNS/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_REPORTING/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_CERBERUS/ilovemydba123@APCITBOX.SIN.INFINEON.COM +FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@APCITBOX.SIN.INFINEON.COM +LOGEVAL/ilovemydba123@APCITBOX.SIN.INFINEON.COM +OLE_ADMIN/EQyd1*HrQnP=@APCITBOX.SIN.INFINEON.COM +FDC_JOB/J0b$U5er123?@APCITBOX.SIN.INFINEON.COM" +"EAF - IP","","","","tnsping host port ip +apcmesp.mes.infineon.com apcmesp-db.ec.local 7001 10.95.131.154 +apcmess.mes.infineon.com apcmess-db.ec.local 7001 10.95.131.45 +apcmest.mes.infineon.com apcmest-db.mes.infineon.com 7001 10.95.179.45 +eafdev.mes.infineon.com eafdev-db.ec.local 9152 10.95.131.152 +eafprod.mes.infineon.com eafprod-db.ec.local 9151 10.95.131.151 +eafstag.mes.infineon.com eafstag-db.ec.local 9153 10.95.131.153 +edaprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155 +edastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44 +edatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44 +ganeafp.mes.infineon.com ganeafp-db.mes.infineon.com 9151 10.95.179.151 +ganeafs.mes.infineon.com ganeafs-db.mes.infineon.com 9152 10.95.179.152 +yodastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44 +yodatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44 +yodprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155" +"IFX - EAF","eafdev","263U29M:ptqo2WA","","sqlplus eafdev/\"asdf\"@FIMEST.MES.INFINEON.COM + +Old (2021-07-16) is yOb9b8y2UcbnAYQc-0BQ +Old (2020-08-25) is cVOKXj3DD!NnQlbg45EFj +Old (2022-04-12) is RZp4B1b3w_0mwGgO7aZc0 +Old (2022-07-12) is 64670ee9c18873413d7_82 + +C:\\Users\\phares>tnsping FIMEST.MES.INFINEON.COM + +TNS Ping Utility for 64-bit Windows: Version 12.1.0.2.0 - Production on 07-MAY-2020 14:01:31 + +Used LDAP adapter to resolve the alias +Attempting to contact (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest))) +OK (200 msec) + +Summary: SR: Oracle Database - Import/Migrate/Copy Schema [Mesa]-SSO89735 +------------------------------------------------------------------------------------------------------------------------------------------------------ + +Dear Leslie Phares, + +GLOBAL_NAME USERNAME PW +------------------------------ ------------------------- -------------------- +FIMEST.MES.INFINEON.COM EAFDEV + +Regards, +Tai + +Old password +Ix!OCk6zGx!!y2eGQ1:H + +Old password 2021-04-19 +Yuw2PQZnKepdMMb-zYnR + +Old password 2022-01-13 +hpJ_hgG_vSS2NPLvQTbU" +"IFX - EAF Reporting","eafdev_admin_reporting","ft028JF2*m887*EA.P6w","","fimest.mes.infineon.com +eafdev_admin_reporting +" +"APC - FDC_WAC","FDC_WAC","","","Dear Admins, + +below the pwd list for FDC_WAC user for all sites for your reference + +Database PWD +apcbth.bth.infineon.com wr7m6qUWeblZe3?Sw5KI +apcdd200.drs.infineon.com 5ows2K6py4ozYkT=0Wyp +apcdd300.drs.infineon.com ktwEC?k-YD=B1#=QGNbq +apcdrst.klu.infineon.com lkBbfx.teBKTXI+88LxP +apcitbox.sin.infineon.com )IqaMV.LL#SOM4A;!L&L +apcklm.klm.infineon.com K0P+.Fw,xwHod4d>9=H# +apcmkz.mkz.infineon.com roWaChEP3fraci#EtlY+ +apcrbg.rbg.infineon.com q4Qa!.kL Add +7. Users need to be added to AD Group. +EC-MES-PRJ-SPC-SI-C-L (Change group) +EC-MES-PRJ-SPC-SI-R-L (Read group) " +"LSL2SQL","10.95.128.28","0okm9ijn","10.95.128.28\\PROD1,53959","\"server\": \"10.95.128.28\\\\PROD1,53959\", +\"database\": \"\", +\"authenticationType\": \"SqlLogin\", +\"user\": \"srpadmin\", +\"password\": \"\", +\"emptyPasswordInput\": false, +\"savePassword\": true, +\"profileName\": \"LSL2SQL\"" +"Prod Tibco/Yoda application (tibrvd)","tibco","@Mest1bc0adm","","From: Kim Peter (IFAM IT OS DC CD) +Sent: Friday, June 14, 2019 12:27 PM +Hostname or Package name: tibrvd.ec.local / 10.95.131.156 (two node cluster) + +tibrvd.EC.local [10.95.131.156] + +Prod +http://tibrvd.ec.local:8901/index.html +http://tibrvd.ec.local:8903/index.html + +Staging +http://tibrvd.ec.local:8904/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" +"Prod Tibco/Yoda application (mesxs014)","tibco","@Mest1bc0adm","","mesxsec014.EC.local [10.95.131.104] + +Prod +http://mesxsec014.ec.local:8901/index.html +http://mesxsec014.ec.local:8903/index.html + +Staging +http://mesxsec014.ec.local:8904/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" +"Prod Tibco/Yoda application (mesxs013)","tiboc","@Mest1bc0adm","","mesxsec013.EC.local [10.95.131.103] + +Prod +http://mesxsec013.ec.local:8901/index.html +http://mesxsec013.ec.local:8903/index.html + +Staging +http://mesxsec013.ec.local:8904/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" +"Dev Tibco/Yoda application (mesxs015)","tibco","@Mest1bc0adm","","mesxs015.mes.infineon.com [10.95.179.105] + +http://mesxs015.mes.infineon.com:8902/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" +"* EC MES EAF","EC\\ecmeseaf","EAFAdmin2018....!","","Old but works + +RijndaelEncryption +Infineon Technologies Americas Corp. +CUGygiPwahy4U3j+6KqqoMZ08STyVDR1rKm6MwPpt00=" +"EC APC Svc","EC\\ecapcsvc","DfQe1C!WEsRYywGakmq2","","INC000004136919 +SSO73328 + +Orderable: SR: CCL - Special Windows Account - New & Modify [Mesa]-SSO73328 + +RijndaelEncryption +Infineon Technologies Americas Corp. +DxF3EKBGb4IlSTVtErlf5wD4e85V2U/SKzAgMDdb/1M=" +"EC EC SERIAL LOG SVC","EC\\ecseriallogsvc","New@ECpwd03212022","","" +"EC EDA Svc","EC\\ecedasvc","NewECPwd07112019!","","INC000004153071 +SSO74244 + +SR: CCL - Special Windows Account - New & Modify [Mesa]-SSO74244 + +RijndaelEncryption +Infineon Technologies Americas Corp. +IKsJmRVUH3xlv+RRELRbwoXYKwLvF4Re7k1Rigzpwf4=" +"EC FI Sys Admin","EC\\ECFISysAdmin","New@IRpwd12042017","","Prod - IIS - messa010ec (Metrology) +messa010ec.ec.local + +RijndaelEncryption +Infineon Technologies Americas Corp. +1yZhr69T4yzgqStVw2ngTVxol6auGMAwehanygzol5s=" +"EC MES CEP EAF SVC","EC\\ecmescepeafsvc","NewECPwd01282019!","","INC000004075899 +ORD1477029" +"EC YODA SVC","EC\\ecyodasvc","2QPYq72NFL#FoJnzt%QF","","INC000004148767 +SSO73202 + +Orderable: SR: CCL - Special Windows Account - New & Modify [Mesa]-SSO73202 + +RijndaelEncryption +Infineon Technologies Americas Corp. +IU4P8iQhoKt1BAkKONlZinuLPrwJvWRLxp/7i5HrtiY=" +"Yyy - EC FI SYS ADMIN","EC\\ecfisysadmin","","","" +"Yyy - EC-MES-FI-ADM-SUPPORT","EC\\ec-mes-fi-adm-support","","","Permission for server access FI Support + +Owners : +INFINEON\\MESPhares +NA\\MESRivard +Additional Owner: +Rivard Francois (IFAM IT FI MES)" +"Yyy - EC-MES-RDSUser-G","EC\\ec-mes-rdsuser-g","","","" +"ec serial log svc","EC\\ecseriallogsvc","New@ECpwd03212022","","" +"EC Report Services Admin","EC\\ECReportServicesAdmin","New@ECpwd01092023","","INC000006465152" +"MES APC SVC","INFINEON\\mesapcsvc","Zx5GFmk5s87!259126","","INC000004115217 +ORD1492221 + +RijndaelEncryption +Infineon Technologies Americas Corp. +RYGZYHE9Yh1q3b4oIjNK6nVHuiig7rHjZ9pUwwjBqCA=" +"MES EAF SVC","INFINEON\\meseafsvc","C4+!P-hN91aL?%j","","https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-SpecialWinAccountNew%20(1) + +" +"MES EDA SVC","INFINEON\\mesedasvc","Zx5GFmk5s79!25914","","INC000004134183 +ORD1499496 + +RijndaelEncryption +Infineon Technologies Americas Corp. +K1RyLhaIRyJTDbWutsuWWEiO2hTD3h7fW0BV/Cp+Ftw=" +"MES GaN EAF","INFINEON\\MESGaNEAF","Mk3GyRk5p25!86515","","RijndaelEncryption +Infineon Technologies Americas Corp. +tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=" +"MES YODA SVC","INFINEON\\mesyodasvc","Zx5GFmk5s97!259126","","INC000004115218 +ORD1492214 + +RijndaelEncryption +Infineon Technologies Americas Corp. +VwpEjlgytp9jkZQjEeCEUbxffBLE7CQeI5db/P6KGmQ=" +"Yyy - MES-ADM-FI-SUPPORT","INFINEON\\mes-adm-fi-support","","","" +"Zzz - MES CEP APC SVC","INFINEON\\mescepapcsvc","Zx5GFmk5s63!259111","","INC000004097252 +ORD1485381" +"Zzz - MES CEP EAF SVC","INFINEON\\mescepeafsvc","Zx5GFmk5s50!259128","","INC000004075899 +ORD1477029" +"EC US Seriallog Svc","infineon\\ECUSSeriallogSvc","YM+V#5LFJ1(w}%P","","" +"mes d1 unity 4 .ifx cep net","NA\\MESCATXMUSER","gKT2V#A$#fAB1jY","","mesd1unity4.ifxcep.net" +"MES FI Sys Admin","NA\\MESFISysAdmin","GaN2016=BestWafers!","","" +"MESA EAF","NA\\MESEAF","","","Don't know the password + +From: Liow Fui Lian (IFKM CSC FI SGI) +Sent: Thursday, July 11, 2019 9:48 PM +To: Phares Mike (IFAM IT FI MES) ; Rivard Francois (IFAM IT FI MES) +Cc: Crisp Dan (IFAM IT FI MES) +Subject: RE: NA\\MESEAF Service Account + + +Hi All, + +Spent some times to dig back the history of this account L +This account should be terminated as it was requested wrongly in NA domain. +It should be replaced by the MESEAF account in EC domain." +"Xxx - mescatxmuser","na.infineon.com\\mescatxmuser","gKT2V#A$#fAB1jY","","" +"Xxx - mescleanroom","na.infineon.com\\mescleanroom","FlyMetotheMar$777&","","" +"Xxx - mesconference","na.infineon.com\\mesconference","Infineon2016....*","","" +"Xxx - mesert","na.infineon.com\\mesert","Infineon20160412","","" +"Xxx - mspmnlead3","na.infineon.com\\mspmnlead3","nfineon2016....!","","" +"Local - mesd1unity7.ifxcep.net",".\\user","Welcomewelcome1","","" +"SP101 - Manager",".\\MANAGER","boss","\\\\10.95.154.12\\testdata","10.95.154.12" +"EC US LEO Camstar Tsvc","ECUSLEOCamstarTsvc",";tS&Yqp$i1(Kp;n","","10.89.140.63 +leosataec21.infineon.com" +"EC US LEO Camstar Psvc","ECUSLEOCamstarPsvc","AsY)[yV-iW(XX+4","","10.89.140.61 +loesapaec21.infineon.com + +10.89.140.62 +loesapaec22.infineon.com" diff --git a/Unix.sv b/Unix.sv new file mode 100644 index 0000000..fad4391 --- /dev/null +++ b/Unix.sv @@ -0,0 +1,56 @@ +"Account","Login Name","Password","Web Site","Comments" +"Prod Tibco/Yoda application (tibrvd)","tibco","@Mest1bc0adm","","From: Kim Peter (IFAM IT OS DC CD) +Sent: Friday, June 14, 2019 12:27 PM +Hostname or Package name: tibrvd.ec.local / 10.95.131.156 (two node cluster) + +tibrvd.EC.local [10.95.131.156] + +Prod +http://tibrvd.ec.local:8901/index.html +http://tibrvd.ec.local:8903/index.html + +Staging +http://tibrvd.ec.local:8904/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" +"Prod Tibco/Yoda application (mesxs014)","tibco","@Mest1bc0adm","","mesxsec014.EC.local [10.95.131.104] + +Prod +http://mesxsec014.ec.local:8901/index.html +http://mesxsec014.ec.local:8903/index.html + +Staging +http://mesxsec014.ec.local:8904/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" +"Prod Tibco/Yoda application (mesxs013)","tiboc","@Mest1bc0adm","","mesxsec013.EC.local [10.95.131.103] + +Prod +http://mesxsec013.ec.local:8901/index.html +http://mesxsec013.ec.local:8903/index.html + +Staging +http://mesxsec013.ec.local:8904/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" +"Dev Tibco/Yoda application (mesxs015)","tibco","@Mest1bc0adm","","mesxs015.mes.infineon.com [10.95.179.105] + +http://mesxs015.mes.infineon.com:8902/index.html + +IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP +MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/ +MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/ +MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/ +MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/" diff --git a/account/apccheck.md b/account/apccheck.md new file mode 100644 index 0000000..1c4cf9e --- /dev/null +++ b/account/apccheck.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.071Z" +updated: "2023-07-27T01:16:34.005Z" +tags: ["Dev"] +System: "DB" +--- + +# apccheck + +## Comment 2023-07-17 diff --git a/account/apccheck2.md b/account/apccheck2.md new file mode 100644 index 0000000..5fc7b75 --- /dev/null +++ b/account/apccheck2.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-17T18:04:00.606Z" +updated: "2023-07-25T16:49:09.643Z" +tags: ["Dev"] +System: "DB" +--- + +# apccheck2 + +## Comment 2023-07-17 diff --git a/account/applicationpoolidentity.md b/account/applicationpoolidentity.md new file mode 100644 index 0000000..9712bf8 --- /dev/null +++ b/account/applicationpoolidentity.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "ApplicationPoolIdentity" +created: "2023-07-18T17:14:12.075Z" +updated: "2023-07-26T14:37:08.932Z" +System: "" +--- + +# applicationpoolidentity + +## Comment 2023-07-17 diff --git a/account/caaphares.md b/account/caaphares.md new file mode 100644 index 0000000..1b8c982 --- /dev/null +++ b/account/caaphares.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Phares Mike (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.081Z" +updated: "2023-07-25T16:49:14.697Z" +System: "Active Directory" +--- + +# caaphares + +## Comment 2023-07-17 diff --git a/account/cepphares.md b/account/cepphares.md new file mode 100644 index 0000000..dc456b0 --- /dev/null +++ b/account/cepphares.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Phares Mike (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.084Z" +updated: "2023-07-25T16:49:15.575Z" +System: "Active Directory" +--- + +# cepphares + +## Comment 2023-07-17 diff --git a/account/dip.md b/account/dip.md new file mode 100644 index 0000000..4ec0b6a --- /dev/null +++ b/account/dip.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "FIMEST@fimest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.088Z" +updated: "2023-07-25T16:49:16.838Z" +tags: ["Dev"] +System: "DB" +--- + +# dip + +## Comment 2023-07-17 diff --git a/account/eafdev-admin-reporting.md b/account/eafdev-admin-reporting.md new file mode 100644 index 0000000..6446d4a --- /dev/null +++ b/account/eafdev-admin-reporting.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "FIMEST@fimest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.090Z" +updated: "2023-07-27T01:16:34.004Z" +tags: ["Dev"] +System: "DB" +--- + +# eafdev_admin_reporting + +## Comment 2023-07-17 diff --git a/account/eafdev.md b/account/eafdev.md new file mode 100644 index 0000000..cf627a8 --- /dev/null +++ b/account/eafdev.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "FIMEST@fimest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.097Z" +updated: "2023-07-25T16:49:31.259Z" +tags: ["Dev"] +System: "DB" +--- + +# eafdev + +## Comment 2023-07-17 diff --git a/account/ecapcsvc.md b/account/ecapcsvc.md new file mode 100644 index 0000000..7ca5d8d --- /dev/null +++ b/account/ecapcsvc.md @@ -0,0 +1,18 @@ +--- +type: "account" +description: "Service account for APC Windows service - Mike Phares" +created: "2023-07-18T17:14:12.100Z" +updated: "2023-08-09T15:51:49.113Z" +tags: ["service-account"] +System: "Active Directory" +--- + +# ecapcsvc + +```PowerShell +Get-ADUser -Filter "Name -eq 'ecapcsvc'" -Properties "LogonWorkstations" +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +``` + +- mestsa02ec,messa012ec,messa013ec +- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29) diff --git a/account/ecchaecworkflowsvc.md b/account/ecchaecworkflowsvc.md new file mode 100644 index 0000000..9e01a6b --- /dev/null +++ b/account/ecchaecworkflowsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Svc Acct for Nintex workflows on the EC iShares - Mote James (IFAM IT DSA IM)" +created: "2023-07-18T17:14:12.103Z" +updated: "2023-07-25T16:49:35.511Z" +System: "" +--- + +# ecchaecworkflowsvc + +## Comment 2023-07-17 diff --git a/account/eccleanroom.md b/account/eccleanroom.md new file mode 100644 index 0000000..0a47b39 --- /dev/null +++ b/account/eccleanroom.md @@ -0,0 +1,14 @@ +--- +type: "account" +description: "SVC Acct for CleanRoom - Surge Burboz" +created: "2023-07-18T17:14:12.105Z" +updated: "2023-07-27T16:09:46.465Z" +System: "" +--- + +# eccleanroom + +```PowerShell +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +Get-ADUser -Filter "Name -eq 'eccleanroom'" -Properties "LogonWorkstations" +``` diff --git a/account/ecedasvc.md b/account/ecedasvc.md new file mode 100644 index 0000000..3bdcb76 --- /dev/null +++ b/account/ecedasvc.md @@ -0,0 +1,17 @@ +--- +type: "account" +description: "Servc Acct EDA Windows service - Leslie Phares" +created: "2023-07-18T17:14:12.109Z" +updated: "2023-08-09T15:51:49.112Z" +System: "Active Directory" +--- + +# ecedasvc + +```PowerShell +Get-ADUser -Filter "Name -eq 'ecedasvc'" -Properties "LogonWorkstations" +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +``` + +- messa08ec,mestsa07ec +- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29) diff --git a/account/ecfiftpsvc.md b/account/ecfiftpsvc.md new file mode 100644 index 0000000..83422cf --- /dev/null +++ b/account/ecfiftpsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Svc Acct for Transfer EC raw metrology files from MES OpenInsight to TEM - Jonathan Ouellette" +created: "2023-07-18T17:14:12.112Z" +updated: "2023-07-25T16:49:39.228Z" +System: "" +--- + +# ecfiftpsvc + +## Comment 2023-07-17 diff --git a/account/ecfisysadmin.md b/account/ecfisysadmin.md new file mode 100644 index 0000000..d347a04 --- /dev/null +++ b/account/ecfisysadmin.md @@ -0,0 +1,17 @@ +--- +type: "account" +description: "Service account for Mesa FI Server Migration - Crisp Dan" +created: "2023-07-18T17:14:12.114Z" +updated: "2023-08-09T15:51:49.111Z" +System: "" +--- + +# ecfisysadmin + +```PowerShell +Get-ADUser -Filter "Name -eq 'ecfisysadmin'" -Properties "LogonWorkstations" +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +``` + +- messa01ec,messa03ec,messa04ec,~~mestsa01ec,~~messa06ec,messa010ec,messa05ec,messa019ec,mestsa08ec,messa016ec +- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29) diff --git a/account/ecftsvcglobalscape.md b/account/ecftsvcglobalscape.md new file mode 100644 index 0000000..bf68d74 --- /dev/null +++ b/account/ecftsvcglobalscape.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "" +created: "2023-07-18T17:14:12.117Z" +updated: "2023-07-25T16:49:41.603Z" +System: "" +--- + +# ecftsvcglobalscape + +## Comment 2023-07-17 diff --git a/account/ecftsvcreporting.md b/account/ecftsvcreporting.md new file mode 100644 index 0000000..85ddb41 --- /dev/null +++ b/account/ecftsvcreporting.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Filetransfer Reporting User" +created: "2023-07-18T17:14:12.119Z" +updated: "2023-07-25T16:49:42.413Z" +System: "" +--- + +# ecftsvcreporting + +## Comment 2023-07-17 diff --git a/account/ecmesatableau.md b/account/ecmesatableau.md new file mode 100644 index 0000000..f3f305c --- /dev/null +++ b/account/ecmesatableau.md @@ -0,0 +1,13 @@ +--- +type: "account" +description: "srv acct for the Mesa Tableau servers - Ouellette Jonathan" +created: "2023-07-18T17:14:12.122Z" +updated: "2023-07-27T16:09:26.212Z" +System: "" +--- + +# ecmesatableau + +```PowerShell +Get-ADUser -Filter "Name -eq 'ecmesatableau'" -Properties "LogonWorkstations" +``` diff --git a/account/ecmescepeafsvc.md b/account/ecmescepeafsvc.md new file mode 100644 index 0000000..fd1837c --- /dev/null +++ b/account/ecmescepeafsvc.md @@ -0,0 +1,14 @@ +--- +type: "account" +description: "SVC Acct For the EAF Apps File Transfer - Phares Mike" +created: "2023-07-18T17:14:12.127Z" +updated: "2023-07-27T16:17:03.777Z" +System: "Active Directory" +--- + +# ecmescepeafsvc + +```PowerShell +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +Get-ADUser -Filter "Name -eq 'ecmescepeafsvc'" -Properties "LogonWorkstations" +``` diff --git a/account/ecmeseaf.md b/account/ecmeseaf.md new file mode 100644 index 0000000..1cf5a40 --- /dev/null +++ b/account/ecmeseaf.md @@ -0,0 +1,18 @@ +--- +type: "account" +description: "Service acct for EAF system - Phares Mike" +created: "2023-07-18T17:14:12.130Z" +updated: "2023-08-09T15:51:49.101Z" +tags: ["service-account"] +System: "Active Directory" +--- + +# ecmeseaf + +```PowerShell +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281% +Get-ADUser -Filter "Name -eq 'ecmeseaf'" -Properties "LogonWorkstations" +``` + +- messa08ec,messa09ec,mestsa07ec,messa03ec,messa011ec +- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29) diff --git a/account/ecmessqlsv01mon.md b/account/ecmessqlsv01mon.md new file mode 100644 index 0000000..216dfe0 --- /dev/null +++ b/account/ecmessqlsv01mon.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Svc acct to run SQL services - Burboz Surge" +created: "2023-07-17T18:04:00.658Z" +updated: "2023-07-25T16:49:46.108Z" +System: "" +--- + +# ecmessqlsv01mon + +## Comment 2023-07-17 diff --git a/account/ecmessqlsv01svc.md b/account/ecmessqlsv01svc.md new file mode 100644 index 0000000..2e8edca --- /dev/null +++ b/account/ecmessqlsv01svc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Svc acct to run SQL services - Burboz Surge" +created: "2023-07-17T18:04:00.659Z" +updated: "2023-07-25T16:49:46.872Z" +System: "" +--- + +# ecmessqlsv01svc + +## Comment 2023-07-17 diff --git a/account/ecphares.md b/account/ecphares.md new file mode 100644 index 0000000..3c23357 --- /dev/null +++ b/account/ecphares.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "Admin acct for MES Factory Integration Appl on call support - Phares Mike" +created: "2023-07-18T17:14:12.133Z" +updated: "2023-07-26T14:33:38.595Z" +tags: ["admin-account"] +System: "Active Directory" +--- + +# ecphares + +## Comment 2023-07-17 diff --git a/account/ecreactorrecipes.md b/account/ecreactorrecipes.md new file mode 100644 index 0000000..e496287 --- /dev/null +++ b/account/ecreactorrecipes.md @@ -0,0 +1,14 @@ +--- +type: "account" +description: "Srv Acct for HTR reactors to copy data to EC fileshare" +created: "2023-07-18T17:14:12.135Z" +updated: "2023-07-27T16:16:58.219Z" +System: "" +--- + +# ecreactorrecipes + +```PowerShell +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +Get-ADUser -Filter "Name -eq 'ecreactorrecipes'" -Properties "LogonWorkstations" +``` diff --git a/account/ecreportservicesadmin.md b/account/ecreportservicesadmin.md new file mode 100644 index 0000000..443c450 --- /dev/null +++ b/account/ecreportservicesadmin.md @@ -0,0 +1,17 @@ +--- +type: "account" +description: "Svc Acct to create an agent for automated web deployments and for managing applications on the server - Wathen Daniel" +created: "2023-07-18T17:14:12.139Z" +updated: "2023-08-09T15:51:49.101Z" +System: "" +--- + +# ecreportservicesadmin + +```PowerShell +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +Get-ADUser -Filter "Name -eq 'ecreportservicesadmin'" -Properties "LogonWorkstations" +``` + +- messa020ec +- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29) diff --git a/account/ecsps2016.md b/account/ecsps2016.md new file mode 100644 index 0000000..3755342 --- /dev/null +++ b/account/ecsps2016.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "SharePoint Service account - James Mote" +created: "2023-07-17T18:04:00.662Z" +updated: "2023-07-25T16:49:50.907Z" +System: "" +--- + +# ecsps2016 + +## Comment 2023-07-17 diff --git a/account/ecsps2016farm.md b/account/ecsps2016farm.md new file mode 100644 index 0000000..e1d867a --- /dev/null +++ b/account/ecsps2016farm.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "SharePoint Service account For new SP2016 server - James Mote" +created: "2023-07-17T18:04:00.663Z" +updated: "2023-07-25T16:49:53.108Z" +System: "" +--- + +# ecsps2016farm + +## Comment 2023-07-17 diff --git a/account/ecsps2016service.md b/account/ecsps2016service.md new file mode 100644 index 0000000..f4d7c91 --- /dev/null +++ b/account/ecsps2016service.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Service Account for Windows Servers - James Mote" +created: "2023-07-17T18:04:00.664Z" +updated: "2023-07-25T16:49:53.925Z" +System: "" +--- + +# ecsps2016service + +## Comment 2023-07-17 diff --git a/account/ecsps2016write.md b/account/ecsps2016write.md new file mode 100644 index 0000000..e08f609 --- /dev/null +++ b/account/ecsps2016write.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Service Account for Windows Servers - James Mote" +created: "2023-07-17T18:04:00.664Z" +updated: "2023-07-25T16:49:54.895Z" +System: "" +--- + +# ecsps2016write + +## Comment 2023-07-17 diff --git a/account/ecsqlec01svc.md b/account/ecsqlec01svc.md new file mode 100644 index 0000000..dd3812e --- /dev/null +++ b/account/ecsqlec01svc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "" +created: "2023-07-17T18:04:00.665Z" +updated: "2023-07-25T16:49:55.707Z" +System: "" +--- + +# ecsqlec01svc + +## Comment 2023-07-17 diff --git a/account/ecsqlec02svc.md b/account/ecsqlec02svc.md new file mode 100644 index 0000000..78384cc --- /dev/null +++ b/account/ecsqlec02svc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "" +created: "2023-07-17T18:04:00.666Z" +updated: "2023-07-25T16:49:56.499Z" +System: "" +--- + +# ecsqlec02svc + +## Comment 2023-07-17 diff --git a/account/ecsqlec03svc.md b/account/ecsqlec03svc.md new file mode 100644 index 0000000..eac28b8 --- /dev/null +++ b/account/ecsqlec03svc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "" +created: "2023-07-17T18:04:00.667Z" +updated: "2023-07-25T16:49:57.269Z" +System: "" +--- + +# ecsqlec03svc + +## Comment 2023-07-17 diff --git a/account/ecstorageftpsvc.md b/account/ecstorageftpsvc.md new file mode 100644 index 0000000..5d7a38c --- /dev/null +++ b/account/ecstorageftpsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Svc acct for Non-EC data transfer - Peter Kim" +created: "2023-07-18T17:14:12.141Z" +updated: "2023-07-25T16:49:57.956Z" +System: "" +--- + +# ecstorageftpsvc + +## Comment 2023-07-17 diff --git a/account/ectemappsvc.md b/account/ectemappsvc.md new file mode 100644 index 0000000..938761b --- /dev/null +++ b/account/ectemappsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Service ACCT for Websites and Website Pools - Onyia Izuchukwu" +created: "2023-07-18T17:14:12.144Z" +updated: "2023-07-25T16:49:58.637Z" +System: "" +--- + +# ectemappsvc + +## Comment 2023-07-17 diff --git a/account/ecusleocamstarpsvc.md b/account/ecusleocamstarpsvc.md new file mode 100644 index 0000000..8499e1d --- /dev/null +++ b/account/ecusleocamstarpsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "ecusleoCamstarPsvc" +created: "2023-07-18T17:14:12.147Z" +updated: "2023-07-26T14:37:08.934Z" +System: "" +--- + +# ecusleocamstarpsvc + +## Comment 2023-07-17 diff --git a/account/ecusleocamstartsvc.md b/account/ecusleocamstartsvc.md new file mode 100644 index 0000000..9ede95e --- /dev/null +++ b/account/ecusleocamstartsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "ecusleoCamstarTsvc" +created: "2023-07-18T17:14:12.150Z" +updated: "2023-07-26T14:44:03.516Z" +System: "" +--- + +# ecusleocamstartsvc + +## Comment 2023-07-17 diff --git a/account/ecusseriallogsvc.md b/account/ecusseriallogsvc.md new file mode 100644 index 0000000..476ee81 --- /dev/null +++ b/account/ecusseriallogsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "ecusSerialLogsvc" +created: "2023-07-18T17:14:12.152Z" +updated: "2023-07-26T14:37:08.935Z" +System: "" +--- + +# ecusseriallogsvc + +## Comment 2023-07-17 diff --git a/account/ecusxfracassvc.md b/account/ecusxfracassvc.md new file mode 100644 index 0000000..cbde95a --- /dev/null +++ b/account/ecusxfracassvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "ecusXFracassvc" +created: "2023-07-18T17:14:12.155Z" +updated: "2023-07-26T14:36:25.090Z" +System: "" +--- + +# ecusxfracassvc + +## Comment 2023-07-17 diff --git a/account/ecyodasvc.md b/account/ecyodasvc.md new file mode 100644 index 0000000..56812e0 --- /dev/null +++ b/account/ecyodasvc.md @@ -0,0 +1,19 @@ +--- +type: "account" +description: "Service account for YODA / TIBCO Windows service - Mike Phares" +created: "2023-07-18T17:14:12.160Z" +updated: "2023-08-09T15:51:49.099Z" +tags: ["service-account"] +System: "Active Directory" +--- + +# ecyodasvc + +```PowerShell +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29 +# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29 +Get-ADUser -Filter "Name -eq 'ecyodasvc'" -Properties "LogonWorkstations" +``` + +- mestsa03ec,messa014ec,messa015ec +- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29) diff --git a/account/edatest.md b/account/edatest.md new file mode 100644 index 0000000..a027ff4 --- /dev/null +++ b/account/edatest.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "FIMEST@fimest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.163Z" +updated: "2023-07-25T16:50:03.183Z" +tags: ["Dev"] +System: "DB" +--- + +# edatest + +## Comment 2023-07-17 diff --git a/account/fdc-admin.md b/account/fdc-admin.md new file mode 100644 index 0000000..c54d314 --- /dev/null +++ b/account/fdc-admin.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.176Z" +updated: "2023-07-27T01:16:34.001Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_admin + +## Comment 2023-07-17 diff --git a/account/fdc-cerberus.md b/account/fdc-cerberus.md new file mode 100644 index 0000000..a14a98e --- /dev/null +++ b/account/fdc-cerberus.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.179Z" +updated: "2023-07-27T01:16:34.000Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_cerberus + +## Comment 2023-07-17 diff --git a/account/fdc-config.md b/account/fdc-config.md new file mode 100644 index 0000000..6229127 --- /dev/null +++ b/account/fdc-config.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.181Z" +updated: "2023-07-27T01:16:34.000Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_config + +## Comment 2023-07-17 diff --git a/account/fdc-config2.md b/account/fdc-config2.md new file mode 100644 index 0000000..841d94c --- /dev/null +++ b/account/fdc-config2.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.184Z" +updated: "2023-07-27T01:16:34.000Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_config2 + +## Comment 2023-07-17 diff --git a/account/fdc-dev.md b/account/fdc-dev.md new file mode 100644 index 0000000..e597439 --- /dev/null +++ b/account/fdc-dev.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.188Z" +updated: "2023-07-27T01:16:33.993Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_dev + +## Comment 2023-07-17 diff --git a/account/fdc-extractor.md b/account/fdc-extractor.md new file mode 100644 index 0000000..640c660 --- /dev/null +++ b/account/fdc-extractor.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.192Z" +updated: "2023-07-27T01:16:33.993Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_extractor + +## Comment 2023-07-17 diff --git a/account/fdc-job.md b/account/fdc-job.md new file mode 100644 index 0000000..0dc765d --- /dev/null +++ b/account/fdc-job.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.195Z" +updated: "2023-07-27T01:16:33.993Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_job + +## Comment 2023-07-17 diff --git a/account/fdc-parallel.md b/account/fdc-parallel.md new file mode 100644 index 0000000..9618474 --- /dev/null +++ b/account/fdc-parallel.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.199Z" +updated: "2023-07-27T01:16:33.990Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_parallel + +## Comment 2023-07-17 diff --git a/account/fdc-trend.md b/account/fdc-trend.md new file mode 100644 index 0000000..d96f5d6 --- /dev/null +++ b/account/fdc-trend.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.202Z" +updated: "2023-07-27T01:17:42.892Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_trend + +## Comment 2023-07-17 diff --git a/account/fdc-trend2.md b/account/fdc-trend2.md new file mode 100644 index 0000000..61614dc --- /dev/null +++ b/account/fdc-trend2.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.221Z" +updated: "2023-07-27T01:17:42.892Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_trend2 + +## Comment 2023-07-17 diff --git a/account/fdc-v32.md b/account/fdc-v32.md new file mode 100644 index 0000000..4c4ee4c --- /dev/null +++ b/account/fdc-v32.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.225Z" +updated: "2023-07-27T01:17:42.892Z" +tags: ["Dev"] +System: "DB" +--- + +# fdc_v32 + +## Comment 2023-07-17 diff --git a/account/ifxeafadmin.md b/account/ifxeafadmin.md new file mode 100644 index 0000000..9a95522 --- /dev/null +++ b/account/ifxeafadmin.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "# Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.227Z" +updated: "2023-07-25T16:50:15.563Z" +System: "Active Directory" +--- + +# ifxeafadmin + +## Comment 2023-07-17 diff --git a/account/ifxedaadmin.md b/account/ifxedaadmin.md new file mode 100644 index 0000000..c51a0ea --- /dev/null +++ b/account/ifxedaadmin.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "# Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.230Z" +updated: "2023-07-25T16:50:16.794Z" +System: "Active Directory" +--- + +# ifxedaadmin + +## Comment 2023-07-17 diff --git a/account/imported/2023-07-10.tsv b/account/imported/2023-07-10.tsv new file mode 100644 index 0000000..a54d53d --- /dev/null +++ b/account/imported/2023-07-10.tsv @@ -0,0 +1,19 @@ +type title description links body +account ApplicationPoolIdentity messa020ec;messa014;;;;;;;;; +account ecAPCsvc                 messa012ec;messa013ec;mestsa02ec;;;;;;;; +account ecFIsysadmin             messa04ec;messa06ec;messa010ec;mestsa06ec;mestsa01ec;messa01ec;messa05ec;messa016ec;messa019ec;messa03ec;mesd1unity10 +account ecmesEAF                 mestsa07ec;messa08ec;messa09ec;messa011ec;;;;;;; +account ecPhares                 elsstec101;messtec101;messtec102;;;;;;;; +account ECReportServicesAdmin   messa020ec;;;;;;;;;; +account ecusleoCamstarPsvc       loesapaec21;loesapaec22;;;;;;;;; +account ecusleoCamstarTsvc       leosataec21;;;;;;;;;; +account ecusSerialLogsvc         leosaec04;;;;;;;;;; +account ecusXFracassvc           leosatec01;messa014ec;messa015ec;mestsa03ec;;;;;;; +account LocalSystem             messv01ec;;;;;;;;;; +account mesAPCsvc               mestsa005;;;;;;;;;; +account mesEAFsvc               mestsa003;messa017;mestsa003;messa017;;;;;;; +account mesFIsysadmin           messa009;messa005;messa012;mestsa007;mestsa008;;;;;; +account mesganEAF               mestsa004;;;;;;;;;; +account mesYODAsvc               mestsa006;mestsa006;;;;;;;;; +account Phares                   ISCCVMD0AF56899;;;;;;;;;; +account Unknown                   messa017ec;messa018ec;leosatec01;leosatec04;leosaec04;messa1005;messa004;messt6501;messt6502;messa010;mesd1unity2;mesd1unity3;mesd1unity6;mesd1biorad4;mesd1unity4;mesd1unity1;mesd1unity5;mesd1unity7;mesd1unity8 diff --git a/account/imported/2023-07-17.tsv b/account/imported/2023-07-17.tsv new file mode 100644 index 0000000..f439070 --- /dev/null +++ b/account/imported/2023-07-17.tsv @@ -0,0 +1,71 @@ +type title description tags links body System +account apccheck APCMEST@apcmest-db.mes.infineon.com Dev DB +account apccheck2 APCMEST@apcmest-db.mes.infineon.com Dev DB +account applicationpoolidentity ApplicationPoolIdentity messa020ec;messa014;;;;;;;;; +account caaphares Phares Mike (IFAM IT FI MES) Active Directory +account cepphares Phares Mike (IFAM IT FI MES) Active Directory +account dip FIMEST@fimest-db.mes.infineon.com Dev DB +account eafdev FIMEST@fimest-db.mes.infineon.com Dev DB +account eafdev_admin_reporting FIMEST@fimest-db.mes.infineon.com Dev DB +account ecapcsvc Service account for APC Windows service - Mike Phares service messa012ec;messa013ec;mestsa02ec;;;;;;;; Active Directory +account ecchaecworkflowsvc Svc Acct for Nintex workflows on the EC iShares - Mote James (IFAM IT DSA IM) +account eccleanroom SVC Acct for CleanRoom - Surge Burboz +account ecedasvc Servc Acct EDA Windows service - Leslie Phares Active Directory +account ecfiftpsvc Svc Acct for Transfer EC raw metrology files from MES OpenInsight to TEM - Jonathan Ouellette +account ecfisysadmin Service account for Mesa FI Server Migration - Crisp Dan messa04ec;messa06ec;messa010ec;mestsa06ec;mestsa01ec;messa01ec;messa05ec;messa016ec;messa019ec;messa03ec;mesd1unity10 +account ecftsvcglobalscape +account ecftsvcreporting Filetransfer Reporting User +account ecmesatableau srv acct for the Mesa Tableau servers - Ouellette Jonathan +account ecmescepeafsvc SVC Acct For the EAF Apps File Transfer - Phares Mike Active Directory +account ecmeseaf Service acct for EAF system - Phares Mike service mestsa07ec;messa08ec;messa09ec;messa011ec;;;;;;; Active Directory +account ecmessqlsv01mon Svc acct to run SQL services - Burboz Surge +account ecmessqlsv01svc Svc acct to run SQL services - Burboz Surge +account ecphares Admin acct for MES Factory Integration Appl on call support - Phares Mike admin elsstec101;messtec101;messtec102;;;;;;;; Active Directory +account ecreactorrecipes Srv Acct for HTR reactors to copy data to EC fileshare +account ecreportservicesadmin Svc Acct to create an agent for automated web deployments and for managing applications on the server - Wathen Daniel messa020ec;;;;;;;;;; +account ecsps2016 SharePoint Service account - James Mote +account ecsps2016farm SharePoint Service account For new SP2016 server - James Mote +account ecsps2016service Service Account for Windows Servers - James Mote +account ecsps2016write Service Account for Windows Servers - James Mote +account ecsqlec01svc +account ecsqlec02svc +account ecsqlec03svc +account ecstorageftpsvc Svc acct for Non-EC data transfer - Peter Kim +account ectemappsvc Service ACCT for Websites and Website Pools - Onyia Izuchukwu +account ecusleocamstarpsvc ecusleoCamstarPsvc       loesapaec21;loesapaec22;;;;;;;;; +account ecusleocamstartsvc ecusleoCamstarTsvc       leosataec21;;;;;;;;;; +account ecusseriallogsvc ecusSerialLogsvc         leosaec04;;;;;;;;;; +account ecusxfracassvc ecusXFracassvc           leosatec01;;;;;;; +account ecyodasvc Service account for YODA / TIBCO Windows service - Mike Phares service messa014ec;messa015ec;mestsa03ec;;;;;;;;; Active Directory +account edatest FIMEST@fimest-db.mes.infineon.com Dev DB +account fdc_admin APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_cerberus APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_config APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_config2 APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_dev APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_extractor APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_job APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_parallel APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_trend APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_trend2 APCMEST@apcmest-db.mes.infineon.com Dev DB +account fdc_v32 APCMEST@apcmest-db.mes.infineon.com Dev DB +account ifxeafadmin # Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES) Active Directory +account ifxedaadmin # Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES) Active Directory +account localsystem LocalSystem             messv01ec;;;;;;;;;; +account logeval APCMEST@apcmest-db.mes.infineon.com Dev DB +account mesapcsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) special mestsa005;;;;;;;;;; Active Directory +account mescepapcsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) Active Directory +account mescepeafsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) Active Directory +account meseaf # Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES) Active Directory +account meseafsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) special mestsa003;messa017;mestsa003;messa017;;;;;;; Active Directory +account mesedasvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) Active Directory +account mesfisysadmin mesFIsysadmin           messa009;messa005;messa012;mestsa007;mestsa008;;;;;; +account mesganeaf # Service account Phares Mike (IFAM IT FI MES) / Rivard Francois (IFAM IT FI MES) service mestsa004;;;;;;;;;; Active Directory +account mesphares Phares Mike (IFAM IT FI MES) Active Directory +account mesyodasvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) special mestsa006;mestsa006;;;;;;;;; Active Directory +account ocns APCMEST@apcmest-db.mes.infineon.com Dev DB +account ole_admin APCMEST@apcmest-db.mes.infineon.com Dev DB +account phares Phares Mike (IFAM IT FI MES) personal ISCCVMD0AF56899;;;;;;;;;; Active Directory +account phares Urania UX +account unknown Unknown                   messa017ec;messa018ec;leosatec01;leosatec04;leosaec04;messa1005;messa004;messt6501;messt6502;messa010;mesd1unity2;mesd1unity3;mesd1unity6;mesd1biorad4;mesd1unity4;mesd1unity1;mesd1unity5;mesd1unity7;mesd1unity8 +account yodatest FIMEST@fimest-db.mes.infineon.com Dev DB diff --git a/account/localsystem.md b/account/localsystem.md new file mode 100644 index 0000000..a28188d --- /dev/null +++ b/account/localsystem.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "LocalSystem" +created: "2023-07-18T17:14:12.232Z" +updated: "2023-07-26T14:36:04.663Z" +System: "" +--- + +# localsystem + +## Comment 2023-07-17 diff --git a/account/logeval.md b/account/logeval.md new file mode 100644 index 0000000..4d2a7b8 --- /dev/null +++ b/account/logeval.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.236Z" +updated: "2023-07-25T16:50:19.337Z" +tags: ["Dev"] +System: "DB" +--- + +# logeval + +## Comment 2023-07-17 diff --git a/account/mesapcsvc.md b/account/mesapcsvc.md new file mode 100644 index 0000000..f68a19d --- /dev/null +++ b/account/mesapcsvc.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.244Z" +updated: "2023-07-26T14:34:00.102Z" +tags: ["special-account"] +System: "Active Directory" +--- + +# mesapcsvc + +## Comment 2023-07-17 diff --git a/account/mescepapcsvc.md b/account/mescepapcsvc.md new file mode 100644 index 0000000..d0a8741 --- /dev/null +++ b/account/mescepapcsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.249Z" +updated: "2023-07-25T16:50:21.433Z" +System: "Active Directory" +--- + +# mescepapcsvc + +## Comment 2023-07-17 diff --git a/account/mescepeafsvc.md b/account/mescepeafsvc.md new file mode 100644 index 0000000..971bfee --- /dev/null +++ b/account/mescepeafsvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.253Z" +updated: "2023-07-25T16:50:22.681Z" +System: "Active Directory" +--- + +# mescepeafsvc + +## Comment 2023-07-17 diff --git a/account/meseaf.md b/account/meseaf.md new file mode 100644 index 0000000..c26d440 --- /dev/null +++ b/account/meseaf.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "# Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.255Z" +updated: "2023-07-25T16:50:23.541Z" +System: "Active Directory" +--- + +# meseaf + +## Comment 2023-07-17 diff --git a/account/meseafsvc.md b/account/meseafsvc.md new file mode 100644 index 0000000..751d85e --- /dev/null +++ b/account/meseafsvc.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.267Z" +updated: "2023-07-27T01:09:24.741Z" +tags: ["special-account"] +System: "Active Directory" +--- + +# meseafsvc + +## Comment 2023-07-17 diff --git a/account/mesedasvc.md b/account/mesedasvc.md new file mode 100644 index 0000000..7da97e8 --- /dev/null +++ b/account/mesedasvc.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.272Z" +updated: "2023-07-25T16:50:25.393Z" +System: "Active Directory" +--- + +# mesedasvc + +## Comment 2023-07-17 diff --git a/account/mesfisysadmin.md b/account/mesfisysadmin.md new file mode 100644 index 0000000..416e483 --- /dev/null +++ b/account/mesfisysadmin.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "mesFIsysadmin" +created: "2023-07-18T17:14:12.274Z" +updated: "2023-07-27T01:09:40.566Z" +System: "" +--- + +# mesfisysadmin + +## Comment 2023-07-17 diff --git a/account/mesganeaf.md b/account/mesganeaf.md new file mode 100644 index 0000000..b6c81f7 --- /dev/null +++ b/account/mesganeaf.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "# Service account Phares Mike (IFAM IT FI MES) / Rivard Francois (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.277Z" +updated: "2023-07-26T14:33:11.328Z" +tags: ["service-account"] +System: "Active Directory" +--- + +# mesganeaf + +## Comment 2023-07-17 diff --git a/account/mesphares.md b/account/mesphares.md new file mode 100644 index 0000000..ff67e79 --- /dev/null +++ b/account/mesphares.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Phares Mike (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.278Z" +updated: "2023-07-25T16:50:27.830Z" +System: "Active Directory" +--- + +# mesphares + +## Comment 2023-07-17 diff --git a/account/mesyodasvc.md b/account/mesyodasvc.md new file mode 100644 index 0000000..8c4b148 --- /dev/null +++ b/account/mesyodasvc.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)" +created: "2023-07-18T17:14:12.279Z" +updated: "2023-07-26T14:34:00.102Z" +tags: ["special-account"] +System: "Active Directory" +--- + +# mesyodasvc + +## Comment 2023-07-17 diff --git a/account/ocns.md b/account/ocns.md new file mode 100644 index 0000000..4a3c865 --- /dev/null +++ b/account/ocns.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.281Z" +updated: "2023-07-25T16:50:29.664Z" +tags: ["Dev"] +System: "DB" +--- + +# ocns + +## Comment 2023-07-17 diff --git a/account/ole-admin.md b/account/ole-admin.md new file mode 100644 index 0000000..06a1d29 --- /dev/null +++ b/account/ole-admin.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "APCMEST@apcmest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.282Z" +updated: "2023-07-27T01:17:42.892Z" +tags: ["Dev"] +System: "DB" +--- + +# ole_admin + +## Comment 2023-07-17 diff --git a/account/phares.md b/account/phares.md new file mode 100644 index 0000000..67e5297 --- /dev/null +++ b/account/phares.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Urania" +created: "2023-07-18T17:14:12.283Z" +updated: "2023-07-25T16:50:32.043Z" +System: "UX" +--- + +# phares + +## Comment 2023-07-17 diff --git a/account/tibco.md b/account/tibco.md new file mode 100644 index 0000000..c4649b8 --- /dev/null +++ b/account/tibco.md @@ -0,0 +1,24 @@ +--- +type: "account" +description: "" +created: "2023-09-25T16:09:52.213Z" +updated: "2023-09-25T16:09:52.213Z" +tags: ["service-account"] +System: "Active Directory" +--- + +# tibco + +## mesxs015 + +- [ ] [Remote Daemon Agent](../process/remote-daemon-agent.md) + +## mesxs013 + +- [ ] [Remote Daemon Agent](../process/remote-daemon-agent.md) + +## mesxs014 + +- [ ] [Remote Daemon Agent](../process/remote-daemon-agent.md) + +## Comment 2023-07-17 diff --git a/account/unknown.md b/account/unknown.md new file mode 100644 index 0000000..c637bf2 --- /dev/null +++ b/account/unknown.md @@ -0,0 +1,11 @@ +--- +type: "account" +description: "Unknown" +created: "2023-07-18T17:14:12.285Z" +updated: "2023-07-27T01:11:03.410Z" +System: "" +--- + +# unknown + +## Comment 2023-07-17 diff --git a/account/yodatest.md b/account/yodatest.md new file mode 100644 index 0000000..058a430 --- /dev/null +++ b/account/yodatest.md @@ -0,0 +1,12 @@ +--- +type: "account" +description: "FIMEST@fimest-db.mes.infineon.com" +created: "2023-07-18T17:14:12.288Z" +updated: "2023-07-25T16:50:35.684Z" +tags: ["Dev"] +System: "DB" +--- + +# yodatest + +## Comment 2023-07-17 diff --git a/ad/ifx-ecus-mes-prj-spc-si-r-l.md b/ad/ifx-ecus-mes-prj-spc-si-r-l.md new file mode 100644 index 0000000..616a115 --- /dev/null +++ b/ad/ifx-ecus-mes-prj-spc-si-r-l.md @@ -0,0 +1,135 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.971Z" +updated: "2024-03-05T01:23:56.972Z" +--- + +# ifx-ecus-mes-prj-spc-si-r-l + +## IFX-ECUS-MES-PRJ-SPC-SI-R-L + +Group Details + +Distinghuished Name +CN=IFX-ECUS-MES-PRJ-SPC-SI-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Groups are needed for Stealth File Shares in MESA +Group Owner +Hackett Joseph (IT OS WP AM) +Group Expiration +n/a +Direct Members +103 +Notes +Additional Owner: +Patel Kartik +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\aobukho1 +infineon\bellamy +infineon\bmoon1 +infineon\cbecker1 +infineon\chovann1 +infineon\conway +infineon\crik1 +infineon\deshong +infineon\dluna1 +infineon\dsien1 +infineon\garoj +infineon\goodwide +infineon\goraya +infineon\gordono +infineon\gramire4 +infineon\henderss +infineon\hendrica +infineon\howarth +infineon\hvu3 +infineon\ifxres1352c116b +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2b9350797 +infineon\ifxres3498fc0cf +infineon\ifxres3f2288f85 +infineon\ifxres4506e0732 +infineon\ifxres46f537532 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres7800e1076 +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresa85d02e76 +infineon\ifxresab54751bb +infineon\ifxresc4744f893 +infineon\ifxresd38a4fc8e +infineon\ifxresdb8e25210 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresfb3cddd26 +infineon\ifxresfcd7b22bd +infineon\jaquez +infineon\jfuente1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\lawrence +infineon\lopesanthony +infineon\marroquinbra +infineon\marstein +infineon\mcchesne +infineon\mcouste1 +infineon\millard +infineon\mjarsey1 +infineon\mtangen1 +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nclark1 +infineon\olmstead +infineon\otero +infineon\otooled +infineon\ouellette +infineon\palmeria +infineon\peirce +infineon\phares +infineon\phaukap1 +infineon\rblunt1 +infineon\rbraini1 +infineon\rinesmith +infineon\rubina +infineon\smiller2 +infineon\swoodya1 +infineon\taustin1 +infineon\tcarrie1 +infineon\tkhokha1 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\ttaylor1 +infineon\vstucke1 +infineon\wampler +infineon\wwest1 +``` diff --git a/ad/ifx-ecus-stealth-apc-users.md b/ad/ifx-ecus-stealth-apc-users.md new file mode 100644 index 0000000..5c9a373 --- /dev/null +++ b/ad/ifx-ecus-stealth-apc-users.md @@ -0,0 +1,32 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.973Z" +updated: "2024-03-05T01:23:56.973Z" +--- + +# ifx-ecus-stealth-apc-users + +## IFX-ECUS-Stealth-APCUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-APCUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group diff --git a/ad/ifx-ecus-stealth-eaf-users.md b/ad/ifx-ecus-stealth-eaf-users.md new file mode 100644 index 0000000..d3033dc --- /dev/null +++ b/ad/ifx-ecus-stealth-eaf-users.md @@ -0,0 +1,32 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.974Z" +updated: "2024-03-05T01:23:56.974Z" +--- + +# ifx-ecus-stealth-eaf-users + +## IFX-ECUS-Stealth-EAFUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-EAFUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group diff --git a/ad/ifx-ecus-stealth-eda-users.md b/ad/ifx-ecus-stealth-eda-users.md new file mode 100644 index 0000000..c7f5aeb --- /dev/null +++ b/ad/ifx-ecus-stealth-eda-users.md @@ -0,0 +1,32 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.975Z" +updated: "2024-03-05T01:23:56.976Z" +--- + +# ifx-ecus-stealth-eda-users + +## IFX-ECUS-Stealth-EDAUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-EDAUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group diff --git a/ad/ifx-ecus-stealth-fab-approval-users.md b/ad/ifx-ecus-stealth-fab-approval-users.md new file mode 100644 index 0000000..11ffc18 --- /dev/null +++ b/ad/ifx-ecus-stealth-fab-approval-users.md @@ -0,0 +1,32 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.977Z" +updated: "2024-03-05T01:23:56.977Z" +--- + +# ifx-ecus-stealth-fab-approval-users + +## IFX-ECUS-Stealth-FabApprovalUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-FabApprovalUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +124 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Tucker Chase (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group diff --git a/ad/ifx-ecus-stealth-fabtime-users.md b/ad/ifx-ecus-stealth-fabtime-users.md new file mode 100644 index 0000000..9a7b962 --- /dev/null +++ b/ad/ifx-ecus-stealth-fabtime-users.md @@ -0,0 +1,32 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.979Z" +updated: "2024-03-05T01:23:56.979Z" +--- + +# ifx-ecus-stealth-fabtime-users + +## IFX-ECUS-Stealth-FabtimeUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-FabtimeUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +0 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Ouellette Jonathan (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group diff --git a/ad/ifx-ecus-stealth-iqs-users.md b/ad/ifx-ecus-stealth-iqs-users.md new file mode 100644 index 0000000..be4ee6a --- /dev/null +++ b/ad/ifx-ecus-stealth-iqs-users.md @@ -0,0 +1,138 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.981Z" +updated: "2024-03-05T01:23:56.981Z" +--- + +# ifx-ecus-stealth-iqs-users + +## IFX-ECUS-Stealth-IQSUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-IQSUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\aobukho1 +infineon\bellamy +infineon\bmoon1 +infineon\cbecker1 +infineon\chovann1 +infineon\conway +infineon\crik1 +infineon\deshong +infineon\dluna1 +infineon\dsien1 +infineon\garoj +infineon\goodwide +infineon\goraya +infineon\gordono +infineon\gramire4 +infineon\henderss +infineon\hendrica +infineon\howarth +infineon\hvu3 +infineon\ifxres1352c116b +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2b9350797 +infineon\ifxres3498fc0cf +infineon\ifxres3f2288f85 +infineon\ifxres4506e0732 +infineon\ifxres46f537532 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres7800e1076 +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresa85d02e76 +infineon\ifxresab54751bb +infineon\ifxresc4744f893 +infineon\ifxresd38a4fc8e +infineon\ifxresdb8e25210 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresfb3cddd26 +infineon\ifxresfcd7b22bd +infineon\jaquez +infineon\jfuente1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\lawrence +infineon\lopesanthony +infineon\marroquinbra +infineon\marstein +infineon\mcchesne +infineon\mcouste1 +infineon\millard +infineon\mjarsey1 +infineon\mtangen1 +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nclark1 +infineon\olmstead +infineon\otero +infineon\otooled +infineon\ouellette +infineon\palmeria +infineon\peirce +infineon\phares +infineon\phaukap1 +infineon\rblunt1 +infineon\rbraini1 +infineon\rinesmith +infineon\rubina +infineon\smiller2 +infineon\swoodya1 +infineon\taustin1 +infineon\tcarrie1 +infineon\tkhokha1 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\ttaylor1 +infineon\vstucke1 +infineon\wampler +infineon\wwest1 +``` diff --git a/ad/ifx-ecus-stealth-mes-fileshare-user.md b/ad/ifx-ecus-stealth-mes-fileshare-user.md new file mode 100644 index 0000000..1d79eea --- /dev/null +++ b/ad/ifx-ecus-stealth-mes-fileshare-user.md @@ -0,0 +1,227 @@ +--- +type: "note" +created: "2024-01-14T02:17:43.863Z" +updated: "2024-02-13T15:20:33.605Z" +--- + +# IFX-ECUS-Stealth-MES-FileshareUser + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-MES-FileshareUser,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected FileShares +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +183 +Notes +Additional Owner: +Hackett Joseph (IFAM IT OS WP AM) +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\asasfehr +infineon\ayalaborst +infineon\bardogrey +infineon\bautistaguil +infineon\bellamy +infineon\benally +infineon\bergb +infineon\bmoon1 +infineon\boblettb +infineon\brownk +infineon\btougas1 +infineon\calvertk +infineon\canche +infineon\cardenasreni +infineon\cardenasshil +infineon\carneys +infineon\cbecker1 +infineon\chavira +infineon\cheneycarly +infineon\choijoh +infineon\chowb +infineon\coler +infineon\conway +infineon\cozat +infineon\crik1 +infineon\curl +infineon\dacres +infineon\davidsontrey +infineon\delereekevin +infineon\dluna1 +infineon\dsien1 +infineon\ecapcsvc +infineon\eccleanroom +infineon\ecedasvc +infineon\ecfisysadmin +infineon\ecfisysadminsvc +infineon\ecmescepeafsvc +infineon\ecmeseaf +infineon\ecreactorrecipes +infineon\ecreportservicesadmin +infineon\ecyodasvc +infineon\ejones1 +infineon\elsbury +infineon\fitial +infineon\garoj +infineon\gaudino +infineon\gonzalesrobe +infineon\goodwide +infineon\gordono +infineon\gramire4 +infineon\hardyrichard +infineon\hart +infineon\henderss +infineon\hendrica +infineon\hopkins +infineon\hopkinssavyo +infineon\hopperd +infineon\howarth +infineon\howellleslie +infineon\hvu3 +infineon\ifxmeseppiapps01 +infineon\ifxmeseppiapps02 +infineon\ifxmeseppiapps03 +infineon\ifxmeseppiapps04 +infineon\ifxmesiappslead01 +infineon\ifxmespackiapps01 +infineon\ifxmespackiapps02 +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2b9350797 +infineon\ifxres2dc9530f2 +infineon\ifxres3f2288f85 +infineon\ifxres4506e0732 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresab54751bb +infineon\ifxresc4744f893 +infineon\ifxresd38a4fc8e +infineon\ifxresd8b6c1414 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresfb3cddd26 +infineon\ifxresfb8e81a3f +infineon\ifxresfcd7b22bd +infineon\ingramcarina +infineon\jaquez +infineon\jdocker1 +infineon\jfuente1 +infineon\jhacket1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jonesj +infineon\joness +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\kpatel1 +infineon\ksmith3 +infineon\lawrence +infineon\lehrich +infineon\leibeh +infineon\liow +infineon\lopesanthony +infineon\louie +infineon\marroquinbra +infineon\marstein +infineon\martindonald +infineon\mcchesne +infineon\mcouste1 +infineon\mendozagiuli +infineon\mesfacilities1 +infineon\mesmitchem +infineon\mesouellette +infineon\mespkim1 +infineon\millard +infineon\mitchem +infineon\moreland +infineon\mtangen1 +infineon\murstieberd +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nagelcor +infineon\nclark1 +infineon\olmstead +infineon\origele +infineon\otero +infineon\otooled +infineon\ouellette +infineon\palmeria +infineon\peirce +infineon\petersalicia +infineon\phares +infineon\phaukap1 +infineon\pkim1 +infineon\pnair2 +infineon\quinones +infineon\rblunt1 +infineon\rbraini1 +infineon\rbuaben1 +infineon\rinesmith +infineon\riveraa +infineon\rosalesappal +infineon\rubina +infineon\sburboz1 +infineon\seschen1 +infineon\siers +infineon\singleton +infineon\smiller2 +infineon\snaraya1 +infineon\sopin +infineon\spalos1 +infineon\stieberd +infineon\swoodya1 +infineon\swyers +infineon\taustin1 +infineon\tcarrie1 +infineon\tcheney1 +infineon\teobo +infineon\tkhokha1 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\tuckerc +infineon\unterwfl +infineon\uribejua +infineon\vstucke1 +infineon\vuthomasviet +infineon\wampler +infineon\wmontja1 +infineon\wwest1 +infineon\yazzie +infineon\zacchini +na\mescleanroom +``` diff --git a/ad/ifx-ecus-stealth-mes-report-users.md b/ad/ifx-ecus-stealth-mes-report-users.md new file mode 100644 index 0000000..75af50f --- /dev/null +++ b/ad/ifx-ecus-stealth-mes-report-users.md @@ -0,0 +1,215 @@ +--- +type: "note" +created: "2024-01-14T02:17:44.242Z" +updated: "2024-02-13T15:22:01.971Z" +--- + +# IFX-ECUS-Stealth-MESReportUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-MESReportUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +166 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Ouellette Jonathan (IFAM IT FI MES) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\asasfehr +infineon\ayalaborst +infineon\bardogrey +infineon\bautistaguil +infineon\bellamy +infineon\benally +infineon\bergb +infineon\bmoon1 +infineon\boblettb +infineon\brownk +infineon\btougas1 +infineon\calvertk +infineon\canche +infineon\cardenasreni +infineon\cardenasshil +infineon\carneys +infineon\cbecker1 +infineon\chavira +infineon\cheneycarly +infineon\choijoh +infineon\chowb +infineon\coler +infineon\conway +infineon\crik1 +infineon\curl +infineon\dacres +infineon\davidsontrey +infineon\delereekevin +infineon\deshong +infineon\dluna1 +infineon\dsien1 +infineon\ejones1 +infineon\elsbury +infineon\fitial +infineon\garoj +infineon\gaudino +infineon\gonzalesrobe +infineon\goodwide +infineon\goraya +infineon\gordono +infineon\gramire4 +infineon\hardyrichard +infineon\hart +infineon\henderss +infineon\hendrica +infineon\hopkins +infineon\hopkinssavyo +infineon\hopperd +infineon\howarth +infineon\howellleslie +infineon\hvu3 +infineon\ifxmeseppiapps01 +infineon\ifxmeseppiapps02 +infineon\ifxmeseppiapps03 +infineon\ifxmeseppiapps04 +infineon\ifxmesiappslead01 +infineon\ifxmespackiapps01 +infineon\ifxmespackiapps02 +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2b9350797 +infineon\ifxres2dc9530f2 +infineon\ifxres3f2288f85 +infineon\ifxres4506e0732 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresab54751bb +infineon\ifxresc4744f893 +infineon\ifxresd38a4fc8e +infineon\ifxresd8b6c1414 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresfb3cddd26 +infineon\ifxresfb8e81a3f +infineon\ifxresfcd7b22bd +infineon\ingramcarina +infineon\jaquez +infineon\jdocker1 +infineon\jfuente1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jonesj +infineon\joness +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\ksmith3 +infineon\lawrence +infineon\lehrich +infineon\leibeh +infineon\liow +infineon\lopesanthony +infineon\louie +infineon\marroquinbra +infineon\marstein +infineon\martindonald +infineon\mcchesne +infineon\mcouste1 +infineon\mendozagiuli +infineon\mesfacilities1 +infineon\mesmitchem +infineon\mesouellette +infineon\mespkim1 +infineon\millard +infineon\mitchem +infineon\moreland +infineon\mtangen1 +infineon\murstieberd +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nagelcor +infineon\nclark1 +infineon\olmstead +infineon\otero +infineon\otooled +infineon\ouellette +infineon\palmeria +infineon\peirce +infineon\petersalicia +infineon\phares +infineon\phaukap1 +infineon\pnair2 +infineon\quinones +infineon\rblunt1 +infineon\rbraini1 +infineon\rbuaben1 +infineon\rinesmith +infineon\riveraa +infineon\rosalesappal +infineon\rubina +infineon\sburboz1 +infineon\seschen1 +infineon\siers +infineon\singleton +infineon\smiller2 +infineon\sopin +infineon\spalos1 +infineon\stieberd +infineon\swoodya1 +infineon\swyers +infineon\taustin1 +infineon\tcarrie1 +infineon\tcheney1 +infineon\teobo +infineon\tkhokha1 +infineon\tmiller2 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\tuckerc +infineon\unterwfl +infineon\uribejua +infineon\vstucke1 +infineon\vuthomasviet +infineon\wampler +infineon\wmontja1 +infineon\wwest1 +infineon\yazzie +infineon\zacchini +na\mescleanroom +``` diff --git a/ad/ifx-ecus-stealth-metrology-users.md b/ad/ifx-ecus-stealth-metrology-users.md new file mode 100644 index 0000000..32476b0 --- /dev/null +++ b/ad/ifx-ecus-stealth-metrology-users.md @@ -0,0 +1,215 @@ +--- +type: "note" +created: "2024-01-14T02:17:45.223Z" +updated: "2024-02-13T15:21:15.226Z" +--- + +# IFX-ECUS-Stealth-MetrologyUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-MetrologyUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +166 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\asasfehr +infineon\ayalaborst +infineon\bardogrey +infineon\bautistaguil +infineon\bellamy +infineon\benally +infineon\bergb +infineon\bmoon1 +infineon\boblettb +infineon\brownk +infineon\btougas1 +infineon\calvertk +infineon\canche +infineon\cardenasreni +infineon\cardenasshil +infineon\carneys +infineon\cbecker1 +infineon\chavira +infineon\cheneycarly +infineon\choijoh +infineon\chowb +infineon\coler +infineon\conway +infineon\crik1 +infineon\curl +infineon\dacres +infineon\davidsontrey +infineon\delereekevin +infineon\deshong +infineon\dluna1 +infineon\dsien1 +infineon\ecmescepeafsvc +infineon\ecmeseaf +infineon\ejones1 +infineon\elsbury +infineon\fitial +infineon\garoj +infineon\gaudino +infineon\gonzalesrobe +infineon\goodwide +infineon\goraya +infineon\gordono +infineon\gramire4 +infineon\hardyrichard +infineon\hart +infineon\henderss +infineon\hendrica +infineon\hopkins +infineon\hopkinssavyo +infineon\hopperd +infineon\howarth +infineon\howellleslie +infineon\hvu3 +infineon\ifxmeseppiapps01 +infineon\ifxmeseppiapps02 +infineon\ifxmeseppiapps03 +infineon\ifxmeseppiapps04 +infineon\ifxmesiappslead01 +infineon\ifxmespackiapps01 +infineon\ifxmespackiapps02 +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2b9350797 +infineon\ifxres2dc9530f2 +infineon\ifxres3f2288f85 +infineon\ifxres4506e0732 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresab54751bb +infineon\ifxresc4744f893 +infineon\ifxresd38a4fc8e +infineon\ifxresd8b6c1414 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresfb3cddd26 +infineon\ifxresfb8e81a3f +infineon\ifxresfcd7b22bd +infineon\ingramcarina +infineon\jaquez +infineon\jdocker1 +infineon\jfuente1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jonesj +infineon\joness +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\ksmith3 +infineon\lawrence +infineon\lehrich +infineon\leibeh +infineon\liow +infineon\lopesanthony +infineon\louie +infineon\marroquinbra +infineon\marstein +infineon\martindonald +infineon\mcchesne +infineon\mcouste1 +infineon\mendozagiuli +infineon\mesfacilities1 +infineon\mesmitchem +infineon\mesouellette +infineon\mespkim1 +infineon\millard +infineon\mitchem +infineon\moreland +infineon\mtangen1 +infineon\murstieberd +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nagelcor +infineon\nclark1 +infineon\olmstead +infineon\otero +infineon\otooled +infineon\ouellette +infineon\palmeria +infineon\peirce +infineon\petersalicia +infineon\phares +infineon\phaukap1 +infineon\pnair2 +infineon\quinones +infineon\rblunt1 +infineon\rbraini1 +infineon\rbuaben1 +infineon\rinesmith +infineon\riveraa +infineon\rosalesappal +infineon\rubina +infineon\sburboz1 +infineon\seschen1 +infineon\siers +infineon\singleton +infineon\smiller2 +infineon\sopin +infineon\spalos1 +infineon\stieberd +infineon\swoodya1 +infineon\swyers +infineon\taustin1 +infineon\tcarrie1 +infineon\tcheney1 +infineon\teobo +infineon\tkhokha1 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\tuckerc +infineon\unterwfl +infineon\uribejua +infineon\vstucke1 +infineon\vuthomasviet +infineon\wampler +infineon\wmontja1 +infineon\wwest1 +infineon\yazzie +infineon\zacchini +na\mescleanroom +``` diff --git a/ad/ifx-ecus-stealth-oi-users.md b/ad/ifx-ecus-stealth-oi-users.md new file mode 100644 index 0000000..5273a75 --- /dev/null +++ b/ad/ifx-ecus-stealth-oi-users.md @@ -0,0 +1,213 @@ +--- +type: "note" +created: "2024-01-14T02:17:44.794Z" +updated: "2024-02-13T15:21:34.413Z" +--- + +# IFX-ECUS-Stealth-OIUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-OIUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Ouellette Jonathan (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\asasfehr +infineon\ayalaborst +infineon\bardogrey +infineon\bautistaguil +infineon\bellamy +infineon\benally +infineon\bergb +infineon\bmoon1 +infineon\boblettb +infineon\brownk +infineon\btougas1 +infineon\calvertk +infineon\canche +infineon\cardenasreni +infineon\cardenasshil +infineon\carneys +infineon\cbecker1 +infineon\chavira +infineon\cheneycarly +infineon\choijoh +infineon\chowb +infineon\coler +infineon\conway +infineon\crik1 +infineon\curl +infineon\dacres +infineon\davidsontrey +infineon\delereekevin +infineon\deshong +infineon\dluna1 +infineon\dsien1 +infineon\ejones1 +infineon\elsbury +infineon\fitial +infineon\garoj +infineon\gaudino +infineon\gonzalesrobe +infineon\goodwide +infineon\goraya +infineon\gordono +infineon\gramire4 +infineon\hardyrichard +infineon\hart +infineon\henderss +infineon\hendrica +infineon\hopkins +infineon\hopkinssavyo +infineon\hopperd +infineon\howarth +infineon\howellleslie +infineon\hvu3 +infineon\ifxmeseppiapps01 +infineon\ifxmeseppiapps02 +infineon\ifxmeseppiapps03 +infineon\ifxmeseppiapps04 +infineon\ifxmesiappslead01 +infineon\ifxmespackiapps01 +infineon\ifxmespackiapps02 +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2b9350797 +infineon\ifxres2dc9530f2 +infineon\ifxres3f2288f85 +infineon\ifxres4506e0732 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresab54751bb +infineon\ifxresc4744f893 +infineon\ifxresd38a4fc8e +infineon\ifxresd8b6c1414 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresfb3cddd26 +infineon\ifxresfb8e81a3f +infineon\ifxresfcd7b22bd +infineon\ingramcarina +infineon\jaquez +infineon\jdocker1 +infineon\jfuente1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jonesj +infineon\joness +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\ksmith3 +infineon\lawrence +infineon\lehrich +infineon\leibeh +infineon\liow +infineon\lopesanthony +infineon\louie +infineon\marroquinbra +infineon\marstein +infineon\martindonald +infineon\mcchesne +infineon\mcouste1 +infineon\mendozagiuli +infineon\mesfacilities1 +infineon\mesmitchem +infineon\mesouellette +infineon\mespkim1 +infineon\millard +infineon\mitchem +infineon\moreland +infineon\mtangen1 +infineon\murstieberd +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nagelcor +infineon\nclark1 +infineon\olmstead +infineon\otero +infineon\otooled +infineon\ouellette +infineon\palmeria +infineon\peirce +infineon\petersalicia +infineon\phares +infineon\phaukap1 +infineon\pnair2 +infineon\quinones +infineon\rblunt1 +infineon\rbraini1 +infineon\rbuaben1 +infineon\rinesmith +infineon\riveraa +infineon\rosalesappal +infineon\rubina +infineon\sburboz1 +infineon\seschen1 +infineon\siers +infineon\singleton +infineon\smiller2 +infineon\sopin +infineon\spalos1 +infineon\stieberd +infineon\swoodya1 +infineon\swyers +infineon\taustin1 +infineon\tcarrie1 +infineon\tcheney1 +infineon\teobo +infineon\tkhokha1 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\tuckerc +infineon\unterwfl +infineon\uribejua +infineon\vstucke1 +infineon\vuthomasviet +infineon\wampler +infineon\wmontja1 +infineon\wwest1 +infineon\yazzie +infineon\zacchini +na\mescleanroom +``` diff --git a/ad/ifx-ecus-stealth-yoda-users.md b/ad/ifx-ecus-stealth-yoda-users.md new file mode 100644 index 0000000..12ddb29 --- /dev/null +++ b/ad/ifx-ecus-stealth-yoda-users.md @@ -0,0 +1,213 @@ +--- +type: "note" +created: "2024-01-14T02:17:45.557Z" +updated: "2024-02-13T15:22:19.728Z" +--- + +# IFX-ECUS-Stealth-YodaUsers + +Group Details + +Distinghuished Name +CN=IFX-ECUS-Stealth-YodaUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner +Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\asasfehr +infineon\ayalaborst +infineon\bardogrey +infineon\bautistaguil +infineon\bellamy +infineon\benally +infineon\bergb +infineon\bmoon1 +infineon\boblettb +infineon\brownk +infineon\btougas1 +infineon\calvertk +infineon\canche +infineon\cardenasreni +infineon\cardenasshil +infineon\carneys +infineon\cbecker1 +infineon\chavira +infineon\cheneycarly +infineon\choijoh +infineon\chowb +infineon\coler +infineon\conway +infineon\crik1 +infineon\curl +infineon\dacres +infineon\davidsontrey +infineon\delereekevin +infineon\deshong +infineon\dluna1 +infineon\dsien1 +infineon\ejones1 +infineon\elsbury +infineon\fitial +infineon\garoj +infineon\gaudino +infineon\gonzalesrobe +infineon\goodwide +infineon\goraya +infineon\gordono +infineon\gramire4 +infineon\hardyrichard +infineon\hart +infineon\henderss +infineon\hendrica +infineon\hopkins +infineon\hopkinssavyo +infineon\hopperd +infineon\howarth +infineon\howellleslie +infineon\hvu3 +infineon\ifxmeseppiapps01 +infineon\ifxmeseppiapps02 +infineon\ifxmeseppiapps03 +infineon\ifxmeseppiapps04 +infineon\ifxmesiappslead01 +infineon\ifxmespackiapps01 +infineon\ifxmespackiapps02 +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2b9350797 +infineon\ifxres2dc9530f2 +infineon\ifxres3f2288f85 +infineon\ifxres4506e0732 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresab54751bb +infineon\ifxresc4744f893 +infineon\ifxresd38a4fc8e +infineon\ifxresd8b6c1414 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresfb3cddd26 +infineon\ifxresfb8e81a3f +infineon\ifxresfcd7b22bd +infineon\ingramcarina +infineon\jaquez +infineon\jdocker1 +infineon\jfuente1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jonesj +infineon\joness +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\ksmith3 +infineon\lawrence +infineon\lehrich +infineon\leibeh +infineon\liow +infineon\lopesanthony +infineon\louie +infineon\marroquinbra +infineon\marstein +infineon\martindonald +infineon\mcchesne +infineon\mcouste1 +infineon\mendozagiuli +infineon\mesfacilities1 +infineon\mesmitchem +infineon\mesouellette +infineon\mespkim1 +infineon\millard +infineon\mitchem +infineon\moreland +infineon\mtangen1 +infineon\murstieberd +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nagelcor +infineon\nclark1 +infineon\olmstead +infineon\otero +infineon\otooled +infineon\ouellette +infineon\palmeria +infineon\peirce +infineon\petersalicia +infineon\phares +infineon\phaukap1 +infineon\pnair2 +infineon\quinones +infineon\rblunt1 +infineon\rbraini1 +infineon\rbuaben1 +infineon\rinesmith +infineon\riveraa +infineon\rosalesappal +infineon\rubina +infineon\sburboz1 +infineon\seschen1 +infineon\siers +infineon\singleton +infineon\smiller2 +infineon\sopin +infineon\spalos1 +infineon\stieberd +infineon\swoodya1 +infineon\swyers +infineon\taustin1 +infineon\tcarrie1 +infineon\tcheney1 +infineon\teobo +infineon\tkhokha1 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\tuckerc +infineon\unterwfl +infineon\uribejua +infineon\vstucke1 +infineon\vuthomasviet +infineon\wampler +infineon\wmontja1 +infineon\wwest1 +infineon\yazzie +infineon\zacchini +na\mescleanroom +``` diff --git a/ad/ifx-mes-prj-ec_spc_si_import-c-l.md b/ad/ifx-mes-prj-ec_spc_si_import-c-l.md new file mode 100644 index 0000000..f14c07b --- /dev/null +++ b/ad/ifx-mes-prj-ec_spc_si_import-c-l.md @@ -0,0 +1,227 @@ +# ifx-mes-prj-ec_spc_si_import-c-l + +## IFX-MES-PRJ-EC_SPC_Si_Import-C-L + +Group Details + +Distinghuished Name +CN=IFX-MES-PRJ-EC_SPC_Si_Import-C-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission group for STEALTH share \\MESSA021EC.INFINEON.COM\EC_SPC_Si_Import +Group Owner +Hackett Joseph (IT OS WP) +Group Expiration +n/a +Direct Members +199 +Notes +Additional Owner: +Hackett Joseph (IT OS WP) +Phares Mike (IT FI MES) +Ouellette Jonathan (IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +```bash domain \ account +infineon\amarti4 +infineon\asasfehr +infineon\auscharlton +infineon\ayalaborst +infineon\bardogrey +infineon\bautistaguil +infineon\bellamy +infineon\benally +infineon\bergb +infineon\bmoon1 +infineon\brownk +infineon\btougas1 +infineon\cardenasreni +infineon\cardenasshil +infineon\carneys +infineon\cbecker1 +infineon\charlton +infineon\chavira +infineon\cheneycarly +infineon\chowb +infineon\conway +infineon\cozat +infineon\crik1 +infineon\curl +infineon\dacres +infineon\delereekevin +infineon\deshong +infineon\dluna1 +infineon\dsien1 +infineon\ecapcsvc +infineon\eccleanroom +infineon\ecedasvc +infineon\ecfisysadmin +infineon\ecfisysadminsvc +infineon\ecmescepeafsvc +infineon\ecmeseaf +infineon\ecreactorrecipes +infineon\ecreportservicesadmin +infineon\ecyodasvc +infineon\ejones1 +infineon\elsbury +infineon\fitial +infineon\garoj +infineon\gaudino +infineon\goodwide +infineon\gordono +infineon\gramire4 +infineon\hardyrichard +infineon\hart +infineon\henderss +infineon\hendrica +infineon\hopperd +infineon\howarth +infineon\hvu3 +infineon\ifxmeseppiapps01 +infineon\ifxmeseppiapps02 +infineon\ifxmeseppiapps03 +infineon\ifxmeseppiapps04 +infineon\ifxmesiappslead01 +infineon\ifxmespackiapps01 +infineon\ifxmespackiapps02 +infineon\ifxres052227094 +infineon\ifxres0ddf78c46 +infineon\ifxres189dd5c8b +infineon\ifxres20ef1e000 +infineon\ifxres20f3c2fe3 +infineon\ifxres2699eeb6c +infineon\ifxres2914ffc2d +infineon\ifxres2b9350797 +infineon\ifxres2dc9530f2 +infineon\ifxres3486af362 +infineon\ifxres3f2288f85 +infineon\ifxres431cf1e0e +infineon\ifxres4506e0732 +infineon\ifxres490f3d8be +infineon\ifxres49ea5b955 +infineon\ifxres585cd5d8e +infineon\ifxres58c812cae +infineon\ifxres5c1b5ed4d +infineon\ifxres5e3584700 +infineon\ifxres61f90d43d +infineon\ifxres65d278ff6 +infineon\ifxres698b29da6 +infineon\ifxres6c28ec3e8 +infineon\ifxres735f9a474 +infineon\ifxres748063f3a +infineon\ifxres82b759227 +infineon\ifxres88cd30657 +infineon\ifxres961e34f42 +infineon\ifxres9ca8962b9 +infineon\ifxres9ef7dc15c +infineon\ifxres9f4ee895d +infineon\ifxresa396c6187 +infineon\ifxresab54751bb +infineon\ifxresb66fa8b6a +infineon\ifxresb77913fdc +infineon\ifxresbf5e465ae +infineon\ifxresc4744f893 +infineon\ifxresc5cf7df07 +infineon\ifxrescd3a9a2cb +infineon\ifxresd38a4fc8e +infineon\ifxresd8b6c1414 +infineon\ifxrese18fde6b6 +infineon\ifxrese21104f61 +infineon\ifxrese7b0e2ed6 +infineon\ifxreseab5a5c7d +infineon\ifxresedf87e325 +infineon\ifxresf589ff5f3 +infineon\ifxresfb3cddd26 +infineon\ifxresfb8e81a3f +infineon\ifxresfcd7b22bd +infineon\ifxresfff87eb0e +infineon\ingramcarina +infineon\jaquez +infineon\jdocker1 +infineon\jfuente1 +infineon\jhacket1 +infineon\jhollan2 +infineon\jmcinty2 +infineon\jsolis1 +infineon\jsperli1 +infineon\kclark1 +infineon\kdeshon1 +infineon\kirkland +infineon\knewger1 +infineon\kpatel1 +infineon\ksmith3 +infineon\lawrence +infineon\lehrich +infineon\leibeh +infineon\liow +infineon\lopesanthony +infineon\louie +infineon\marroquinbra +infineon\marstein +infineon\martindonald +infineon\mcchesne +infineon\mcouste1 +infineon\mendozagiuli +infineon\mesmitchem +infineon\mesouellette +infineon\mesphares +infineon\mespkim1 +infineon\millard +infineon\mitchem +infineon\mtangen1 +infineon\murstieberd +infineon\mvalenc3 +infineon\mwalsh1 +infineon\nagelcor +infineon\nclark1 +infineon\origele +infineon\otero +infineon\otooled +infineon\ouellette +infineon\padillri +infineon\palmeria +infineon\peirce +infineon\phares +infineon\phaukap1 +infineon\pkim1 +infineon\pnair2 +infineon\quinones +infineon\rblunt1 +infineon\rbraini1 +infineon\rbuaben1 +infineon\rinesmith +infineon\rosalesappal +infineon\rubina +infineon\sburboz1 +infineon\seschen1 +infineon\siers +infineon\smiller2 +infineon\snaraya1 +infineon\sopin +infineon\spalos1 +infineon\stieberd +infineon\swoodya1 +infineon\swyers +infineon\taustin1 +infineon\tcarrie1 +infineon\teobo +infineon\tkhokha1 +infineon\tmiller2 +infineon\tmunoz1 +infineon\tnguyen6 +infineon\torreand +infineon\tuckerc +infineon\unterwfl +infineon\uribejua +infineon\vstucke1 +infineon\vuthomasviet +infineon\wampler +infineon\wmontja1 +infineon\wwest1 +infineon\yazzie +infineon\zacchini +na\mescleanroom +na\mesfacilities1 +``` diff --git a/ad/res.md b/ad/res.md new file mode 100644 index 0000000..ebe3bfe --- /dev/null +++ b/ad/res.md @@ -0,0 +1,617 @@ +c:\windows\system32>whoami +infineon\ifxresc4744f893 + +c:\windows\system32>whoami /groups + +GROUP INFORMATION +created: "2024-03-05T01:23:56.982Z" +updated: "2024-03-05T01:23:56.983Z" +type: "note" +----------------- + +# res + + +Group Name +=============================================== +EU\VIH-APP-ProcessFramework-U +Group Details +Distinghuished Name +CN=VIH-APP-ProcessFramework-U,OU=Groups,OU=Users,OU=VIH,DC=eu,DC=infineon,DC=com +Group Description +Group to consolidate the different groups for intranet access user groups (ARIS needs one AD group to work with). Group placement: VIH selected to ensure consistency, because all ARIS servers are located in Villach. +Group Owner Just Christine (IT RDI RD PE) +Group Expiration +n/a +Direct Members +10 +Notes +Additional Owner: +Opetnik Ingo (IFAG IT DSA RD PE / External) +Nosbuesch Armin (IFAG IT DSA RD PE / External) +Schaffrian Walter (IFAG IT DSA RD PE / External) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +EU\VIH-iWebAccess-Shared-U +Group Details +Distinghuished Name +CN=VIH-iWebAccess-Shared-U,OU=Groups,OU=Users,OU=VIH,DC=eu,DC=infineon,DC=com +Group Description +Group containing shared/special accounts for iWeb Access +Group Owner Cicogna Michael (IT RDI IM WPC) +Group Expiration +n/a +Direct Members +27461 +Notes + +processed by AutomatedGroupProcessing 2/12/2024 4:00:51 PM +Additional Owner: +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category + +INFINEON\ELS-GPO-EC-ISC-ALLOW-LOGIN +Group Details +Distinghuished Name +CN=ELS-GPO-EC-ISC-ALLOW-LOGIN,OU=SecGrp,OU=NA,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission to allow login for EC ISC users on client +Group Owner Narayan Suhas (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +531 +Notes +Additional Owner: +Patel Kurt (IFAM IT OS DC ST) +Limjuco Jeremy (IFAM IT OS IUC IE) +Nguyen Khiem (IFAM IT OS IUC IE) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ACS-USR_BE_UWM +Group Details +Distinghuished Name +CN=IFX-ACS-USR_BE_UWM,OU=SecGrp,OU=Global,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission group for application access UWM on FAB BE baseline +Group Owner Quing Christian (CSC FI BE ESS DPT) +Group Expiration +n/a +Direct Members +9814 +Notes +Additional Owner: +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ADM-RDAppConfig +Group Details +Distinghuished Name +CN=IFX-ADM-RDAppConfig,OU=RDS,OU=Global,OU=IFX-ADM,DC=infineon,DC=com +Group Description +WebAccess Link config via SCCM +Group Owner Tauschitz Stefan (IT OS WP ADO) +Group Expiration +n/a +Direct Members +22328 +Notes +Additional Owner: +Schoeninger Emanuel (IFKL IT OS WP MEL EE) +processed by AutomatedGroupProcessing 2/12/2024 7:01:12 PM +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-LEO-DPT-ITCRO-R-L +Group Details +Distinghuished Name +CN=IFX-ECUS-LEO-DPT-ITCRO-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +LEO EC File Shares User Data Access Groups +Group Owner Hackett Joseph (IT OS WP AM) +Group Expiration +n/a +Direct Members +2 +Notes +Additional Owner: +Patel Kartik +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-MES-DPT-EpiReactorRecipes-C-L +Group Details +Distinghuished Name +CN=IFX-ECUS-MES-DPT-EpiReactorRecipes-C-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Groups are needed for Stealth File Shares in MESA +Group Owner Hackett Joseph (IT OS WP AM) +Group Expiration +n/a +Direct Members +49 +Notes +Additional Owner: +Patel Kartik +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-MES-DPT-Production-C-L +Group Details +Distinghuished Name +CN=IFX-ECUS-MES-DPT-Production-C-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Groups are needed for Stealth File Shares in MESA +Group Owner Hackett Joseph (IT OS WP AM) +Group Expiration +n/a +Direct Members +102 +Notes +Additional Owner: +Patel Kartik +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-MES-PRJ-EC_YodaConfig-R-L +Group Details +Distinghuished Name +CN=IFX-ECUS-MES-PRJ-EC_YodaConfig-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Yoda config read +Group Owner Phares Mike (IT FI MES) +Group Expiration +n/a +Direct Members +54 +Notes +Additional Owner: +Ouellette Jonathan (IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-MES-PRJ-SPC-SI-R-L +Group Details +Distinghuished Name +CN=IFX-ECUS-MES-PRJ-SPC-SI-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Groups are needed for Stealth File Shares in MESA +Group Owner Hackett Joseph (IT OS WP AM) +Group Expiration +n/a +Direct Members +103 +Notes +Additional Owner: +Patel Kartik +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-APCUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-APCUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-EAFUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-EAFUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-EDAUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-EDAUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-IQSUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-IQSUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-MES-FileshareUser +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-MES-FileshareUser,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected FileShares +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +183 +Notes +Additional Owner: +Hackett Joseph (IFAM IT OS WP AM) +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-MESReportUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-MESReportUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +166 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Ouellette Jonathan (IFAM IT FI MES) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-MetrologyUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-MetrologyUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +166 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-OIUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-OIUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Ouellette Jonathan (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-ECUS-Stealth-YodaUsers +Group Details +Distinghuished Name +CN=IFX-ECUS-Stealth-YodaUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission Group for MES EC Stealth Protected Resources +Group Owner Limjuco Jeremy (IT OS IFC NRZ) +Group Expiration +n/a +Direct Members +164 +Notes +Additional Owner: +Patel Kartik +Kim Peter (IFAM IT OS DC DB OP) +Narayan Suhas (IFAM IT OS IFC NRZ) +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-GPO-DeviceAccounts +Group Details +Distinghuished Name +CN=IFX-GPO-DeviceAccounts,OU=Global,OU=IFX-ADM,DC=infineon,DC=com +Group Description +Group for all Device Accounts for ClientAccess +Group Owner Dolliner Gabriele (IT OS IFC IAM) +Group Expiration +n/a +Direct Members +25993 +Notes +Additional Owner: +Lindinger Juergen (IFAG IT OS WP MC) +processed by AutomatedGroupProcessing 2/12/2024 7:01:12 PM +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + + +INFINEON\IFX-IntranetSocial-Readers +Group Details +Distinghuished Name +CN=IFX-IntranetSocial-Readers,OU=IntranetSocial,OU=Global,OU=IFX-Groups,DC=infineon,DC=com +Group Description +n/a +Group Owner Cicogna Michael (IT RDI IM WPC) +Group Expiration +n/a +Direct Members +8 +Notes +Additional Owner: +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category + +INFINEON\IFX-IntranetSocial-SharedAccounts-U +Group Details +Distinghuished Name +CN=IFX-IntranetSocial-SharedAccounts-U,OU=IntranetSocial,OU=Global,OU=IFX-Groups,DC=infineon,DC=com +Group Description +n/a +Group Owner Linder Michael (IT RDI IM WPC / External) +Group Expiration +n/a +Direct Members +9 +Notes +Additional Owner: +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category + +INFINEON\IFX-RDA-iApps-InfinityQS-MES +Group Details +Distinghuished Name +CN=IFX-RDA-iApps-InfinityQS-MES,OU=RDS,OU=Global,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission group for application access InfinityQS-MES 2016 +Group Owner Phares Mike (IT FI MES) +Group Expiration +n/a +Direct Members +101 +Notes +Additional Owner: +Ouellette Jonathan (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-RDA-iApps-OpenInsight-MES +Group Details +Distinghuished Name +CN=IFX-RDA-iApps-OpenInsight-MES,OU=RDS,OU=Global,OU=IFX-Groups,DC=infineon,DC=com +Group Description +Permission group for application access OpenInsight-MES 2016 +Group Owner Ouellette Jonathan (IT FI MES) +Group Expiration +n/a +Direct Members +160 +Notes +Additional Owner: +Phares Mike (IFAM IT FI MES) +Tucker Chase (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-Video-PublicViewers-U +Group Details +Distinghuished Name +CN=IFX-Video-PublicViewers-U,OU=IntranetSocial,OU=Global,OU=IFX-Groups,DC=infineon,DC=com +Group Description +n/a +Group Owner Linder Michael (IT RDI IM WPC / External) +Group Expiration +n/a +Direct Members +1 +Notes +Additional Owner: +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category + +INFINEON\MES-DPT-mesadocs-R +Group Details +Distinghuished Name +CN=MES-DPT-mesadocs-R,OU=FileShare,OU=NA,OU=IFX-Groups,DC=infineon,DC=com +Group Description +ShareMan-NodeID: 140720 +Group Owner Treanor Matthew (PROC FMFE WAF PE) +Group Expiration +n/a +Direct Members +154 +Notes +Additional Owner: +McIntyre Juanita (IFEPI MFG QM) +Becker Chad (IFEPI GaN OP) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +ShareMan + +NA\MES-ADM-FAB-USERS-G +Group Details +Distinghuished Name +CN=MES-ADM-FAB-USERS-G,OU=Groups,OU=Users,OU=MES,DC=na,DC=infineon,DC=com +Group Description +User group for Mesa fab users +Group Owner Lemke Charles (IT OS WP MC) +Group Expiration +n/a +Direct Members +42 +Notes +Additional Owner: +Obukhoff Anton (IFEPI P IT OS OAM WP) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +NA\MES-APP-OpenInsight-Users +Group Details +Distinghuished Name +CN=MES-APP-OpenInsight-Users,OU=Groups,OU=Users,OU=MES,DC=na,DC=infineon,DC=com +Group Description +Authentication group for OpenInsight application launch +Group Owner Ouellette Jonathan (IT FI MES) +Group Expiration +n/a +Direct Members +165 +Notes +Additional Owner: +Phares Mike (IFAM IT FI MES) +Group Type +This group is a security group (usually this group type is used to grant access to resources, e.g. Shares). +Category +Security Group + +INFINEON\IFX-All-Users-U + +INFINEON\IFX-GPO-SecurePwdPolicy-G + +Group |Name |AD |Owner |Owner |Owner |Owner |Owner +IT |EU\VIH-APP-ProcessFramework-U |CN=VIH-APP-ProcessFramework-U,OU=Groups,OU=Users,OU=VIH,DC=eu,DC=infineon,DC=com |Just Christine (IT RDI RD PE) |Opetnik Ingo (IFAG IT DSA RD PE / External)|Nosbuesch Armin (IFAG IT DSA RD PE / External)|Schaffrian Walter (IFAG IT DSA RD PE / External)| +IT |EU\VIH-iWebAccess-Shared-U |CN=VIH-iWebAccess-Shared-U,OU=Groups,OU=Users,OU=VIH,DC=eu,DC=infineon,DC=com |Cicogna Michael (IT RDI IM WPC) | | | | +IT |INFINEON\ELS-GPO-EC-ISC-ALLOW-LOGIN |CN=ELS-GPO-EC-ISC-ALLOW-LOGIN,OU=SecGrp,OU=NA,OU=IFX-Groups,DC=infineon,DC=com |Narayan Suhas (IT OS IFC NRZ) |Patel Kurt (IFAM IT OS DC ST) |Limjuco Jeremy (IFAM IT OS IUC IE) |Nguyen Khiem (IFAM IT OS IUC IE) | +FI |INFINEON\IFX-ACS-USR_BE_UWM |CN=IFX-ACS-USR_BE_UWM,OU=SecGrp,OU=Global,OU=IFX-Groups,DC=infineon,DC=com |Quing Christian (CSC FI BE ESS DPT) | | | | +IT |INFINEON\IFX-ADM-RDAppConfig |CN=IFX-ADM-RDAppConfig,OU=RDS,OU=Global,OU=IFX-ADM,DC=infineon,DC=com |Tauschitz Stefan (IT OS WP ADO) |Schoeninger Emanuel (IFKL IT OS WP MEL EE) | | | +IT |INFINEON\IFX-All-Users-U | | | | | | +IT |INFINEON\IFX-ECUS-LEO-DPT-ITCRO-R-L |CN=IFX-ECUS-LEO-DPT-ITCRO-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Hackett Joseph (IT OS WP AM) |Patel Kartik | | | +IT |INFINEON\IFX-ECUS-MES-DPT-EpiReactorRecipes-C-L|CN=IFX-ECUS-MES-DPT-EpiReactorRecipes-C-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Hackett Joseph (IT OS WP AM) |Patel Kartik | | | +IT |INFINEON\IFX-ECUS-MES-DPT-Production-C-L |CN=IFX-ECUS-MES-DPT-Production-C-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Hackett Joseph (IT OS WP AM) |Patel Kartik | | | +FI - Mesa|INFINEON\IFX-ECUS-MES-PRJ-EC_YodaConfig-R-L |CN=IFX-ECUS-MES-PRJ-EC_YodaConfig-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Phares Mike (IT FI MES) |Ouellette Jonathan (IT FI MES) | | | +IT |INFINEON\IFX-ECUS-MES-PRJ-SPC-SI-R-L |CN=IFX-ECUS-MES-PRJ-SPC-SI-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Hackett Joseph (IT OS WP AM) |Patel Kartik | | | +FI - Mesa|INFINEON\IFX-ECUS-Stealth-APCUsers |CN=IFX-ECUS-Stealth-APCUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Phares Mike (IFAM IT FI MES) +FI - Mesa|INFINEON\IFX-ECUS-Stealth-EAFUsers |CN=IFX-ECUS-Stealth-EAFUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Phares Mike (IFAM IT FI MES) +FI - Mesa|INFINEON\IFX-ECUS-Stealth-EDAUsers |CN=IFX-ECUS-Stealth-EDAUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Phares Mike (IFAM IT FI MES) +FI - Mesa|INFINEON\IFX-ECUS-Stealth-IQSUsers |CN=IFX-ECUS-Stealth-IQSUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Phares Mike (IFAM IT FI MES) +IT |INFINEON\IFX-ECUS-Stealth-MES-FileshareUser |CN=IFX-ECUS-Stealth-MES-FileshareUser,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Hackett Joseph (IFAM IT OS WP AM) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) +FI - Mesa|INFINEON\IFX-ECUS-Stealth-MESReportUsers |CN=IFX-ECUS-Stealth-MESReportUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Ouellette Jonathan (IFAM IT FI MES) +FI - Mesa|INFINEON\IFX-ECUS-Stealth-MetrologyUsers |CN=IFX-ECUS-Stealth-MetrologyUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Phares Mike (IFAM IT FI MES) +FI - Mesa|INFINEON\IFX-ECUS-Stealth-OIUsers |CN=IFX-ECUS-Stealth-OIUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Ouellette Jonathan (IFAM IT FI MES) +FI - Mesa|INFINEON\IFX-ECUS-Stealth-YodaUsers |CN=IFX-ECUS-Stealth-YodaUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com |Limjuco Jeremy (IT OS IFC NRZ) |Patel Kartik |Kim Peter (IFAM IT OS DC DB OP) |Narayan Suhas (IFAM IT OS IFC NRZ) |Phares Mike (IFAM IT FI MES) +IT |INFINEON\IFX-GPO-DeviceAccounts |CN=IFX-GPO-DeviceAccounts,OU=Global,OU=IFX-ADM,DC=infineon,DC=com |Dolliner Gabriele (IT OS IFC IAM) |Lindinger Juergen (IFAG IT OS WP MC) | | | +IT |INFINEON\IFX-GPO-SecurePwdPolicy-G | | | | | | +IT |INFINEON\IFX-IntranetSocial-Readers |CN=IFX-IntranetSocial-Readers,OU=IntranetSocial,OU=Global,OU=IFX-Groups,DC=infineon,DC=com |Cicogna Michael (IT RDI IM WPC) | | | | +IT |INFINEON\IFX-IntranetSocial-SharedAccounts-U |CN=IFX-IntranetSocial-SharedAccounts-U,OU=IntranetSocial,OU=Global,OU=IFX-Groups,DC=infineon,DC=com|Linder Michael (IT RDI IM WPC / External)| | | | +FI - Mesa|INFINEON\IFX-RDA-iApps-InfinityQS-MES |CN=IFX-RDA-iApps-InfinityQS-MES,OU=RDS,OU=Global,OU=IFX-Groups,DC=infineon,DC=com |Phares Mike (IT FI MES) |Ouellette Jonathan (IFAM IT FI MES) | | | +FI - Mesa|INFINEON\IFX-RDA-iApps-OpenInsight-MES |CN=IFX-RDA-iApps-OpenInsight-MES,OU=RDS,OU=Global,OU=IFX-Groups,DC=infineon,DC=com |Ouellette Jonathan (IT FI MES) |Phares Mike (IFAM IT FI MES) |Tucker Chase (IFAM IT FI MES) | | +IT |INFINEON\IFX-Video-PublicViewers-U |CN=IFX-Video-PublicViewers-U,OU=IntranetSocial,OU=Global,OU=IFX-Groups,DC=infineon,DC=com |Linder Michael (IT RDI IM WPC / External)| | | | +Business |INFINEON\MES-DPT-mesadocs-R |CN=MES-DPT-mesadocs-R,OU=FileShare,OU=NA,OU=IFX-Groups,DC=infineon,DC=com |Treanor Matthew (PROC FMFE WAF PE) |McIntyre Juanita (IFEPI MFG QM) |Becker Chad (IFEPI GaN OP) | | +IT |NA\MES-ADM-FAB-USERS-G |CN=MES-ADM-FAB-USERS-G,OU=Groups,OU=Users,OU=MES,DC=na,DC=infineon,DC=com |Lemke Charles (IT OS WP MC) |Obukhoff Anton (IFEPI P IT OS OAM WP) | | | +FI - Mesa|NA\MES-APP-OpenInsight-Users |CN=MES-APP-OpenInsight-Users,OU=Groups,OU=Users,OU=MES,DC=na,DC=infineon,DC=com |Ouellette Jonathan (IT FI MES) |Phares Mike (IFAM IT FI MES) |Phares Mike (IFAM IT FI MES) |Phares Mike (IFAM IT FI MES) |Phares Mike (IFAM IT FI MES) + +Mesa PTO Calendar - Sperling Jonathon (MFG SHIFT 1) Jonathon.Sperling@infineon.com + +MSDS Online whitelist - Fuentes Jessica (MFG) Jessica.Fuentes@infineon.com diff --git a/database/apcmesp-db.md b/database/apcmesp-db.md new file mode 100644 index 0000000..50cdc9f --- /dev/null +++ b/database/apcmesp-db.md @@ -0,0 +1,8 @@ +--- +type: "database" +created: "2023-07-25T01:04:14.186Z" +updated: "2023-07-25T01:04:23.294Z" +assigned: "" +--- + +# apcmesp-db diff --git a/database/apcmess-db.md b/database/apcmess-db.md new file mode 100644 index 0000000..5f1fdcc --- /dev/null +++ b/database/apcmess-db.md @@ -0,0 +1,8 @@ +--- +type: "database" +created: "2023-07-25T01:04:14.186Z" +updated: "2023-07-25T01:04:23.294Z" +assigned: "" +--- + +# apcmess-db diff --git a/database/eafprod-db.md b/database/eafprod-db.md new file mode 100644 index 0000000..964eeb6 --- /dev/null +++ b/database/eafprod-db.md @@ -0,0 +1,8 @@ +--- +type: "database" +created: "2023-07-25T01:04:14.186Z" +updated: "2023-07-25T01:04:23.294Z" +assigned: "" +--- + +# eafprod-db diff --git a/database/eafstag-db.md b/database/eafstag-db.md new file mode 100644 index 0000000..9722c36 --- /dev/null +++ b/database/eafstag-db.md @@ -0,0 +1,8 @@ +--- +type: "database" +created: "2023-07-25T01:04:14.186Z" +updated: "2023-07-25T01:04:23.294Z" +assigned: "" +--- + +# eafstag-db diff --git a/database/fimesp-db.md b/database/fimesp-db.md new file mode 100644 index 0000000..ec9b00a --- /dev/null +++ b/database/fimesp-db.md @@ -0,0 +1,10 @@ +--- +type: "database" +created: "2023-07-25T01:04:14.186Z" +updated: "2023-07-25T01:04:23.294Z" +assigned: "" +--- + +# fimesp-db + +## EDA and YODA diff --git a/database/fimess-db.md b/database/fimess-db.md new file mode 100644 index 0000000..dc7828e --- /dev/null +++ b/database/fimess-db.md @@ -0,0 +1,10 @@ +--- +type: "database" +created: "2023-07-25T01:04:14.186Z" +updated: "2023-07-25T01:04:23.294Z" +assigned: "" +--- + +# fimess-db + +## EDA and YODA diff --git a/database/messqlec1.md b/database/messqlec1.md new file mode 100644 index 0000000..3102f7c --- /dev/null +++ b/database/messqlec1.md @@ -0,0 +1,25 @@ +--- +type: "database" +created: "2023-09-25T16:09:52.215Z" +updated: "2023-09-25T16:09:52.216Z" +assigned: "" +--- + +# messqlec1 + +## Info + +messqlec1.infineon.com\PROD1,53959 +Port : 53959 +IP Address : 10.95.140.24 + +## Catalog(s) + +- [ ] ControlPlans +- [ ] G4Substrates_01 +- [ ] G4Wafers_01 +- [ ] IRMNSPC +- [ ] LSL2SQL +- [ ] Metrology +- [ ] Metrology_Archive +- [ ] SPCEPIWORLD diff --git a/database/messv01ec.md b/database/messv01ec.md new file mode 100644 index 0000000..dd44fb2 --- /dev/null +++ b/database/messv01ec.md @@ -0,0 +1,25 @@ +--- +type: "database" +created: "2023-09-25T16:09:52.218Z" +updated: "2023-09-25T16:09:52.218Z" +assigned: "" +--- + +# messv01ec + +## Info + +messv01ec.ec.local\PROD1,53959 +Port : 53959 +IP Address : 10.95.128.28 + +## Catalog(s) + +- [ ] ControlPlans +- [ ] G4Substrates_01 +- [ ] G4Wafers_01 +- [ ] IRMNSPC +- [ ] LSL2SQL +- [ ] Metrology +- [ ] Metrology_Archive +- [ ] SPCEPIWORLD diff --git a/dns/eaf-dev-reporting.md b/dns/eaf-dev-reporting.md new file mode 100644 index 0000000..362eceb --- /dev/null +++ b/dns/eaf-dev-reporting.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-08T00:26:40.319Z" +updated: "2023-11-08T00:26:40.319Z" +assigned: "" +--- + +# eaf-dev-reporting + +```bash +ping eaf-dev-reporting.mes.infineon.com +# https://eaf-dev-reporting.mes.infineon.com/upload +``` diff --git a/dns/eaf-dev.md b/dns/eaf-dev.md new file mode 100644 index 0000000..bc910dc --- /dev/null +++ b/dns/eaf-dev.md @@ -0,0 +1,19 @@ +--- +type: "dns" +created: "2023-07-28T22:36:46.396Z" +updated: "2023-11-08T00:26:55.028Z" +assigned: "" +--- + +# eaf-dev + +```bash +ping eaf-dev.mes.infineon.com +# https://eaf-dev.mes.infineon.com/index.html +``` + +## Infineon Shortcut Service + +``` +FI-Backlog-Mesa https://eaf-dev.mes.infineon.com/ FI Backlog Mesa +``` diff --git a/dns/eaf-prod.md b/dns/eaf-prod.md new file mode 100644 index 0000000..3ab7271 --- /dev/null +++ b/dns/eaf-prod.md @@ -0,0 +1,20 @@ +--- +type: "dns" +created: "2023-11-08T01:07:37.514Z" +updated: "2023-11-08T01:07:37.514Z" +assigned: "" +--- + +# eaf-prod + +```bash +ping eaf-prod.mes.infineon.com +# https://eaf-prod.mes.infineon.com/upload +``` + +## Infineon Shortcut Service + +``` +SiRaw http://eaf-prod.mes.infineon.com/OISiViewer/Home/ECCharacterizationSi EC Characterization Si +TencorPrint http://eaf-prod.mes.infineon.com/OISiViewer/Home/EAFTencorPrinting Mesa Tencor Printing +``` diff --git a/dns/eaf-staging.md b/dns/eaf-staging.md new file mode 100644 index 0000000..fcc737a --- /dev/null +++ b/dns/eaf-staging.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-08T00:27:35.638Z" +updated: "2023-11-08T00:27:35.638Z" +assigned: "" +--- + +# eaf-staging + +```bash +ping eaf-staging.mes.infineon.com +# http://eaf-staging.mes.infineon.com/Background?set_is_primary_instance=true +``` diff --git a/dns/ecwebapps.md b/dns/ecwebapps.md new file mode 100644 index 0000000..09e85e4 --- /dev/null +++ b/dns/ecwebapps.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-07-25T21:48:18.141Z" +updated: "2023-11-08T00:27:31.897Z" +assigned: "" +--- + +# ecwebapps + +```bash +ping ecwebapps.mes.infineon.com +# http://ecwebapps.mes.infineon.com/ +``` diff --git a/dns/goto-dev.md b/dns/goto-dev.md new file mode 100644 index 0000000..2f2321b --- /dev/null +++ b/dns/goto-dev.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-08T00:27:27.947Z" +updated: "2023-11-08T00:27:27.947Z" +assigned: "" +--- + +# goto-dev + +```bash +ping goto-dev.mes.infineon.com +# http://goto-dev.mes.infineon.com/ +``` diff --git a/dns/iqs-prod.md b/dns/iqs-prod.md new file mode 100644 index 0000000..2db0078 --- /dev/null +++ b/dns/iqs-prod.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-08T00:27:23.491Z" +updated: "2023-11-08T00:27:23.491Z" +assigned: "" +--- + +# iqs-prod + +```bash +ping iqs-prod.mes.infineon.com +# https://iqs-prod.mes.infineon.com/index.html +``` diff --git a/dns/mesaapproval.md b/dns/mesaapproval.md new file mode 100644 index 0000000..2dcdbf8 --- /dev/null +++ b/dns/mesaapproval.md @@ -0,0 +1,19 @@ +--- +type: "dns" +created: "2023-11-08T00:29:39.494Z" +updated: "2023-11-08T00:29:54.272Z" +assigned: "" +--- + +# mesaapproval + +```bash +ping mesaApproval.mes.infineon.com +# https://mesaapproval.mes.infineon.com/ +``` + +## blm + +``` +Mesa Approval +``` diff --git a/dns/mesareportingservices-prod.md b/dns/mesareportingservices-prod.md new file mode 100644 index 0000000..38580bd --- /dev/null +++ b/dns/mesareportingservices-prod.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-07-22T04:29:25.749Z" +updated: "2023-11-08T00:28:02.609Z" +assigned: "" +--- + +# mesareportingservices-prod + +```bash +ping mesaReportingServices-prod.mes.infineon.com +# https://mesareportingservices-prod.mes.infineon.com/ +``` diff --git a/dns/metrology-viewer-prod.md b/dns/metrology-viewer-prod.md new file mode 100644 index 0000000..bd66746 --- /dev/null +++ b/dns/metrology-viewer-prod.md @@ -0,0 +1,12 @@ +--- +type: "dns" +--- + +# metrology-viewer-prod + +## meslvec0005.mes.infineon.com + +```bash +ping metrology-viewer-prod.mes.infineon.com +# https://metrology-viewer-prod.mes.infineon.com/ +``` diff --git a/dns/metrology-viewer-stage.md b/dns/metrology-viewer-stage.md new file mode 100644 index 0000000..84aa0b0 --- /dev/null +++ b/dns/metrology-viewer-stage.md @@ -0,0 +1,12 @@ +--- +type: "dns" +--- + +# metrology-viewer-stage + +## meslvec0004.mes.infineon.com + +```bash +ping metrology-viewer-stage.mes.infineon.com +# https://metrology-viewer-stage.mes.infineon.com/ +``` diff --git a/dns/oi-metrology-api-prod.md b/dns/oi-metrology-api-prod.md new file mode 100644 index 0000000..012bcde --- /dev/null +++ b/dns/oi-metrology-api-prod.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-20T18:04:48.902Z" +updated: "2023-11-20T18:04:48.902Z" +assigned: "" +--- + +# oi-metrology-api-prod + +```bash +ping oi-metrology-api-prod.mes.infineon.com +# https://oi-metrology-api-prod.mes.infineon.com/ +``` diff --git a/dns/oi-metrology-viewer-archive.md b/dns/oi-metrology-viewer-archive.md new file mode 100644 index 0000000..ca18730 --- /dev/null +++ b/dns/oi-metrology-viewer-archive.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-08T00:27:11.709Z" +updated: "2023-11-08T00:27:11.709Z" +assigned: "" +--- + +# oi-metrology-viewer-archive + +```bash +ping oi-metrology-viewer-archive.mes.infineon.com +# https://oi-metrology-viewer-archive.mes.infineon.com/ +``` diff --git a/dns/oi-metrology-viewer-prod.md b/dns/oi-metrology-viewer-prod.md new file mode 100644 index 0000000..f92d824 --- /dev/null +++ b/dns/oi-metrology-viewer-prod.md @@ -0,0 +1,25 @@ +--- +type: "dns" +created: "2023-07-28T22:29:20.803Z" +updated: "2023-11-08T00:27:07.343Z" +assigned: "" +--- + +# oi-metrology-viewer-prod + +```bash +ping oi-metrology-viewer-prod.mes.infineon.com +# https://oi-metrology-viewer-prod.mes.infineon.com/Metrology/RunInfo +``` + +## blm + +``` +OI Metrology Viewer +``` + +## Infineon Shortcut Service + +``` +OIMetrologyViewer https://oi-metrology-viewer-prod.mes.infineon.com/ Mesa OI Metrology Viewer +``` diff --git a/dns/oi-prod-ec-api.md b/dns/oi-prod-ec-api.md new file mode 100644 index 0000000..68efadc --- /dev/null +++ b/dns/oi-prod-ec-api.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-08T00:27:03.491Z" +updated: "2023-11-08T00:27:03.491Z" +assigned: "" +--- + +# oi-prod-ec-api + +```bash +ping oi-prod-ec-api.mes.infineon.com +# http://oi-prod-ec-api.mes.infineon.com +``` diff --git a/dns/yoda-dev.md b/dns/yoda-dev.md new file mode 100644 index 0000000..d03ceaa --- /dev/null +++ b/dns/yoda-dev.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-11-08T00:26:59.836Z" +updated: "2023-11-08T00:26:59.836Z" +assigned: "" +--- + +# yoda-dev + +```bash +ping yoda-dev.mes.infineon.com +# http://yoda-dev.mes.infineon.com/Background/?set_is_primary_instance=true +``` diff --git a/dns/yoda-staging.md b/dns/yoda-staging.md new file mode 100644 index 0000000..70ff374 --- /dev/null +++ b/dns/yoda-staging.md @@ -0,0 +1,13 @@ +--- +type: "dns" +created: "2023-07-28T22:30:27.169Z" +updated: "2023-11-08T00:26:50.198Z" +assigned: "" +--- + +# yoda-staging + +```bash +ping yoda-staging.mes.infineon.com +# https://yoda-staging.mes.infineon.com +``` diff --git a/email/mes-apc-adm.md b/email/mes-apc-adm.md new file mode 100644 index 0000000..4f7a973 --- /dev/null +++ b/email/mes-apc-adm.md @@ -0,0 +1,11 @@ +# mes-apc-adm + +## MesApcAdm + +### MesApcAdm@infineon.com + +Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1528790 +Internal Reference No.:INC000004206771 diff --git a/email/mes-eaf-adm.md b/email/mes-eaf-adm.md new file mode 100644 index 0000000..0371b91 --- /dev/null +++ b/email/mes-eaf-adm.md @@ -0,0 +1,11 @@ +## mes-eaf-adm + +## MesEafAdm + +### MesEafAdm@infineon.com + +Your IT-Shop Order has been resolved +Requestor: Fui Lian Liow (IFKM CSC FI SGI) +Recipient: Fui Lian Liow (IFKM CSC FI SGI) +Orderable: SR: Functional Mailbox - Modification [Kulim]-ORD1438136 +Internal Reference No.:INC000003980292 diff --git a/email/mes-eda-adm.md b/email/mes-eda-adm.md new file mode 100644 index 0000000..8f6c7bb --- /dev/null +++ b/email/mes-eda-adm.md @@ -0,0 +1,11 @@ +# mes-eda-adm + +## MesEdaAdm + +### MesEdaAdm@infineon.com + +Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1528792 +Internal Reference No.:INC000004206774 \ No newline at end of file diff --git a/email/mes-spc-adm.md b/email/mes-spc-adm.md new file mode 100644 index 0000000..4adf8e2 --- /dev/null +++ b/email/mes-spc-adm.md @@ -0,0 +1,10 @@ +--- +type: "email" +created: "2023-08-14T15:57:17.590Z" +updated: "2023-08-14T15:57:30.620Z" +assigned: "" +--- + +# mes-spc-adm + +## MesSPCAdm diff --git a/email/mes-yoda-adm.md b/email/mes-yoda-adm.md new file mode 100644 index 0000000..4d0408c --- /dev/null +++ b/email/mes-yoda-adm.md @@ -0,0 +1,11 @@ +# mes-yoda-adm + +## MesYodaAdm + +### MesYodaAdm@infineon.com + +Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1534246 +Internal Reference No.:INC000004218726 diff --git a/email/mesa-apc-trend.md b/email/mesa-apc-trend.md new file mode 100644 index 0000000..d555a70 --- /dev/null +++ b/email/mesa-apc-trend.md @@ -0,0 +1,11 @@ +# mesa-apc-trend + +## MESA.APCTrend + +### mesa.apctrend + +Your IT-Shop Order has been resolved +Requestor: Leslie Phares (IFAM IT FI MES) +Recipient: Leslie Phares (IFAM IT FI MES) +Orderable: SR: Functional Mailbox - New [Mesa]-ORD1534244 +Internal Reference No.:INC000004218687 \ No newline at end of file diff --git a/eva/apc-trend-drs-op-fe-300.md b/eva/apc-trend-drs-op-fe-300.md new file mode 100644 index 0000000..e434ed1 --- /dev/null +++ b/eva/apc-trend-drs-op-fe-300.md @@ -0,0 +1,26 @@ +--- +type: "eva" +created: "2023-08-18T18:58:25.933Z" +updated: "2023-08-18T18:58:25.934Z" +--- + +# APC Trend (DRS-OP FE 300) + +```yaml +Asset ID: CMDB40000323119 +Name: APC Trend (DRS-OP FE 300) +Application Owner: Schmieder Rene +Application Owner Department: CSC FI FE PCS +Substitutes: Grimmer Andrea (CSC FI FE PCS FDC), Zimmermann Stefan (CSC FI FE PCS SPC), Bischoff Christian (CSC FI FE PCS FDC), Phares Leslie (IT FI MES), Liow Fui Lian (CSC FI SPS), Niebler Theresa (CSC FI FE PCS FDC), Wetzig Dirk (CSC FI FE PCS FDC), Zulkefli Zaril Ezzuddin (CSC FI FE PCS), Krishnan Kalaimani (CSC FI FE PCS K) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Process Control Systems +Tier 3: Fault Detection and Classification Solutions +Service Owner: Bart Karl (IFAG CSC FI FE PCS) +Product: APC Trend +Product Owner: Ojha Abinash (IFAG CSC FI FE PCS FDC) +Status: Deployed +Mission Criticality: A - Critical +Short Description: Advanced Process Control and Fault Detection Control and Cassification +Additional Information: +``` diff --git a/eva/apc-trend-mes-op-fe-dev.md b/eva/apc-trend-mes-op-fe-dev.md new file mode 100644 index 0000000..a646615 --- /dev/null +++ b/eva/apc-trend-mes-op-fe-dev.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.220Z" +updated: "2023-09-25T16:09:52.221Z" +--- + +# APC Trend (MES-OP FE) - DEV + +## Server(s) + +- [ ] [mestsa005](../server/mestsa005.md) + +```yaml +Asset ID: CMDB50000543575 +Name: APC Trend (MES-OP FE) - DEV +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Process Control Systems +Tier 3: Fault Detection and Classification Solutions +Service Owner: Bart Karl (IFAG CSC FI FE PCS) +Product: APC Trend +Product Owner: Ojha Abinash (IFAG CSC FI FE PCS FDC) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/apc-trend-mes-op-fe-stage.md b/eva/apc-trend-mes-op-fe-stage.md new file mode 100644 index 0000000..c55913a --- /dev/null +++ b/eva/apc-trend-mes-op-fe-stage.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.222Z" +updated: "2023-09-25T16:09:52.222Z" +--- + +# APC Trend (MES-OP FE) - STAGE + +## Server(s) + +- [ ] [mestsa02ec](../server/mestsa02ec.md) + +```yaml +Asset ID: CMDB50000543576 +Name: APC Trend (MES-OP FE) - STAGE +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Process Control Systems +Tier 3: Fault Detection and Classification Solutions +Service Owner: Bart Karl (IFAG CSC FI FE PCS) +Product: APC Trend +Product Owner: Ojha Abinash (IFAG CSC FI FE PCS FDC) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/apc-trend-mes-op-fe.md b/eva/apc-trend-mes-op-fe.md new file mode 100644 index 0000000..2962d26 --- /dev/null +++ b/eva/apc-trend-mes-op-fe.md @@ -0,0 +1,31 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.224Z" +updated: "2023-09-25T16:09:52.225Z" +--- + +# APC Trend (MES-OP FE) + +## Server(s) + +- [ ] [messa012ec](../server/messa012ec.md) +- [ ] [messa013ec](../server/messa013ec.md) + +```yaml +Asset ID: CMDB50000543577 +Name: APC Trend (MES-OP FE) +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Process Control Systems +Tier 3: Fault Detection and Classification Solutions +Service Owner: Bart Karl (IFAG CSC FI FE PCS) +Product: APC Trend +Product Owner: Ojha Abinash (IFAG CSC FI FE PCS FDC) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/camstar-be-leo-test.md b/eva/camstar-be-leo-test.md new file mode 100644 index 0000000..98d58b9 --- /dev/null +++ b/eva/camstar-be-leo-test.md @@ -0,0 +1,26 @@ +--- +type: "eva" +created: "2023-08-18T18:58:25.946Z" +updated: "2023-08-18T18:58:25.946Z" +--- + +# Camstar BE (LEO) - TEST + +```yaml +Asset ID: CMDB50000407673 +Name: Camstar BE (LEO) - TEST +Application Owner: Buuck Travis +Application Owner Department: IT FI LEO +Substitutes: Belasco Bradd (IT FI LEO), Phares Leslie (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Product Management Systems +Tier 3: WIP Tracking Solutions +Service Owner: Hohenwarter Karl Horst (IFKL CSC FI FE) +Product: Camstar BE +Product Owner: Ling Yuen Sia (IFMY CSC FI BE ESS ES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/ea-data-framework-mes-op-fe-stage.md b/eva/ea-data-framework-mes-op-fe-stage.md new file mode 100644 index 0000000..5461a49 --- /dev/null +++ b/eva/ea-data-framework-mes-op-fe-stage.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.227Z" +updated: "2023-09-25T16:09:52.228Z" +--- + +# EA Data Framework (MES-OP FE) - STAGE + +## Server(s) + +- [ ] [mestsa07ec](../server/mestsa07ec.md) + +```yaml +Asset ID: CMDB50000546133 +Name: EA Data Framework (MES-OP FE) - STAGE +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Zimmermann Rene (CSC FI FE EMA EA D), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EA Data Framework +Product Owner: Zimmermann Rene (IFD CSC FI FE EMA EA D) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/ea-data-framework-mes-op-fe-test.md b/eva/ea-data-framework-mes-op-fe-test.md new file mode 100644 index 0000000..72e62c4 --- /dev/null +++ b/eva/ea-data-framework-mes-op-fe-test.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.229Z" +updated: "2023-09-25T16:09:52.230Z" +--- + +# EA Data Framework (MES-OP FE) - TEST + +## Server(s) + +- [ ] [mestsa003](../server/mestsa003.md) + +```yaml +Asset ID: CMDB50000546132 +Name: EA Data Framework (MES-OP FE) - TEST +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Zimmermann Rene (CSC FI FE EMA EA D), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EA Data Framework +Product Owner: Zimmermann Rene (IFD CSC FI FE EMA EA D) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/ea-data-framework-mes-op-fe.md b/eva/ea-data-framework-mes-op-fe.md new file mode 100644 index 0000000..333121c --- /dev/null +++ b/eva/ea-data-framework-mes-op-fe.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.231Z" +updated: "2023-09-25T16:09:52.231Z" +--- + +# EA Data Framework (MES-OP FE) + +## Server(s) + +- [ ] [messa08ec](../server/messa08ec.md) + +```yaml +Asset ID: CMDB50000546134 +Name: EA Data Framework (MES-OP FE) +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Zimmermann Rene (CSC FI FE EMA EA D), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EA Data Framework +Product Owner: Zimmermann Rene (IFD CSC FI FE EMA EA D) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/eaf-ga-n-mes-op-fe-stage.md b/eva/eaf-ga-n-mes-op-fe-stage.md new file mode 100644 index 0000000..081c81b --- /dev/null +++ b/eva/eaf-ga-n-mes-op-fe-stage.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.233Z" +updated: "2023-09-25T16:09:52.234Z" +--- + +# EAF GaN (MES-OP FE) - STAGE + +## Server(s) + +- [ ] [messa011ec](../server/messa011ec.md) + +```yaml +Asset ID: CMDB50000476418 +Name: EAF GaN (MES-OP FE) - STAGE +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EAF +Product Owner: Schneider Dieter (IFD CSC FI ADI DES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/eaf-ga-n-mes-op-fe.md b/eva/eaf-ga-n-mes-op-fe.md new file mode 100644 index 0000000..5a2152f --- /dev/null +++ b/eva/eaf-ga-n-mes-op-fe.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.235Z" +updated: "2023-09-25T16:09:52.235Z" +--- + +# EAF GaN (MES-OP FE) + +## Server(s) + +- [ ] [messa011ec](../server/messa011ec.md) + +```yaml +Asset ID: CMDB50000476421 +Name: EAF GaN (MES-OP FE) +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EAF +Product Owner: Schneider Dieter (IFD CSC FI ADI DES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/eaf-mes-op-fe-dev.md b/eva/eaf-mes-op-fe-dev.md new file mode 100644 index 0000000..9d56fd0 --- /dev/null +++ b/eva/eaf-mes-op-fe-dev.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.237Z" +updated: "2023-09-25T16:09:52.237Z" +--- + +# EAF (MES-OP FE) - DEV + +## Server(s) + +- [ ] [mestsa003](../server/mestsa003.md) + +```yaml +Asset ID: CMDB50000476218 +Name: EAF (MES-OP FE) - DEV +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EAF +Product Owner: Schneider Dieter (IFD CSC FI ADI DES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/eaf-mes-op-fe-stage.md b/eva/eaf-mes-op-fe-stage.md new file mode 100644 index 0000000..ef7d6ff --- /dev/null +++ b/eva/eaf-mes-op-fe-stage.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.238Z" +updated: "2023-09-25T16:09:52.239Z" +--- + +# EAF (MES-OP FE) - STAGE + +## Server(s) + +- [ ] [mestsa07ec](../server/mestsa07ec.md) + +```yaml +Asset ID: CMDB50000476422 +Name: EAF (MES-OP FE) - STAGE +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EAF +Product Owner: Schneider Dieter (IFD CSC FI ADI DES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/eaf-mes-op-fe.md b/eva/eaf-mes-op-fe.md new file mode 100644 index 0000000..4264ba5 --- /dev/null +++ b/eva/eaf-mes-op-fe.md @@ -0,0 +1,35 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.242Z" +updated: "2023-09-25T16:09:52.242Z" +--- + +# EAF (MES-OP FE) + +## Server(s) + +- [ ] [messa08ec](../server/messa08ec.md) +- [ ] [messa09ec](../server/messa09ec.md) +- [ ] [messa011ec](../server/messa011ec.md) +- [ ] [messa022ec](../server/messa022ec.md) +- [ ] [messa023ec](../server/messa023ec.md) + +```yaml +Asset ID: CMDB50000476423 +Name: EAF (MES-OP FE) +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Manufacturing Operation Systems +Tier 3: Equipment Automation Framework +Service Owner: Bianchin Ronald (IFD CSC FI FE EMA) +Product: EAF +Product Owner: Schneider Dieter (IFD CSC FI ADI DES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` + diff --git a/eva/fab-time-mes-op-fe.md b/eva/fab-time-mes-op-fe.md new file mode 100644 index 0000000..228935d --- /dev/null +++ b/eva/fab-time-mes-op-fe.md @@ -0,0 +1,27 @@ +--- +type: "eva" +created: "2023-08-18T18:58:25.970Z" +updated: "2023-08-18T18:58:25.970Z" +assigned: "" +--- + +# FabTime (MES-OP FE) + +```yaml +Asset ID: CMDB50000586793 +Name: FabTime (MES-OP FE) +Application Owner: Ouellette Jonathan +Application Owner Department: IT FI MES +Substitutes: Crisp Daniel (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Data Analysis Systems +Tier 3: Manufacturing Reporting +Service Owner: Poh Wen Long (IFMY CSC FI MEA PER) +Product: FabTime +Product Owner: Kotian Rajesh (SPNLL FE F25 IT FI EA) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/ha-remote-daemon-mes-dev.md b/eva/ha-remote-daemon-mes-dev.md new file mode 100644 index 0000000..b3b70f4 --- /dev/null +++ b/eva/ha-remote-daemon-mes-dev.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.243Z" +updated: "2023-09-25T16:09:52.244Z" +--- + +# HA Remote Daemon (MES) - DEV + +## Server(s) + +- [ ] [mesxs015](../server/mesxs015.md) + +```yaml +Asset ID: CMDB50000550133 +Name: HA Remote Daemon (MES) - DEV +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Chan Hwee Farn (CSC FI ADI ESB), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Enterprise Services +Tier 2: Platforms +Tier 3: Enterprise Service Bus +Service Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Product: Message Bus Platform +Product Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/ha-remote-daemon-mes-stage.md b/eva/ha-remote-daemon-mes-stage.md new file mode 100644 index 0000000..bb8efc4 --- /dev/null +++ b/eva/ha-remote-daemon-mes-stage.md @@ -0,0 +1,31 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.245Z" +updated: "2023-09-25T16:09:52.246Z" +--- + +# HA Remote Daemon (MES) - STAGE + +## Server(s) + +- [ ] [mesxsec013](../server/mesxsec013.md) +- [ ] [mesxsec014](../server/mesxsec014.md) + +```yaml +Asset ID: CMDB50000550134 +Name: HA Remote Daemon (MES) - STAGE +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Chan Hwee Farn (CSC FI ADI ESB), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Enterprise Services +Tier 2: Platforms +Tier 3: Enterprise Service Bus +Service Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Product: Message Bus Platform +Product Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/ha-remote-daemon-mes.md b/eva/ha-remote-daemon-mes.md new file mode 100644 index 0000000..723fecd --- /dev/null +++ b/eva/ha-remote-daemon-mes.md @@ -0,0 +1,31 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.247Z" +updated: "2023-09-25T16:09:52.247Z" +--- + +# HA Remote Daemon (MES) + +## Server(s) + +- [ ] [mesxsec013](../server/mesxsec013.md) +- [ ] [mesxsec014](../server/mesxsec014.md) + +```yaml +Asset ID: CMDB50000540745 +Name: HA Remote Daemon (MES) +Application Owner: Ong Hock Yew +Application Owner Department: CSC FI ADI ESB +Substitutes: Phares Leslie (IT FI MES), Chan Hwee Farn (CSC FI ADI ESB), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Enterprise Services +Tier 2: Platforms +Tier 3: Enterprise Service Bus +Service Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Product: Message Bus Platform +Product Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/infinity-qs-ga-n-mes-op-fe.md b/eva/infinity-qs-ga-n-mes-op-fe.md new file mode 100644 index 0000000..e82075d --- /dev/null +++ b/eva/infinity-qs-ga-n-mes-op-fe.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.249Z" +updated: "2023-09-25T16:09:52.249Z" +--- + +# InfinityQS GaN (MES-OP FE) + +## Server(s) + +- [ ] [messa06ec](../server/messa06ec.md) + +```yaml +Asset ID: CMDB50000558927 +Name: InfinityQS GaN (MES-OP FE) +Application Owner: Ouellette Jonathan +Application Owner Department: IT FI MES +Substitutes: Phares Leslie (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Process Control Systems +Tier 3: Statistical Process Control Solutions +Service Owner: Bart Karl (IFAG CSC FI FE PCS) +Product: InfinityQS +Product Owner: Jarsey Martha (IFAM IT FI MES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/infinity-qs-si-mes-op-fe.md b/eva/infinity-qs-si-mes-op-fe.md new file mode 100644 index 0000000..23d438d --- /dev/null +++ b/eva/infinity-qs-si-mes-op-fe.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.251Z" +updated: "2023-09-25T16:09:52.252Z" +--- + +# InfinityQS Si (MES-OP FE) + +## Server(s) + +- [ ] [messa04ec](../server/messa04ec.md) + +```yaml +Asset ID: CMDB50000558926 +Name: InfinityQS Si (MES-OP FE) +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Process Control Systems +Tier 3: Statistical Process Control Solutions +Service Owner: Bart Karl (IFAG CSC FI FE PCS) +Product: InfinityQS +Product Owner: Jarsey Martha (IFAM IT FI MES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/open-insight-mes-op-fe-dev.md b/eva/open-insight-mes-op-fe-dev.md new file mode 100644 index 0000000..fe4ee5e --- /dev/null +++ b/eva/open-insight-mes-op-fe-dev.md @@ -0,0 +1,27 @@ +--- +type: "eva" +created: "2023-08-18T18:58:25.983Z" +updated: "2023-08-18T18:59:47.479Z" +assigned: "" +--- + +# OpenInsight (MES-OP FE) - DEV + +```yaml +Asset ID: CMDB50000558634 +Name: openinsight-mes-op-fe-dev +Application Owner: Ouellette Jonathan +Application Owner Department: IT FI MES +Substitutes: Crisp Daniel (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Product Management Systems +Tier 3: WIP Tracking Solutions +Service Owner: Hohenwarter Karl Horst (IFKL CSC FI FE) +Product: OpenInsight +Product Owner: Jarsey Martha (IFAM IT FI MES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: OpenInsight Development +Additional Information: +``` diff --git a/eva/open-insight-mes-op-fe.md b/eva/open-insight-mes-op-fe.md new file mode 100644 index 0000000..f949cf8 --- /dev/null +++ b/eva/open-insight-mes-op-fe.md @@ -0,0 +1,27 @@ +--- +type: "eva" +created: "2023-08-18T18:58:25.988Z" +updated: "2023-08-18T18:58:25.988Z" +assigned: "" +--- + +# OpenInsight (MES-OP FE) + +```yaml +Asset ID: CMDB50000465401 +Name: openinsight-mes-op-fe +Application Owner: Jarsey Martha +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Product Management Systems +Tier 3: WIP Tracking Solutions +Service Owner: Hohenwarter Karl Horst (IFKL CSC FI FE) +Product: OpenInsight +Product Owner: Jarsey Martha (IFAM IT FI MES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/open-insight-metrology-viewer-na-op-fe.md b/eva/open-insight-metrology-viewer-na-op-fe.md new file mode 100644 index 0000000..0f9f098 --- /dev/null +++ b/eva/open-insight-metrology-viewer-na-op-fe.md @@ -0,0 +1,32 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.254Z" +updated: "2023-09-25T16:09:52.254Z" +--- + +# OpenInsight Metrology Viewer (NA-OP FE) + +## Server(s) + +- [ ] [messa010ec](../server/messa010ec.md) +- [ ] [mestsa008](../server/mestsa008.md) +- [ ] [messa017](../server/messa017.md) + +```yaml +Asset ID: CMDB50000558532 +Name: OpenInsight Metrology Viewer (NA-OP FE) +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Process Control Systems +Tier 3: Statistical Process Control Solutions +Service Owner: Bart Karl (IFAG CSC FI FE PCS) +Product: OpenInsight Metrology Viewer +Product Owner: Jarsey Martha (IFAM IT FI MES) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/yield-hub-na.md b/eva/yield-hub-na.md new file mode 100644 index 0000000..fa48e90 --- /dev/null +++ b/eva/yield-hub-na.md @@ -0,0 +1,27 @@ +--- +type: "eva" +created: "2023-08-18T18:58:25.993Z" +updated: "2023-08-18T18:58:25.993Z" +assigned: "" +--- + +# YieldHUB (NA) + +```yaml +Asset ID: CMDB50000583741 +Name: yieldhub-na +Application Owner: Belasco Bradd +Application Owner Department: IT FI LEO +Substitutes: Jarsey Martha (IT FI MES), Kim Peter (IT OS DC DB OP), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Manufacturing Services +Tier 2: Data Analysis Systems +Tier 3: Engineering Data Management Solutions +Service Owner: Tradel Thomas (IFKL CSC FI MEA) +Product: YieldHUB +Product Owner: Jarsey Martha (IFAM IT FI MES) +Status: Deployed +Mission Criticality: C - Medium +Short Description: n/a +Additional Information: +``` diff --git a/eva/yoda-mes-op-fe-dev.md b/eva/yoda-mes-op-fe-dev.md new file mode 100644 index 0000000..1a348f1 --- /dev/null +++ b/eva/yoda-mes-op-fe-dev.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.257Z" +updated: "2023-09-25T16:09:52.258Z" +--- + +# YODA (MES-OP FE) - DEV + +## Server(s) + +- [ ] [mestsa006](../server/mestsa006.md) + +```yaml +Asset ID: CMDB50000543579 +Name: YODA (MES-OP FE) - DEV +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Chan Hwee Farn (CSC FI ADI ESB), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Enterprise Services +Tier 2: Platforms +Tier 3: Enterprise Service Bus +Service Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Product: YODA +Product Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/yoda-mes-op-fe-stage.md b/eva/yoda-mes-op-fe-stage.md new file mode 100644 index 0000000..5b3190f --- /dev/null +++ b/eva/yoda-mes-op-fe-stage.md @@ -0,0 +1,30 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.259Z" +updated: "2023-09-25T16:09:52.260Z" +--- + +# YODA (MES-OP FE) - STAGE + +## Server(s) + +- [ ] [mestsa03ec](../server/mestsa03ec.md) + +```yaml +Asset ID: CMDB50000543578 +Name: YODA (MES-OP FE) - STAGE +Application Owner: Phares Leslie +Application Owner Department: IT FI MES +Substitutes: Chan Hwee Farn (CSC FI ADI ESB), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Enterprise Services +Tier 2: Platforms +Tier 3: Enterprise Service Bus +Service Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Product: YODA +Product Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/eva/yoda-mes.md b/eva/yoda-mes.md new file mode 100644 index 0000000..8591611 --- /dev/null +++ b/eva/yoda-mes.md @@ -0,0 +1,31 @@ +--- +type: "eva" +created: "2023-09-25T16:09:52.261Z" +updated: "2023-09-25T16:09:52.262Z" +--- + +# YODA (MES) + +## Server(s) + +- [ ] [messa014ec](../server/messa014ec.md) +- [ ] [messa015ec](../server/messa015ec.md) + +```yaml +Asset ID: CMDB50000540746 +Name: YODA (MES) +Application Owner: Ong Hock Yew +Application Owner Department: CSC FI ADI ESB +Substitutes: Chan Hwee Farn (CSC FI ADI ESB), Phares Leslie (IT FI MES), Ouellette Jonathan (IT FI MES) +IT Line: FI +Tier 1: Enterprise Services +Tier 2: Platforms +Tier 3: Enterprise Service Bus +Service Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Product: YODA +Product Owner: Chan Hwee Farn (IFAP CSC FI ADI ESB) +Status: Deployed +Mission Criticality: A - Critical +Short Description: n/a +Additional Information: +``` diff --git a/example.tsv b/example.tsv new file mode 100644 index 0000000..c25bc6d --- /dev/null +++ b/example.tsv @@ -0,0 +1 @@ +type title description links body \ No newline at end of file diff --git a/fileshare/2003.md b/fileshare/2003.md new file mode 100644 index 0000000..ec6b322 --- /dev/null +++ b/fileshare/2003.md @@ -0,0 +1,12 @@ +--- +type: "fileshare" +created: "2023-11-07T18:01:31.818Z" +updated: "2023-11-07T18:02:36.097Z" +assigned: "" +--- + +# 2003 + +## Share(s) + +- [ ] \\10.95.1.211\Share diff --git a/fileshare/messa01ec.md b/fileshare/messa01ec.md new file mode 100644 index 0000000..1a900c8 --- /dev/null +++ b/fileshare/messa01ec.md @@ -0,0 +1,14 @@ +--- +type: "fileshare" +created: "2023-09-25T16:09:52.264Z" +updated: "2023-09-25T16:09:52.265Z" +assigned: "" +--- + +# messa01ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) + +## D: - OI Apps diff --git a/fileshare/messa04ec.md b/fileshare/messa04ec.md new file mode 100644 index 0000000..749e4f4 --- /dev/null +++ b/fileshare/messa04ec.md @@ -0,0 +1,15 @@ +--- +type: "fileshare" +created: "2023-09-25T16:09:52.266Z" +updated: "2023-09-25T16:09:52.267Z" +assigned: "" +tags: ["Prod", "EC"] +--- + +# messa04ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) + +## D: - IQS DMS/DCS diff --git a/fileshare/messdv002.md b/fileshare/messdv002.md new file mode 100644 index 0000000..053f468 --- /dev/null +++ b/fileshare/messdv002.md @@ -0,0 +1,12 @@ +--- +type: "fileshare" +created: "2023-09-25T16:09:52.268Z" +updated: "2023-09-25T16:09:52.269Z" +assigned: "" +--- + +# messdv002 + +## Share + +- [ ] Infineon Candela diff --git a/fileshare/messv02ecc1.md b/fileshare/messv02ecc1.md new file mode 100644 index 0000000..731a594 --- /dev/null +++ b/fileshare/messv02ecc1.md @@ -0,0 +1,39 @@ +--- +type: "fileshare" +created: "2023-09-25T16:09:52.270Z" +updated: "2023-09-25T16:09:52.270Z" +assigned: "" +tags: ["Prod", "EC"] +--- + +# messv02ecc1 + +## Share(s) + +- [ ] EC_APC (messv02ecc1.ec.local) +- [ ] EC_Candela_GaN (messv02ecc1.ec.local) +- [ ] EC_Characterization_GaN (messv02ecc1.ec.local) +- [ ] EC_Characterization_Si (messv02ecc1.ec.local) +- [ ] EC_Customer_Service (messv02ecc1.ec.local) +- [ ] EC_EAFLog (messv02ecc1.ec.local) +- [ ] EC_EAFRepository (messv02ecc1.ec.local) +- [ ] EC_EDA (messv02ecc1.ec.local) +- [ ] EC_Engineering (messv02ecc1.ec.local) +- [ ] EC_EpiReactorRecipes (messv02ecc1.ec.local) +- [ ] EC_Equip_Eng (messv02ecc1.ec.local) +- [ ] EC_Maintenance (messv02ecc1.ec.local) +- [ ] EC_MAMD_Files (messv02ecc1.ec.local) +- [ ] EC_MAMD_Ops (messv02ecc1.ec.local) +- [ ] EC_Materials (messv02ecc1.ec.local) +- [ ] EC_Metrology_GaN (messv02ecc1.ec.local) +- [ ] EC_Metrology_Si (messv02ecc1.ec.local) +- [ ] EC_MOCVD (messv02ecc1.ec.local) +- [ ] EC_Production (messv02ecc1.ec.local) +- [ ] EC_Sales (messv02ecc1.ec.local) +- [ ] EC_SPC_GaN (messv02ecc1.ec.local) +- [ ] EC_SPC_Si (messv02ecc1.ec.local) +- [ ] EC_TempHumidity_Controls (messv02ecc1.ec.local) +- [ ] EC_Test (messv02ecc1.ec.local) +- [ ] EC_TESTTTT (messv02ecc1.ec.local) +- [ ] EC_WFOperations (messv02ecc1.ec.local) +- [ ] EC_YODAConfig (messv02ecc1.ec.local)" diff --git a/iteraplan/10325.json b/iteraplan/10325.json new file mode 100644 index 0000000..30b972e --- /dev/null +++ b/iteraplan/10325.json @@ -0,0 +1,245 @@ +{ + "BusinessMapping": [ + { + "id": 34832, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34832 + }, + "relations": { + "informationSystem": [ + 10325 + ], + "itService": [ + 13146 + ] + } + }, + { + "id": 34833, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34833 + }, + "relations": { + "informationSystem": [ + 10325 + ], + "itService": [ + 26759 + ] + } + }, + { + "id": 36635, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.674Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 36635 + }, + "relations": { + "businessProcess": [ + 43837 + ], + "informationSystem": [ + 10325 + ] + } + }, + { + "id": 36589, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.674Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 36589 + }, + "relations": { + "businessProcess": [ + 43839 + ], + "informationSystem": [ + 10325 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 79777, + "properties": { + "lastModificationTime": "2023-06-15T22:13:28.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79777 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 10325 + ] + } + }, + { + "id": 45557, + "properties": { + "lastModificationTime": "2023-06-15T22:13:28.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45557 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 10325 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79217, + "properties": { + "lastModificationTime": "2023-06-15T22:13:28.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79217 + }, + "relations": { + "informationSystem": [ + 10325 + ], + "technicalComponent": [ + 16395 + ] + } + }, + { + "id": 79216, + "properties": { + "lastModificationTime": "2023-06-15T22:13:28.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79216 + }, + "relations": { + "informationSystem": [ + 10325 + ], + "technicalComponent": [ + 16374 + ] + } + }, + { + "id": 29982, + "properties": { + "lastModificationTime": "2023-06-15T22:13:28.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 29982 + }, + "relations": { + "informationSystem": [ + 10325 + ], + "technicalComponent": [ + 1179 + ] + } + }, + { + "id": 79215, + "properties": { + "lastModificationTime": "2023-06-15T22:13:28.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79215 + }, + "relations": { + "informationSystem": [ + 10325 + ], + "technicalComponent": [ + 44975 + ] + } + } + ], + "InformationSystem": [ + { + "id": 10325, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "Contact IT Org": "FI", + "lastModificationTime": "2023-06-15T22:13:27.000Z", + "EVA Instances": { + "plain": "[[InfinityQS Si (MES-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000558926]],\n[[InfinityQS GaN (MES-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000558927]]", + "translated": "

InfinityQS Si (MES-OP FE),
InfinityQS GaN (MES-OP FE)

" + }, + "FI - APM Comment": { + "plain": "(2016-02-10): Thomas G., Ashish: Due to VB the TF is rated low", + "translated": "

(2016-02-10): Thomas G., Ashish: Due to VB the TF is rated low

" + }, + "ES - URL of Web Application": "missing", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Application contains EC data. \nProduct - Proficient \nVendor - InfinityQS \nWeb App - Y\n \nAn online and offline Statistical Process Control system. It analyses measurement and process data, which are sent as samples in order to check for WER (western electric rules) violations. Violations will be monitored to the Engineers in realtime, using email notifications. Several automatic lot or tool transactions (like hold lot, tool stop) can be distributed to other systems. \n\n\nConsists of following components:\nSPC, DMS, DCS, RAMS", + "translated": "

Application contains EC data.
Product - Proficient
Vendor - InfinityQS  
Web App - Y

An online and offline Statistical Process Control system. It analyses measurement and process data, which are sent as samples in order to check for WER (western electric rules) violations. Violations will be monitored to the Engineers in realtime, using email notifications.  Several automatic lot or tool transactions (like hold lot, tool stop) can be distributed to other systems. 

Consists of following components:
SPC, DMS, DCS, RAMS

" + }, + "Application Owner": "Leslie Phares (phares)", + "Location of Usage": [ + "Mesa" + ], + "ES - Vendor": "InfinityQS", + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "FI - Technical Fitness": "Low", + "Personal Data Protection Class": "C", + "id": 10325, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "Mesa" + ], + "Location of Hosting": [ + "Mesa" + ], + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Mike.Phares@infineon.com", + "Keyword Tags": { + "plain": "SPC\nIQS\nProficient\nInfinity IQS\nMetrology Data\nSi SPC\nGaN SPC", + "translated": "

SPC
IQS
Proficient
Infinity IQS
Metrology Data
Si SPC
GaN SPC

" + }, + "Development model": "Out-of-box standard", + "name": "InfinityQS", + "DataCenter Repository Link": { + "plain": "[[InfinityQS>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27InfinityQS%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

InfinityQS

" + }, + "FI - IRMA Group": "FI SPS", + "position": 1143, + "Mission Criticality": "A - Critical", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 45557, + 79777 + ], + "technicalComponentAssociations": [ + 29982, + 79216, + 79217, + 79215 + ], + "businessMappings": [ + 34833, + 34832, + 36589, + 36635 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/14888.json b/iteraplan/14888.json new file mode 100644 index 0000000..bdc61f3 --- /dev/null +++ b/iteraplan/14888.json @@ -0,0 +1,82 @@ +{ + "BusinessMapping": [ + { + "id": 36300, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.672Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 36300 + }, + "relations": { + "businessProcess": [ + 40814 + ], + "informationSystem": [ + 14888 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 76814, + "properties": { + "lastModificationTime": "2023-01-12T14:14:24.000Z", + "lastModificationUser": "Burkhard Wolf (wolfburk)", + "id": 76814 + }, + "relations": { + "informationSystem": [ + 14888 + ], + "project": [ + 76497 + ] + } + } + ], + "InformationSystem": [ + { + "id": 14888, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "Contact IT Org": "IT SBI S", + "lastModificationTime": "2019-12-05T07:19:34.000Z", + "lastModificationUser": "- - (PluginAPI)", + "$$hierarchy_level$$": 1, + "Deployment model": "Regional", + "description": { + "plain": "actually not owned by IT SCM\n\nPart of overall PCNT redesign", + "translated": "

actually not owned by IT SCM

Part of overall PCNT redesign

" + }, + "Application Owner": "Martha Jarsey (mjarsey1)", + "IT Org": "Non-IT", + "Application Owner Email": "Marti.Jarsey@infineon.com", + "SCM - Application Classification": "Minor", + "SCM - Technical Platform Pattern": "Others", + "Development model": "Custom development", + "Hosting Type": [ + "intern (Intranet)" + ], + "name": "IR PCN Alert", + "Personal Data Protection Class": "C", + "id": 14888, + "position": 1457, + "Shortname": "IR PCN Alert", + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium", + "Internal Control System (SOX / BilMoG)": "No", + "DSA - Sponsor": "Other" + }, + "relations": { + "projectAssociations": [ + 76814 + ], + "businessMappings": [ + 36300 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/15598.json b/iteraplan/15598.json new file mode 100644 index 0000000..4eb8ac2 --- /dev/null +++ b/iteraplan/15598.json @@ -0,0 +1,385 @@ +{ + "BusinessMapping": [ + { + "id": 35284, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.596Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 35284 + }, + "relations": { + "informationSystem": [ + 15598 + ], + "itService": [ + 15716 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 79905, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79905 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 70546, + "properties": { + "lastModificationTime": "2021-09-14T06:53:26.000Z", + "lastModificationUser": "Erich Otto Pintar (pintar)", + "id": 70546 + }, + "relations": { + "informationSystemDomain": [ + 70290 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 46755, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46755 + }, + "relations": { + "informationSystemDomain": [ + 45126 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 46756, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46756 + }, + "relations": { + "informationSystemDomain": [ + 45100 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 46757, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46757 + }, + "relations": { + "informationSystemDomain": [ + 45101 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 46758, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46758 + }, + "relations": { + "informationSystemDomain": [ + 45128 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 46759, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46759 + }, + "relations": { + "informationSystemDomain": [ + 45117 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 46760, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46760 + }, + "relations": { + "informationSystemDomain": [ + 45127 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 70189, + "properties": { + "lastModificationTime": "2021-09-14T06:52:34.000Z", + "lastModificationUser": "Erich Otto Pintar (pintar)", + "id": 70189 + }, + "relations": { + "informationSystemDomain": [ + 70012 + ], + "informationSystem": [ + 15598 + ] + } + }, + { + "id": 46462, + "properties": { + "lastModificationTime": "2020-12-10T07:58:55.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 46462 + }, + "relations": { + "informationSystemDomain": [ + 45098 + ], + "informationSystem": [ + 15598 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 83575, + "properties": { + "lastModificationTime": "2023-06-20T14:14:47.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 83575 + }, + "relations": { + "informationSystem": [ + 15598 + ], + "project": [ + 83326 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 28656, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 28656 + }, + "relations": { + "informationSystem": [ + 15598 + ], + "technicalComponent": [ + 941 + ] + } + }, + { + "id": 52489, + "properties": { + "lastModificationTime": "2023-07-25T02:17:19.000Z", + "lastModificationUser": "Lin Tsen David Koh (kohli)", + "id": 52489 + }, + "relations": { + "informationSystem": [ + 15598 + ], + "technicalComponent": [ + 16353 + ] + } + }, + { + "id": 33057, + "properties": { + "lastModificationTime": "2022-04-08T03:08:34.000Z", + "lastModificationUser": "Hock Yew Ong (onghocky)", + "id": 33057 + }, + "relations": { + "informationSystem": [ + 15598 + ], + "technicalComponent": [ + 16424 + ] + } + }, + { + "id": 52850, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 52850 + }, + "relations": { + "informationSystem": [ + 15598 + ], + "technicalComponent": [ + 52785 + ] + } + }, + { + "id": 33087, + "properties": { + "lastModificationTime": "2020-08-28T11:16:32.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 33087 + }, + "relations": { + "informationSystem": [ + 15598 + ], + "technicalComponent": [ + 16425 + ] + } + } + ], + "InformationSystem": [ + { + "id": 15598, + "properties": { + "Application Type": "Technical application", + "Export Control Classification": "No", + "lastModificationTime": "2023-06-15T08:27:25.000Z", + "EVA Instances": { + "plain": "[[HA Remote Daemon (AUS)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000767351]],\n[[HA Remote Daemon (BKK)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000737014]],\n[[HA Remote Daemon (BTH)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000337958]],\n[[HA Remote Daemon (CEG)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000380534]],\n[[HA Remote Daemon (CJJ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000465374]],\n[[HA Remote Daemon (DRS)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000191296]],\n[[HA Remote Daemon (DRS-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000479717]],\n[[HA Remote Daemon (KLM)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000380530]],\n[[HA Remote Daemon (MKZ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000380532]],\n[[HA Remote Daemon (MES)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000540745]],\n[[HA Remote Daemon (RBG)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000380531]],\n[[HA Remote Daemon (SIN)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000285500]],\n[[HA Remote Daemon (TIJ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000408900]],\n[[HA Remote Daemon (VIH)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000263692]],\n[[HA Remote Daemon (VIH-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000511801]],\n[[HA Remote Daemon (WAR)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000253158]],\n[[HA Remote Daemon (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000380533]],\n[[HA Remote Daemon SIAPM (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000449953]]", + "translated": "

HA Remote Daemon (AUS),
HA Remote Daemon (BKK),
HA Remote Daemon (BTH),
HA Remote Daemon (CEG),
HA Remote Daemon (CJJ),
HA Remote Daemon (DRS),
HA Remote Daemon (DRS-OP FE 300),
HA Remote Daemon (KLM),
HA Remote Daemon (MKZ),
HA Remote Daemon (MES),
HA Remote Daemon (RBG),
HA Remote Daemon (SIN),
HA Remote Daemon (TIJ),
HA Remote Daemon (VIH),
HA Remote Daemon (VIH-OP FE 300),
HA Remote Daemon (WAR),
HA Remote Daemon (WUX),
HA Remote Daemon SIAPM (WUX)

" + }, + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "$$hierarchy_level$$": 2, + "description": { + "plain": "HA Remote Daemon\n\n\n\n", + "translated": "

HA Remote Daemon

" + }, + "Application Owner": "Hock Yew Ong (onghocky)", + "Location of Usage": [ + "Dresden" + ], + "IT Org": "FI ADI ESB", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Geoffrey.Ong@infineon.com", + "FI - Technical Fitness": "Medium", + "Development model": "Out-of-box standard", + "name": "HA Remote Daemon", + "DataCenter Repository Link": { + "plain": "[[HA Remote Daemon>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=ShortName&ColumnValue_04=%28%27HA+Remote+Daemon%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

HA Remote Daemon

" + }, + "FI - IRMA Group": "FI ADI ESB", + "Personal Data Protection Class": "D", + "id": 15598, + "position": 27, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical", + "Location of Instances": [ + "Austin", + "Mesa", + "Batam", + "Singapore", + "Kulim", + "Warstein", + "Wuxi", + "Tijuana", + "Regensburg", + "Villach", + "Melaka", + "Dresden", + "Cegled", + "Bangkok", + "Cheonan" + ], + "Location of Hosting": [ + "Dresden", + "Cegled", + "Bangkok", + "Cheonan", + "Regensburg", + "Villach", + "Melaka", + "Kulim", + "Warstein", + "Wuxi", + "Tijuana", + "Mesa", + "Batam", + "Singapore" + ] + }, + "relations": { + "parent": [ + 5660 + ], + "informationSystemDomainAssociations": [ + 46759, + 46758, + 70546, + 46756, + 46462, + 70189, + 46757, + 79905, + 46755, + 46760 + ], + "technicalComponentAssociations": [ + 33087, + 52489, + 28656, + 52850, + 33057 + ], + "projectAssociations": [ + 83575 + ], + "businessMappings": [ + 35284 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/17681.json b/iteraplan/17681.json new file mode 100644 index 0000000..d3d2c62 --- /dev/null +++ b/iteraplan/17681.json @@ -0,0 +1,166 @@ +{ + "BusinessMapping": [ + { + "id": 35492, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.598Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 35492 + }, + "relations": { + "informationSystem": [ + 17681 + ], + "itService": [ + 13242 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 45571, + "properties": { + "lastModificationTime": "2021-01-04T17:25:00.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45571 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 17681 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 31923, + "properties": { + "lastModificationTime": "2023-07-05T06:23:58.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 31923 + }, + "relations": { + "informationSystem": [ + 17681 + ], + "technicalComponent": [ + 16362 + ] + } + }, + { + "id": 33340, + "properties": { + "lastModificationTime": "2021-01-04T17:25:00.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 33340 + }, + "relations": { + "informationSystem": [ + 17681 + ], + "technicalComponent": [ + 17683 + ] + } + }, + { + "id": 30413, + "properties": { + "lastModificationTime": "2021-01-04T17:25:00.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 30413 + }, + "relations": { + "informationSystem": [ + 17681 + ], + "technicalComponent": [ + 6071 + ] + } + }, + { + "id": 31678, + "properties": { + "lastModificationTime": "2021-01-04T17:25:00.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 31678 + }, + "relations": { + "informationSystem": [ + 17681 + ], + "technicalComponent": [ + 16343 + ] + } + } + ], + "InformationSystem": [ + { + "id": 17681, + "properties": { + "Application Type": "Technical application", + "Export Control Classification": "No", + "Contact IT Org": "FI", + "lastModificationTime": "2021-01-04T17:25:00.000Z", + "FI - APM Comment": { + "plain": "2017-02-02 (Thomas G.): Used the proposed values from Francois", + "translated": "

2017-02-02 (Thomas G.): Used the proposed values from Francois

" + }, + "ES - URL of Web Application": "n/a", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "Deployment model": "Local", + "description": { + "plain": "Short Description: Equipment Automation Data Framework MESA\n\nbased on the Commercial product Catalyst SDP from Savigent\n\nCatalyst is a platform that allows the creation of various applications meant to perform automated tools data collection and prepare the results to be collected/consumed by the IQS (SPC) system. In other words, the Catalyst output is an input to SPC. At a higher level, this application is an interface between the tools and the SPC database.", + "translated": "

Short Description: Equipment Automation Data Framework MESA

based on the Commercial product Catalyst SDP from Savigent

Catalyst is a platform that allows the creation of various applications meant to perform automated tools data collection and prepare the results to be collected/consumed by the IQS (SPC) system.  In other words, the Catalyst output is an input to SPC.  At a higher level, this application is an interface between the tools and the SPC database.

" + }, + "Application Owner": "Leslie Phares (phares)", + "ES - Vendor": "OpenInsight", + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "ES - Operation Model": "Intern", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 17681, + "Roadmap Ranking": "Shutdown", + "Productive period": "2014-12-30;2019-09-29", + "FI - DP Compliance Status": "Planned", + "Application Owner Email": "Mike.Phares@infineon.com", + "Keyword Tags": { + "plain": "Savigent; Catalyst; SDP Runtime Manager; SDP Development Studio; Data Management System (DMS); Data Collection System (DCS)", + "translated": "

Savigent; Catalyst; SDP Runtime Manager; SDP Development Studio; Data Management System (DMS); Data Collection System (DCS)

" + }, + "Development model": "Out-of-box standard", + "Hosting Type": [ + "intern (Intranet)" + ], + "name": "EA Data Framework MES", + "FI - IRMA Group": "FI SPS", + "position": 1659, + "Mission Criticality": "A - Critical", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 45571 + ], + "technicalComponentAssociations": [ + 30413, + 31678, + 31923, + 33340 + ], + "businessMappings": [ + 35492 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/26864.json b/iteraplan/26864.json new file mode 100644 index 0000000..aa75a7d --- /dev/null +++ b/iteraplan/26864.json @@ -0,0 +1,157 @@ +{ + "BusinessMapping": [ + { + "id": 35648, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.600Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 35648 + }, + "relations": { + "informationSystem": [ + 26864 + ], + "itService": [ + 26934 + ] + } + }, + { + "id": 35647, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.600Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 35647 + }, + "relations": { + "informationSystem": [ + 26864 + ], + "itService": [ + 13182 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 45577, + "properties": { + "lastModificationTime": "2022-04-20T22:30:32.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45577 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 26864 + ] + } + }, + { + "id": 80020, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 80020 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 26864 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79073, + "properties": { + "lastModificationTime": "2023-02-16T21:14:30.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79073 + }, + "relations": { + "informationSystem": [ + 26864 + ], + "technicalComponent": [ + 52563 + ] + } + }, + { + "id": 79074, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 79074 + }, + "relations": { + "informationSystem": [ + 26864 + ], + "technicalComponent": [ + 17614 + ] + } + } + ], + "InformationSystem": [ + { + "id": 26864, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "lastModificationTime": "2022-04-20T22:30:32.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "HiRel application - Legacy Lot History repository for generating annual DLA reports to the Military. This data and function are now managed by Camstar/Tableau. The mLap application remains only for purposes of access to archived data.", + "translated": "

HiRel application - Legacy Lot History repository for generating annual DLA reports to the Military.  This data and function are now managed by Camstar/Tableau.  The mLap application remains only for purposes of access to archived data.

" + }, + "Productive period": "2011-12-31;2025-06-13", + "Application Owner": "Martha Jarsey (mjarsey1)", + "Location of Usage": [ + "Leominster" + ], + "IT Org": "FI SPS", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Marti.Jarsey@infineon.com", + "Keyword Tags": { + "plain": "mlap, serial", + "translated": "

mlap, serial

" + }, + "FI - Technical Fitness": "Medium", + "Development model": "Custom development", + "name": "mLap", + "Personal Data Protection Class": "D", + "id": 26864, + "position": 1807, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium", + "Location of Hosting": [ + "Leominster" + ] + }, + "relations": { + "informationSystemDomainAssociations": [ + 45577, + 80020 + ], + "technicalComponentAssociations": [ + 79074, + 79073 + ], + "businessMappings": [ + 35647, + 35648 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/26866.json b/iteraplan/26866.json new file mode 100644 index 0000000..d768aa6 --- /dev/null +++ b/iteraplan/26866.json @@ -0,0 +1,154 @@ +{ + "BusinessMapping": [ + { + "id": 35649, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.600Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 35649 + }, + "relations": { + "informationSystem": [ + 26866 + ], + "itService": [ + 13182 + ] + } + }, + { + "id": 35650, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.600Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 35650 + }, + "relations": { + "informationSystem": [ + 26866 + ], + "itService": [ + 26950 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 80021, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 80021 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 26866 + ] + } + }, + { + "id": 45578, + "properties": { + "lastModificationTime": "2022-08-31T15:08:02.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45578 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 26866 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79076, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 79076 + }, + "relations": { + "informationSystem": [ + 26866 + ], + "technicalComponent": [ + 17614 + ] + } + }, + { + "id": 79075, + "properties": { + "lastModificationTime": "2023-02-16T21:16:07.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79075 + }, + "relations": { + "informationSystem": [ + 26866 + ], + "technicalComponent": [ + 52563 + ] + } + } + ], + "InformationSystem": [ + { + "id": 26866, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "lastModificationTime": "2022-08-31T15:08:02.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "HiRel - Lot serial number tracking", + "translated": "

HiRel - Lot serial number tracking

" + }, + "Productive period": ";2026-08-29", + "Application Owner": "Martha Jarsey (mjarsey1)", + "Location of Usage": [ + "Leominster" + ], + "FI - DP Compliance Finish Date": "2022-08-29", + "IT Org": "FI SPS", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Marti.Jarsey@infineon.com", + "FI - Technical Fitness": "Medium", + "Development model": "Custom development", + "name": "SerialLog", + "Personal Data Protection Class": "C", + "id": 26866, + "position": 1809, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical", + "Location of Hosting": [ + "Leominster" + ] + }, + "relations": { + "informationSystemDomainAssociations": [ + 80021, + 45578 + ], + "technicalComponentAssociations": [ + 79076, + 79075 + ], + "businessMappings": [ + 35650, + 35649 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/4449.json b/iteraplan/4449.json new file mode 100644 index 0000000..a551cc8 --- /dev/null +++ b/iteraplan/4449.json @@ -0,0 +1,1912 @@ +{ + "Ifl2BoAssociation": [ + { + "id": 18454, + "properties": { + "id": 18454, + "direction": "SECOND_TO_FIRST" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 18453 + ] + } + }, + { + "id": 76415, + "properties": { + "lastModificationTime": "2022-10-06T11:07:38.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 76415, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 21255 + ], + "informationFlow": [ + 76411 + ] + } + } + ], + "BusinessMapping": [ + { + "id": 33928, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.586Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 33928 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "itService": [ + 13944 + ] + } + }, + { + "id": 33927, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.586Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 33927 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "itService": [ + 13128 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 73190, + "properties": { + "lastModificationTime": "2022-04-11T09:28:50.000Z", + "lastModificationUser": "Christof Kanitz (kanitz)", + "id": 73190 + }, + "relations": { + "informationFlow": [ + 73189 + ], + "technicalComponent": [ + 917 + ] + } + }, + { + "id": 40648, + "properties": { + "lastModificationTime": "2022-10-21T06:59:15.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 40648 + }, + "relations": { + "informationFlow": [ + 18453 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 73677, + "properties": { + "lastModificationTime": "2022-05-30T08:58:06.000Z", + "lastModificationUser": "Daniel Hildebrand (hildebd)", + "id": 73677 + }, + "relations": { + "informationFlow": [ + 18011 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 84846, + "properties": { + "lastModificationTime": "2023-07-27T12:08:42.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84846 + }, + "relations": { + "informationFlow": [ + 84844 + ], + "technicalComponent": [ + 1161 + ] + } + }, + { + "id": 61969, + "properties": { + "lastModificationTime": "2022-10-21T06:59:15.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 61969 + }, + "relations": { + "informationFlow": [ + 18453 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 84818, + "properties": { + "lastModificationTime": "2023-07-27T11:52:36.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84818 + }, + "relations": { + "informationFlow": [ + 84817 + ], + "technicalComponent": [ + 1161 + ] + } + }, + { + "id": 75060, + "properties": { + "lastModificationTime": "2023-02-02T13:16:56.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 75060 + }, + "relations": { + "informationFlow": [ + 75059 + ], + "technicalComponent": [ + 75043 + ] + } + }, + { + "id": 39957, + "properties": { + "lastModificationTime": "2022-10-21T07:11:48.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 39957 + }, + "relations": { + "informationFlow": [ + 17156 + ], + "technicalComponent": [ + 877 + ] + } + }, + { + "id": 50197, + "properties": { + "lastModificationTime": "2019-05-10T16:26:32.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 50197 + }, + "relations": { + "informationFlow": [ + 50196 + ], + "technicalComponent": [ + 917 + ] + } + }, + { + "id": 75063, + "properties": { + "lastModificationTime": "2023-02-02T13:16:56.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 75063 + }, + "relations": { + "informationFlow": [ + 75059 + ], + "technicalComponent": [ + 917 + ] + } + }, + { + "id": 50199, + "properties": { + "lastModificationTime": "2020-02-14T08:42:56.000Z", + "lastModificationUser": "Michal Klima (klimmich)", + "id": 50199 + }, + "relations": { + "informationFlow": [ + 50196 + ], + "technicalComponent": [ + 5762 + ] + } + }, + { + "id": 61501, + "properties": { + "lastModificationTime": "2022-08-16T14:17:28.000Z", + "lastModificationUser": "Christian Kuempel (kuempel)", + "id": 61501 + }, + "relations": { + "informationFlow": [ + 61500 + ], + "technicalComponent": [ + 1161 + ] + } + }, + { + "id": 84831, + "properties": { + "lastModificationTime": "2023-07-27T12:05:41.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84831 + }, + "relations": { + "informationFlow": [ + 84830 + ], + "technicalComponent": [ + 1161 + ] + } + }, + { + "id": 76414, + "properties": { + "lastModificationTime": "2022-10-06T11:08:28.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 76414 + }, + "relations": { + "informationFlow": [ + 76411 + ], + "technicalComponent": [ + 1161 + ] + } + } + ], + "Ifl2ProjAssociation": [ + { + "id": 84097, + "properties": { + "lastModificationTime": "2023-07-03T14:31:21.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84097 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 76411 + ] + } + }, + { + "id": 84079, + "properties": { + "lastModificationTime": "2023-07-03T14:32:35.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84079 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 18011 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 84837, + "properties": { + "lastModificationTime": "2023-07-27T12:05:50.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84837 + }, + "relations": { + "informationSystem": [ + 84829 + ], + "informationFlow": [ + 84830 + ] + } + }, + { + "id": 37956, + "properties": { + "lastModificationTime": "2022-10-21T07:11:48.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 37956 + }, + "relations": { + "informationSystem": [ + 17153 + ], + "informationFlow": [ + 17156 + ] + } + }, + { + "id": 73191, + "properties": { + "lastModificationTime": "2022-07-13T10:14:25.000Z", + "lastModificationUser": "Christof Kanitz (kanitz)", + "id": 73191 + }, + "relations": { + "informationSystem": [ + 5676 + ], + "informationFlow": [ + 73189 + ] + } + }, + { + "id": 76917, + "properties": { + "lastModificationTime": "2022-10-21T07:08:03.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 76917 + }, + "relations": { + "informationSystem": [ + 16134 + ], + "informationFlow": [ + 18453 + ] + } + }, + { + "id": 84820, + "properties": { + "lastModificationTime": "2023-07-27T11:53:13.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84820 + }, + "relations": { + "informationSystem": [ + 84816 + ], + "informationFlow": [ + 84817 + ] + } + }, + { + "id": 50198, + "properties": { + "lastModificationTime": "2021-10-07T04:20:59.000Z", + "lastModificationUser": "Hiew Ming Chan (chanhiew)", + "id": 50198 + }, + "relations": { + "informationSystem": [ + 50189 + ], + "informationFlow": [ + 50196 + ] + } + }, + { + "id": 84854, + "properties": { + "lastModificationTime": "2023-07-27T12:08:57.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84854 + }, + "relations": { + "informationSystem": [ + 84843 + ], + "informationFlow": [ + 84844 + ] + } + }, + { + "id": 75062, + "properties": { + "lastModificationTime": "2023-02-02T13:16:56.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 75062 + }, + "relations": { + "informationSystem": [ + 75045 + ], + "informationFlow": [ + 75059 + ] + } + }, + { + "id": 38107, + "properties": { + "lastModificationTime": "2022-09-15T14:48:48.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 38107 + }, + "relations": { + "informationSystem": [ + 15728 + ], + "informationFlow": [ + 17930 + ] + } + }, + { + "id": 76413, + "properties": { + "lastModificationTime": "2022-10-06T11:08:28.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 76413 + }, + "relations": { + "informationSystem": [ + 72962 + ], + "informationFlow": [ + 76411 + ] + } + }, + { + "id": 38141, + "properties": { + "lastModificationTime": "2023-05-09T11:47:40.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 38141 + }, + "relations": { + "informationSystem": [ + 4754 + ], + "informationFlow": [ + 18011 + ] + } + }, + { + "id": 61503, + "properties": { + "lastModificationTime": "2023-06-05T12:41:09.000Z", + "lastModificationUser": "Martin Hardes (hardesm)", + "id": 61503 + }, + "relations": { + "informationSystem": [ + 12633 + ], + "informationFlow": [ + 61500 + ] + } + }, + { + "id": 54751, + "properties": { + "lastModificationTime": "2022-09-22T07:51:55.000Z", + "lastModificationUser": "Simon Florian Weger (wegersim)", + "id": 54751 + }, + "relations": { + "informationSystem": [ + 4720 + ], + "informationFlow": [ + 54749 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 46192, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 46192 + }, + "relations": { + "informationSystemDomain": [ + 45100 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 79475, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79475 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 56835, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 56835 + }, + "relations": { + "informationSystemDomain": [ + 45126 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 59044, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 59044 + }, + "relations": { + "informationSystemDomain": [ + 59009 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 70020, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 70020 + }, + "relations": { + "informationSystemDomain": [ + 70012 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 45397, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 45397 + }, + "relations": { + "informationSystemDomain": [ + 45094 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 45879, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 45879 + }, + "relations": { + "informationSystemDomain": [ + 45117 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 45579, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 45579 + }, + "relations": { + "informationSystemDomain": [ + 45116 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 70413, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 70413 + }, + "relations": { + "informationSystemDomain": [ + 70290 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 46092, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 46092 + }, + "relations": { + "informationSystemDomain": [ + 45101 + ], + "informationSystem": [ + 4449 + ] + } + }, + { + "id": 45183, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 45183 + }, + "relations": { + "informationSystemDomain": [ + 45098 + ], + "informationSystem": [ + 4449 + ] + } + } + ], + "Is2BdAssociation": [ + { + "id": 58878, + "properties": { + "EA - Impact Ranking": 3.00, + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 58878 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "businessDomain": [ + 58876 + ] + } + } + ], + "InformationFlow": [ + { + "id": 17156, + "properties": { + "lastModificationTime": "2022-10-21T07:11:48.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "MSP Data Mart <- APC Trend ID#17156", + "description": { + "plain": "retrieves regularly (scheduled, ca. 1h) processed and loaded lot level visual inspection data from FDC", + "translated": "

retrieves regularly (scheduled, ca. 1h) processed and loaded lot level visual inspection data from FDC

" + }, + "id": 17156, + "position": 709, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 37956 + ], + "technicalComponentAssociations": [ + 39957 + ], + "informationSystem2Associations": [ + 39256 + ] + } + }, + { + "id": 73189, + "properties": { + "lastModificationTime": "2022-04-11T09:28:50.000Z", + "lastModificationUser": "Christof Kanitz (kanitz)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "WAC <- APC Trend ID#73189", + "description": { + "plain": "Retrieving detailed APC Violation data from APC", + "translated": "

Retrieving detailed APC Violation data from APC

" + }, + "id": 73189, + "position": 2486, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical", + "Information Flow Details": { + "plain": "Using Stored Procedures on APC Trend DB", + "translated": "

Using  Stored Procedures on APC Trend DB

" + } + }, + "relations": { + "informationSystem1Associations": [ + 73191 + ], + "technicalComponentAssociations": [ + 73190 + ], + "informationSystem2Associations": [ + 73192 + ] + } + }, + { + "id": 17930, + "properties": { + "lastModificationTime": "2022-09-15T14:48:48.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "TEDOM -> APC Trend ID#17930", + "description": { + "plain": "writes PDSF files on file share, which is used as Input Directory of the APC Extractor", + "translated": "

writes PDSF files on file share, which is used as Input Directory of the APC Extractor

" + }, + "id": 17930, + "position": 842, + "Roadmap Ranking": "Shutdown", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38107 + ], + "informationSystem2Associations": [ + 39407 + ] + } + }, + { + "id": 84844, + "properties": { + "lastModificationTime": "2023-07-27T13:00:33.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "ESL2APC -> APC Trend ID#84844", + "description": { + "plain": "Emhanced Status Log from Prober are converted into PDSF files ad sent to APC Trend for loading (1x per day).", + "translated": "

Emhanced Status Log from Prober are converted into PDSF files ad sent to APC Trend for loading (1x per day).

" + }, + "id": 84844, + "position": 3070, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 84854 + ], + "technicalComponentAssociations": [ + 84846 + ], + "informationSystem2Associations": [ + 84845 + ] + } + }, + { + "id": 84817, + "properties": { + "lastModificationTime": "2023-07-27T12:00:33.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "WT ADP Converter -> APC Trend ID#84817", + "description": { + "plain": "PDSF files from Wafer Test area are written to APC Trend POLLPATH for data processing", + "translated": "

PDSF files from Wafer Test area are written to APC Trend POLLPATH for data processing

" + }, + "id": 84817, + "position": 3068, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 84820 + ], + "technicalComponentAssociations": [ + 84818 + ], + "informationSystem2Associations": [ + 84819 + ] + } + }, + { + "id": 75059, + "properties": { + "Valid From-To": "2022-08-30;", + "lastModificationTime": "2023-02-02T15:13:05.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "Restricted Lake <- APC Trend ID#75059", + "description": { + "plain": "Load daily all new APC data (event, trace, alarm data, limits, limit violations) into the WBG lake for all relevant products; additionally the user permissions are loaded intoRanger (Hadoop App) to set up the secure data handling of the APC data in the restricted data lake.", + "translated": "

Load daily all new APC data (event, trace, alarm data, limits, limit violations) into the WBG lake for all relevant products; additionally the user permissions are loaded intoRanger (Hadoop App) to set up the secure data handling of the APC data in the restricted data lake.

" + }, + "id": 75059, + "position": 2610, + "Roadmap Ranking": "Planned", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 75062 + ], + "technicalComponentAssociations": [ + 75063, + 75060 + ], + "informationSystem2Associations": [ + 75061 + ] + } + }, + { + "id": 50196, + "properties": { + "lastModificationTime": "2019-05-17T17:07:07.000Z", + "lastModificationUser": "- - (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "Machine Alarm Management Report <- APC Trend ID#50196", + "description": { + "plain": "Alarm data are retrieved from a FDC DB view (of all local FDC instances) once a day\nSince interface needs to be replaced as soon as the central FDC instance is available", + "translated": "

Alarm data are retrieved from a FDC DB view (of all local FDC instances) once a day
Since interface needs to be replaced as soon as the central FDC instance is available

" + }, + "id": 50196, + "position": 1356, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 50198 + ], + "technicalComponentAssociations": [ + 50197, + 50199 + ], + "informationSystem2Associations": [ + 50200 + ] + } + }, + { + "id": 18453, + "properties": { + "lastModificationTime": "2022-10-21T08:00:48.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "Twin Adapter <- APC Trend ID#18453", + "description": { + "plain": "APC Trend sends online reaction violation to Twin Adapter via Exception Management. There is no direct information flow between APC Trend & Twin Adapter", + "translated": "

APC Trend sends online reaction violation to Twin Adapter via Exception Management. There is no direct information flow between APC Trend & Twin Adapter

" + }, + "id": 18453, + "position": 985, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 18454 + ], + "informationSystem1Associations": [ + 76917 + ], + "technicalComponentAssociations": [ + 61969, + 40648 + ], + "informationSystem2Associations": [ + 39585 + ] + } + }, + { + "id": 76411, + "properties": { + "lastModificationTime": "2022-10-06T13:00:29.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EDA BE Integration -> APC Trend ID#76411", + "description": { + "plain": "Store PDSF files for APC trend, these files will be transfered from the PDSF file location via the extractor into APC Trend", + "translated": "

Store PDSF files for APC trend, these files will be transfered from the PDSF file location via the extractor into APC Trend

" + }, + "id": 76411, + "position": 2674, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "businessObjectAssociations": [ + 76415 + ], + "informationSystem1Associations": [ + 76413 + ], + "technicalComponentAssociations": [ + 76414 + ], + "projectAssociations": [ + 84097 + ], + "informationSystem2Associations": [ + 76412 + ] + } + }, + { + "id": 18011, + "properties": { + "lastModificationTime": "2020-07-17T07:10:18.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "Exception Management <-> APC Trend ID#18011", + "description": { + "plain": "FDC violations are sent from APC Trend to the Exception Management to trigger the proper exception handling workflow; EM also clears violation messages in APC after the confirmation is done via the UI\n[[FactoryAutomation\\TriggerOCAP>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4176]]", + "translated": "

FDC violations are sent from APC Trend to the Exception Management to trigger the proper exception handling workflow; EM also clears violation messages in APC after the confirmation is done via the UI
FactoryAutomation\\TriggerOCAP

" + }, + "id": 18011, + "position": 868, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38141 + ], + "technicalComponentAssociations": [ + 73677 + ], + "projectAssociations": [ + 84079 + ], + "informationSystem2Associations": [ + 39441 + ] + } + }, + { + "id": 61500, + "properties": { + "lastModificationTime": "2022-08-16T14:17:28.000Z", + "lastModificationUser": "Christian Kuempel (kuempel)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "SPC/APC Worker Service -> APC Trend ID#61500", + "description": { + "plain": "Sending APC data via PDSF file", + "translated": "

Sending APC data via PDSF file

" + }, + "id": 61500, + "position": 1948, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 61503 + ], + "technicalComponentAssociations": [ + 61501 + ], + "informationSystem2Associations": [ + 61502 + ] + } + }, + { + "id": 54749, + "properties": { + "lastModificationTime": "2022-09-22T07:51:55.000Z", + "lastModificationUser": "Simon Florian Weger (wegersim)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "FabCockpit <- APC Trend ID#54749", + "description": { + "plain": "equipment alert events received", + "translated": "

equipment alert events received

" + }, + "id": 54749, + "position": 1534, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 54751 + ], + "informationSystem2Associations": [ + 54750 + ] + } + }, + { + "id": 84830, + "properties": { + "lastModificationTime": "2023-07-27T13:00:33.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "PDSF Creator -> APC Trend ID#84830", + "description": { + "plain": "PDSF files from Prober are sent to APC Trend (every 10min)", + "translated": "

PDSF files from Prober are sent to APC Trend (every 10min)

" + }, + "id": 84830, + "position": 3069, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 84837 + ], + "technicalComponentAssociations": [ + 84831 + ], + "informationSystem2Associations": [ + 84832 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 84073, + "properties": { + "lastModificationTime": "2023-07-02T10:05:54.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84073 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "project": [ + 83654 + ] + } + }, + { + "id": 83434, + "properties": { + "lastModificationTime": "2023-06-20T14:12:33.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 83434 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "project": [ + 83326 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 53890, + "properties": { + "lastModificationTime": "2023-07-19T11:00:48.000Z", + "lastModificationUser": "Erich Otto Pintar (pintar)", + "id": 53890 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 16330 + ] + } + }, + { + "id": 33091, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 33091 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 16439 + ] + } + }, + { + "id": 31812, + "properties": { + "lastModificationTime": "2023-07-05T06:23:58.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 31812 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 16362 + ] + } + }, + { + "id": 61988, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 61988 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 73221, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 73221 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 18360 + ] + } + }, + { + "id": 73220, + "properties": { + "lastModificationTime": "2023-05-31T07:48:24.000Z", + "lastModificationUser": "Sascha Pscheidt (pscheidt)", + "Technology Migration State": "In-Production", + "id": 73220 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 17708 + ] + } + }, + { + "id": 28454, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 28454 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 917 + ] + } + }, + { + "id": 32488, + "properties": { + "lastModificationTime": "2023-06-12T12:24:17.000Z", + "lastModificationUser": "Jonas Schrader (schradej)", + "id": 32488 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 16384 + ] + } + }, + { + "id": 30153, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 30153 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 6071 + ] + } + }, + { + "id": 32041, + "properties": { + "lastModificationTime": "2023-07-03T12:09:00.000Z", + "lastModificationUser": "Michael Jakab (jakab)", + "id": 32041 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 16372 + ] + } + }, + { + "id": 30860, + "properties": { + "lastModificationTime": "2022-08-11T14:23:07.000Z", + "lastModificationUser": "Michael Jakab (jakab)", + "Technology Migration State": "In-Production", + "id": 30860 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 15359 + ] + } + }, + { + "id": 28013, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 28013 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 877 + ] + } + }, + { + "id": 28207, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 28207 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 879 + ] + } + }, + { + "id": 29807, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 29807 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 1157 + ] + } + }, + { + "id": 28918, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 28918 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 999 + ] + } + }, + { + "id": 33496, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 33496 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 17707 + ] + } + }, + { + "id": 73213, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 73213 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 44976 + ] + } + }, + { + "id": 31134, + "properties": { + "lastModificationTime": "2022-08-11T14:22:17.000Z", + "lastModificationUser": "Michael Jakab (jakab)", + "id": 31134 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 16322 + ] + } + }, + { + "id": 73215, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "Technology Migration State": "In-Production", + "id": 73215 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 44975 + ] + } + }, + { + "id": 33342, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 33342 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 29311, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 29311 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 1081 + ] + } + }, + { + "id": 73214, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "Technology Migration State": "In-Production", + "id": 73214 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "technicalComponent": [ + 44981 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 39585, + "properties": { + "lastModificationTime": "2022-10-21T06:59:15.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 39585 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 18453 + ] + } + }, + { + "id": 84832, + "properties": { + "lastModificationTime": "2023-07-27T12:05:41.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84832 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 84830 + ] + } + }, + { + "id": 73192, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 73192 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 73189 + ] + } + }, + { + "id": 84845, + "properties": { + "lastModificationTime": "2023-07-27T12:08:42.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84845 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 84844 + ] + } + }, + { + "id": 39407, + "properties": { + "lastModificationTime": "2022-09-15T14:48:48.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 39407 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 17930 + ] + } + }, + { + "id": 39441, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 39441 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 18011 + ] + } + }, + { + "id": 84819, + "properties": { + "lastModificationTime": "2023-07-27T11:52:36.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84819 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 84817 + ] + } + }, + { + "id": 75061, + "properties": { + "lastModificationTime": "2023-02-02T13:16:56.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 75061 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 75059 + ] + } + }, + { + "id": 39256, + "properties": { + "lastModificationTime": "2022-10-21T07:11:48.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 39256 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 17156 + ] + } + }, + { + "id": 50200, + "properties": { + "lastModificationTime": "2022-06-22T07:35:07.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 50200 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 50196 + ] + } + }, + { + "id": 76412, + "properties": { + "lastModificationTime": "2022-10-06T11:08:28.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 76412 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 76411 + ] + } + }, + { + "id": 61502, + "properties": { + "lastModificationTime": "2022-08-16T14:17:28.000Z", + "lastModificationUser": "Christian Kuempel (kuempel)", + "id": 61502 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 61500 + ] + } + }, + { + "id": 54750, + "properties": { + "lastModificationTime": "2022-09-22T07:51:55.000Z", + "lastModificationUser": "Simon Florian Weger (wegersim)", + "id": 54750 + }, + "relations": { + "informationSystem": [ + 4449 + ], + "informationFlow": [ + 54749 + ] + } + } + ], + "InformationSystem": [ + { + "id": 4449, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "FI - APM Measure": "Redesign-Refactor", + "lastModificationTime": "2023-07-21T17:28:10.000Z", + "EVA Instances": { + "plain": "[[APC Trend (AUS-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000773302]],\n[[APC Trend (BTH)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000189209]],\n[[APC Trend (CEG-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000571667]],\n[[APC Trend (CJJ-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000538236]],\n[[APC Trend (DRS-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000323119]],\n[[APC Trend (DRS-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000323151]],\n[[APC Trend (KLM-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000207409]],\n[[APC Trend (MKZ)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000189205]],\n[[APC Trend (MES-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000543577]],\n[[APC Trend (RBG-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000189132]],\n[[APC Trend (RBG-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000318104]],\n[[APC Trend (SIN-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000361382]],\n[[APC Trend (TIJ-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000758083]],\n[[APC Trend (VIH-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000302935]],\n[[APC Trend (VIH-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000511295]],\n[[APC Trend (WAR-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000363909]],\n[[APC Trend (WUX-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000285436]]", + "translated": "

APC Trend (AUS-OP FE),
APC Trend (BTH),
APC Trend (CEG-OP BE),
APC Trend (CJJ-OP BE),
APC Trend (DRS-OP FE 300),
APC Trend (DRS-OP FE 200),
APC Trend (KLM-OP FE 200),
APC Trend (MKZ),
APC Trend (MES-OP FE),
APC Trend (RBG-OP FE 200),
APC Trend (RBG-OP BE),
APC Trend (SIN-OP BE),
APC Trend (TIJ-OP BE),
APC Trend (VIH-OP FE 200),
APC Trend (VIH-OP FE 300),
APC Trend (WAR-OP BE),
APC Trend (WUX-OP BE)

" + }, + "FI - APM Comment": { + "plain": "Action:DE ph1 finished, DQ finished 02/13, DA rollout EU (AP), 30.09.2013; multiple roadmap projects ongoing (DA, DE, DQ)", + "translated": "

Action:DE ph1 finished, DQ finished 02/13, DA rollout EU (AP), 30.09.2013; multiple roadmap projects ongoing (DA, DE, DQ)

" + }, + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Short Description: Advanced Process Control and Fault Detection Control and Cassification\n\nAPC-FDC Goals\nAdvanced Process Control in general is a methodology to \n- Increase equipment and process stability by using ON-LINE equipment data\n- accelerate yield learning by linking these equipment data with product data.\nAPC-Trend in particular is the SW for the analysis, fault detection, classification and notification based on raw process- and equipment data from internal (e.g. power, temperature) and external (e.g. OES, SEERS) Sensors. \nThe high level requirements are:\n- Generation of keynumbers / information out of raw process- and equipment data (to detect process and equipment problems)\n- Data analysis of internal and external Sensors (e.g. OES, SEERS, etc.) \n- Visualisation of keynumbers, raw data and logistic information\n- Interface to EDA and CIM tools\n- Functionality for Tool and Recipe comparison\n- Fault detection of process equipment immediately after each run\n- Message to process engineer, operator, Interface to MES (Lot/Tool stop), Equipment Integration (Tool stop) \n\nThe analysis should done immediately after the run, hence a powerful interface to the equipment integration and high availability is needed.", + "translated": "

Short Description: Advanced Process Control and Fault Detection Control and Cassification

APC-FDC Goals
Advanced Process Control in general is a methodology to
- Increase equipment and process stability by using ON-LINE equipment data
- accelerate yield learning by linking these equipment data with product data.
APC-Trend in particular is the SW for the analysis, fault detection, classification and notification based on raw process- and equipment data from internal (e.g. power, temperature) and external (e.g. OES, SEERS) Sensors.
The high level requirements are:
- Generation of keynumbers / information out of raw process- and equipment data (to detect process and equipment problems)
- Data analysis of internal and external Sensors (e.g. OES, SEERS, etc.)
- Visualisation of keynumbers, raw data and logistic information
- Interface to EDA and CIM tools
- Functionality for Tool and Recipe comparison
- Fault detection of process equipment immediately after each run
- Message to process engineer, operator, Interface to MES (Lot/Tool stop), Equipment Integration (Tool stop) 

The analysis should done immediately after the run, hence a powerful interface to the equipment integration and high availability is needed.

" + }, + "Application Owner": "Abinash Ojha (ojha)", + "Location of Usage": [ + "Kulim", + "Warstein", + "Cheonan", + "Wuxi", + "Austin", + "Villach", + "Batam", + "Singapore", + "Melaka" + ], + "FI - DP Compliance Finish Date": "2020-06-17", + "IT Org": "FI FE PCS", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 4449, + "Roadmap Ranking": "Target", + "Location of Instances": [ + "Austin", + "Mesa", + "Batam", + "Singapore", + "Kulim", + "Warstein", + "Wuxi", + "Tijuana", + "Regensburg", + "Villach", + "Melaka", + "Dresden", + "Cegled", + "Cheonan" + ], + "Location of Hosting": [ + "Dresden", + "Cegled", + "Cheonan", + "Regensburg", + "Villach", + "Melaka", + "Kulim", + "Warstein", + "Wuxi", + "Tijuana", + "Austin", + "Mesa", + "Batam", + "Singapore" + ], + "FI - APM Start": "FY 15/16", + "Productive period": "1999-01-01;", + "Application Details": { + "plain": "[[ACM DB>>http://goto/MEMS/ToolApplicationOverview?Application=APC Trend]]", + "translated": "

ACM DB

" + }, + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Abinash.Ojha@infineon.com", + "Development model": "Custom development", + "name": "APC Trend", + "DataCenter Repository Link": { + "plain": "[[APC Trend>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27APC+Trend%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

APC Trend

" + }, + "FI - IRMA Group": "FI FE PCS", + "position": 510, + "FI - Application Roadmap": { + "plain": "http://ishare.infineon.com/sites/FactoryIntegration_PCS/Application_Roadmaps/Shared%20Documents/Forms/AllItems.aspx?RootFolder=%2Fsites%2FFactoryIntegration%5FPCS%2FApplication%5FRoadmaps%2FShared%20Documents%2FAPC%20FDC&FolderCTID=0x012000E9D7BDF8CFA6044885066BF894CC8F73&View=%7BB7D8DE5B%2D9741%2D4571%2DA878%2D4FB0F01C2ACB%7D", + "translated": "

http://ishare.infineon.com/sites/FactoryIntegration_PCS/Application_Roadmaps/Shared%20Documents/Forms/AllItems.aspx?RootFolder=%2Fsites%2FFactoryIntegration%5FPCS%2FApplication%5FRoadmaps%2FShared%20Documents%2FAPC%20FDC&FolderCTID=0x012000E9D7BDF8CFA6044885066BF894CC8F73&View=%7BB7D8DE5B%2D9741%2D4571%2DA878%2D4FB0F01C2ACB%7D

" + }, + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessDomainAssociations": [ + 58878 + ], + "children": [ + 17541, + 17535, + 17531, + 17539, + 59220, + 17533, + 16146, + 17537, + 52988, + 62700 + ], + "informationSystemDomainAssociations": [ + 59044, + 45879, + 70020, + 70413, + 46192, + 45397, + 45579, + 46092, + 45183, + 79475, + 56835 + ], + "parentComponents": [ + 4790, + 61727 + ], + "technicalComponentAssociations": [ + 28207, + 31134, + 73213, + 73215, + 29311, + 29807, + 31812, + 33342, + 33091, + 32488, + 73220, + 61988, + 73214, + 30153, + 53890, + 32041, + 73221, + 28454, + 30860, + 33496, + 28013, + 28918 + ], + "informationFlow2Associations": [ + 84845, + 39585, + 76412, + 84819, + 61502, + 39407, + 75061, + 39441, + 84832, + 54750, + 39256, + 50200, + 73192 + ], + "projectAssociations": [ + 84073, + 83434 + ], + "businessMappings": [ + 33927, + 33928 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/4582.json b/iteraplan/4582.json new file mode 100644 index 0000000..93314ff --- /dev/null +++ b/iteraplan/4582.json @@ -0,0 +1,5298 @@ +{ + "Ifl2BoAssociation": [ + { + "id": 8640, + "properties": { + "id": 8640, + "direction": "FIRST_TO_SECOND" + }, + "relations": { + "businessObject": [ + 8602 + ], + "informationFlow": [ + 8637 + ] + } + }, + { + "id": 74181, + "properties": { + "lastModificationTime": "2022-07-14T06:12:17.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 74181, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 72622 + ], + "informationFlow": [ + 64629 + ] + } + }, + { + "id": 74180, + "properties": { + "lastModificationTime": "2022-07-14T06:12:11.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 74180, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 10661 + ], + "informationFlow": [ + 64629 + ] + } + }, + { + "id": 62309, + "properties": { + "lastModificationTime": "2020-10-08T09:35:50.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 62309, + "direction": "SECOND_TO_FIRST" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 62306 + ] + } + }, + { + "id": 74182, + "properties": { + "lastModificationTime": "2022-07-14T06:12:22.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 74182, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 8602 + ], + "informationFlow": [ + 64629 + ] + } + }, + { + "id": 55800, + "properties": { + "lastModificationTime": "2020-03-24T14:14:58.000Z", + "lastModificationUser": "Jing Farn Tan (tajingfa)", + "id": 55800, + "direction": "BOTH_DIRECTIONS" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 55798 + ] + } + }, + { + "id": 18458, + "properties": { + "id": 18458, + "direction": "FIRST_TO_SECOND" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 18457 + ] + } + }, + { + "id": 55803, + "properties": { + "lastModificationTime": "2020-03-24T14:14:58.000Z", + "lastModificationUser": "Jing Farn Tan (tajingfa)", + "id": 55803, + "direction": "FIRST_TO_SECOND" + }, + "relations": { + "businessObject": [ + 1703 + ], + "informationFlow": [ + 55798 + ] + } + }, + { + "id": 8638, + "properties": { + "id": 8638, + "direction": "FIRST_TO_SECOND" + }, + "relations": { + "businessObject": [ + 8604 + ], + "informationFlow": [ + 8637 + ] + } + }, + { + "id": 8639, + "properties": { + "id": 8639, + "direction": "FIRST_TO_SECOND" + }, + "relations": { + "businessObject": [ + 8589 + ], + "informationFlow": [ + 8637 + ] + } + } + ], + "BusinessMapping": [ + { + "id": 70741, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.610Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 70741 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 13186 + ] + } + }, + { + "id": 36486, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.673Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 36486 + }, + "relations": { + "businessProcess": [ + 43870 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 49958, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.584Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 49958 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 13247 + ] + } + }, + { + "id": 49959, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.584Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 49959 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 13140 + ] + } + }, + { + "id": 49960, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.584Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 49960 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 13239 + ] + } + }, + { + "id": 49961, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.584Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 49961 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 13182 + ] + } + }, + { + "id": 34027, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.587Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34027 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 13118 + ] + } + }, + { + "id": 56860, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.616Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 56860 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 13175 + ] + } + }, + { + "id": 34028, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.587Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34028 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "itService": [ + 14125 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 63232, + "properties": { + "lastModificationTime": "2022-11-07T02:51:30.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "id": 63232 + }, + "relations": { + "informationFlow": [ + 8393 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 62208, + "properties": { + "lastModificationTime": "2020-10-06T12:42:02.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 62208 + }, + "relations": { + "informationFlow": [ + 18502 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 63233, + "properties": { + "lastModificationTime": "2022-11-07T02:51:30.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "id": 63233 + }, + "relations": { + "informationFlow": [ + 8393 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 62209, + "properties": { + "lastModificationTime": "2021-03-08T06:19:42.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 62209 + }, + "relations": { + "informationFlow": [ + 57159 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 62210, + "properties": { + "lastModificationTime": "2021-07-12T05:53:31.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 62210 + }, + "relations": { + "informationFlow": [ + 16018 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 75906, + "properties": { + "lastModificationTime": "2023-05-31T07:48:24.000Z", + "lastModificationUser": "Sascha Pscheidt (pscheidt)", + "id": 75906 + }, + "relations": { + "informationFlow": [ + 75905 + ], + "technicalComponent": [ + 17708 + ] + } + }, + { + "id": 62211, + "properties": { + "lastModificationTime": "2021-07-12T05:53:31.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 62211 + }, + "relations": { + "informationFlow": [ + 16018 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 62212, + "properties": { + "lastModificationTime": "2021-02-22T09:47:52.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 62212 + }, + "relations": { + "informationFlow": [ + 56116 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 61960, + "properties": { + "lastModificationTime": "2021-03-18T03:04:33.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 61960 + }, + "relations": { + "informationFlow": [ + 58490 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 61961, + "properties": { + "lastModificationTime": "2022-09-02T05:32:07.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 61961 + }, + "relations": { + "informationFlow": [ + 57301 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 55947, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 55947 + }, + "relations": { + "informationFlow": [ + 55944 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 61964, + "properties": { + "lastModificationTime": "2022-09-07T02:30:24.000Z", + "lastModificationUser": "Ferdinand Baliwag Florida (florida)", + "id": 61964 + }, + "relations": { + "informationFlow": [ + 18457 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 68115, + "properties": { + "lastModificationTime": "2022-06-21T01:38:36.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 68115 + }, + "relations": { + "informationFlow": [ + 56389 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 58522, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 58522 + }, + "relations": { + "informationFlow": [ + 58520 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 85532, + "properties": { + "lastModificationTime": "2023-09-01T02:05:43.093Z", + "lastModificationUser": "Kukuh Setyo Raharjo (raharjokukuh)", + "id": 85532 + }, + "relations": { + "informationFlow": [ + 61796 + ], + "technicalComponent": [ + 63835 + ] + } + }, + { + "id": 61739, + "properties": { + "lastModificationTime": "2022-06-20T03:28:46.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 61739 + }, + "relations": { + "informationFlow": [ + 61737 + ], + "technicalComponent": [ + 1113 + ] + } + }, + { + "id": 40110, + "properties": { + "lastModificationTime": "2022-11-07T02:51:30.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "id": 40110 + }, + "relations": { + "informationFlow": [ + 8393 + ], + "technicalComponent": [ + 941 + ] + } + }, + { + "id": 40113, + "properties": { + "lastModificationTime": "2022-09-01T10:26:40.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 40113 + }, + "relations": { + "informationFlow": [ + 17136 + ], + "technicalComponent": [ + 941 + ] + } + }, + { + "id": 62516, + "properties": { + "lastModificationTime": "2021-07-12T06:40:27.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 62516 + }, + "relations": { + "informationFlow": [ + 62514 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 56119, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 56119 + }, + "relations": { + "informationFlow": [ + 56116 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 55480, + "properties": { + "lastModificationTime": "2020-03-12T09:45:52.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 55480 + }, + "relations": { + "informationFlow": [ + 55144 + ], + "technicalComponent": [ + 1113 + ] + } + }, + { + "id": 61886, + "properties": { + "lastModificationTime": "2022-09-14T02:17:21.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 61886 + }, + "relations": { + "informationFlow": [ + 54484 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 56130, + "properties": { + "lastModificationTime": "2020-04-02T11:33:58.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 56130 + }, + "relations": { + "informationFlow": [ + 56129 + ], + "technicalComponent": [ + 1161 + ] + } + }, + { + "id": 57541, + "properties": { + "lastModificationTime": "2020-06-02T13:27:04.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 57541 + }, + "relations": { + "informationFlow": [ + 57540 + ], + "technicalComponent": [ + 6086 + ] + } + }, + { + "id": 63557, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 63557 + }, + "relations": { + "informationFlow": [ + 63555 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 40647, + "properties": { + "lastModificationTime": "2022-06-21T09:03:47.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 40647 + }, + "relations": { + "informationFlow": [ + 18451 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 63943, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 63943 + }, + "relations": { + "informationFlow": [ + 63942 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 56392, + "properties": { + "lastModificationTime": "2022-06-21T01:38:36.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 56392 + }, + "relations": { + "informationFlow": [ + 56389 + ], + "technicalComponent": [ + 17705 + ] + } + }, + { + "id": 57162, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 57162 + }, + "relations": { + "informationFlow": [ + 57159 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 40650, + "properties": { + "lastModificationTime": "2022-09-07T02:30:24.000Z", + "lastModificationUser": "Ferdinand Baliwag Florida (florida)", + "id": 40650 + }, + "relations": { + "informationFlow": [ + 18457 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 40651, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 40651 + }, + "relations": { + "informationFlow": [ + 18502 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 63441, + "properties": { + "lastModificationTime": "2022-07-28T01:20:29.000Z", + "lastModificationUser": "Tsuey Hong Lee (leets)", + "id": 63441 + }, + "relations": { + "informationFlow": [ + 63438 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 73939, + "properties": { + "lastModificationTime": "2022-07-11T09:52:03.000Z", + "lastModificationUser": "Benjamin Mader (maderben)", + "id": 73939 + }, + "relations": { + "informationFlow": [ + 73937 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 40147, + "properties": { + "lastModificationTime": "2022-10-06T11:55:05.000Z", + "lastModificationUser": "Christian Preschern (preschec)", + "id": 40147 + }, + "relations": { + "informationFlow": [ + 8637 + ], + "technicalComponent": [ + 1019 + ] + } + }, + { + "id": 64211, + "properties": { + "lastModificationTime": "2022-07-18T11:02:18.000Z", + "lastModificationUser": "Daniel Barthel (bartheld)", + "id": 64211 + }, + "relations": { + "informationFlow": [ + 64210 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 57302, + "properties": { + "lastModificationTime": "2022-09-02T05:32:07.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 57302 + }, + "relations": { + "informationFlow": [ + 57301 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 54487, + "properties": { + "lastModificationTime": "2022-09-14T02:17:21.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 54487 + }, + "relations": { + "informationFlow": [ + 54484 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 73944, + "properties": { + "lastModificationTime": "2022-07-11T10:24:09.000Z", + "lastModificationUser": "Benjamin Mader (maderben)", + "id": 73944 + }, + "relations": { + "informationFlow": [ + 61586 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 64217, + "properties": { + "lastModificationTime": "2022-07-18T11:04:37.000Z", + "lastModificationUser": "Daniel Barthel (bartheld)", + "id": 64217 + }, + "relations": { + "informationFlow": [ + 64215 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 73947, + "properties": { + "lastModificationTime": "2023-08-02T06:29:05.288Z", + "lastModificationUser": "Prithu Sah (sahp)", + "id": 73947 + }, + "relations": { + "informationFlow": [ + 73945 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 77787, + "properties": { + "lastModificationTime": "2023-01-03T01:01:57.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 77787 + }, + "relations": { + "informationFlow": [ + 77785 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 77789, + "properties": { + "lastModificationTime": "2023-01-03T01:01:57.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 77789 + }, + "relations": { + "informationFlow": [ + 77785 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 61919, + "properties": { + "lastModificationTime": "2021-03-18T03:04:33.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 61919 + }, + "relations": { + "informationFlow": [ + 58520 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 62307, + "properties": { + "lastModificationTime": "2022-09-01T10:27:48.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 62307 + }, + "relations": { + "informationFlow": [ + 62306 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 59237, + "properties": { + "lastModificationTime": "2022-06-20T03:28:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 59237 + }, + "relations": { + "informationFlow": [ + 59236 + ], + "technicalComponent": [ + 1113 + ] + } + }, + { + "id": 40550, + "properties": { + "lastModificationTime": "2021-07-12T06:12:18.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 40550 + }, + "relations": { + "informationFlow": [ + 17846 + ], + "technicalComponent": [ + 5762 + ] + } + }, + { + "id": 61927, + "properties": { + "lastModificationTime": "2022-06-21T09:03:47.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 61927 + }, + "relations": { + "informationFlow": [ + 18451 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 62311, + "properties": { + "lastModificationTime": "2022-09-01T10:27:48.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 62311 + }, + "relations": { + "informationFlow": [ + 62306 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 61545, + "properties": { + "lastModificationTime": "2022-09-01T10:27:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 61545 + }, + "relations": { + "informationFlow": [ + 21428 + ], + "technicalComponent": [ + 17705 + ] + } + }, + { + "id": 40178, + "properties": { + "lastModificationTime": "2022-09-01T10:26:40.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 40178 + }, + "relations": { + "informationFlow": [ + 17136 + ], + "technicalComponent": [ + 1019 + ] + } + }, + { + "id": 83189, + "properties": { + "lastModificationTime": "2023-06-14T11:25:10.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 83189 + }, + "relations": { + "informationFlow": [ + 17136 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 64117, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 64117 + }, + "relations": { + "informationFlow": [ + 64116 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 67572, + "properties": { + "lastModificationTime": "2022-12-21T09:44:58.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 67572 + }, + "relations": { + "informationFlow": [ + 61368 + ], + "technicalComponent": [ + 63835 + ] + } + }, + { + "id": 64630, + "properties": { + "lastModificationTime": "2023-06-12T06:58:52.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 64630 + }, + "relations": { + "informationFlow": [ + 64629 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 64631, + "properties": { + "lastModificationTime": "2023-06-12T06:58:52.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 64631 + }, + "relations": { + "informationFlow": [ + 64629 + ], + "technicalComponent": [ + 1019 + ] + } + }, + { + "id": 55799, + "properties": { + "lastModificationTime": "2022-06-20T09:48:37.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 55799 + }, + "relations": { + "informationFlow": [ + 55798 + ], + "technicalComponent": [ + 16391 + ] + } + }, + { + "id": 83193, + "properties": { + "lastModificationTime": "2023-06-14T11:27:57.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 83193 + }, + "relations": { + "informationFlow": [ + 17136 + ], + "technicalComponent": [ + 73756 + ] + } + }, + { + "id": 58492, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 58492 + }, + "relations": { + "informationFlow": [ + 58490 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 63229, + "properties": { + "lastModificationTime": "2022-06-21T09:03:47.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 63229 + }, + "relations": { + "informationFlow": [ + 18451 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 62205, + "properties": { + "lastModificationTime": "2020-10-06T12:41:30.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 62205 + }, + "relations": { + "informationFlow": [ + 55944 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 63230, + "properties": { + "lastModificationTime": "2022-09-01T10:24:57.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 63230 + }, + "relations": { + "informationFlow": [ + 16107 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 62206, + "properties": { + "lastModificationTime": "2022-11-07T14:23:41.000Z", + "lastModificationUser": "Felix Huber (hubefeli)", + "id": 62206 + }, + "relations": { + "informationFlow": [ + 17978 + ], + "technicalComponent": [ + 62172 + ] + } + }, + { + "id": 63231, + "properties": { + "lastModificationTime": "2022-09-01T10:24:57.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 63231 + }, + "relations": { + "informationFlow": [ + 16107 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 62207, + "properties": { + "lastModificationTime": "2022-11-07T14:23:41.000Z", + "lastModificationUser": "Felix Huber (hubefeli)", + "id": 62207 + }, + "relations": { + "informationFlow": [ + 17978 + ], + "technicalComponent": [ + 17704 + ] + } + } + ], + "Ifl2ProjAssociation": [ + { + "id": 84096, + "properties": { + "SCM - Impact Description": "To be replaced by Camstar - GPN - PIO integration", + "SCM - Impact Complexity": "Low", + "lastModificationTime": "2023-07-03T14:31:00.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Phase Out", + "id": 84096 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 61124 + ] + } + }, + { + "id": 81191, + "properties": { + "lastModificationTime": "2023-04-21T09:51:38.000Z", + "lastModificationUser": "Harald Ratusny (ratusny)", + "id": 81191 + }, + "relations": { + "project": [ + 80555 + ], + "informationFlow": [ + 57301 + ] + } + }, + { + "id": 84077, + "properties": { + "lastModificationTime": "2023-07-03T14:32:12.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84077 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 57159 + ] + } + }, + { + "id": 83671, + "properties": { + "SCM - Impact Complexity": "Medium", + "lastModificationTime": "2023-07-03T14:33:16.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Impacted", + "id": 83671 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 17136 + ] + } + }, + { + "id": 81494, + "properties": { + "lastModificationTime": "2023-04-21T09:51:38.000Z", + "lastModificationUser": "Harald Ratusny (ratusny)", + "id": 81494 + }, + "relations": { + "project": [ + 81316 + ], + "informationFlow": [ + 57301 + ] + } + }, + { + "id": 83673, + "properties": { + "SCM - Impact Complexity": "Low", + "lastModificationTime": "2023-07-03T14:29:59.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "New", + "id": 83673 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 56116 + ] + } + }, + { + "id": 84089, + "properties": { + "lastModificationTime": "2023-07-03T14:30:16.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84089 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 16107 + ] + } + }, + { + "id": 84091, + "properties": { + "lastModificationTime": "2023-07-03T14:33:59.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84091 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 21428 + ] + } + }, + { + "id": 84090, + "properties": { + "lastModificationTime": "2023-07-03T14:30:21.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84090 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 8393 + ] + } + }, + { + "id": 84093, + "properties": { + "SCM - Impact Description": "BE template", + "SCM - Impact Complexity": "Low", + "lastModificationTime": "2023-07-03T14:35:53.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "New", + "id": 84093 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 57540 + ] + } + }, + { + "id": 84092, + "properties": { + "SCM - Impact Description": "BE template", + "SCM - Impact Complexity": "Low", + "lastModificationTime": "2023-07-03T14:38:59.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "New", + "id": 84092 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 56154 + ] + } + }, + { + "id": 84095, + "properties": { + "lastModificationTime": "2023-07-03T14:35:17.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84095 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 17846 + ] + } + }, + { + "id": 84094, + "properties": { + "SCM - Impact Description": "BE template", + "SCM - Impact Complexity": "Low", + "lastModificationTime": "2023-07-03T14:35:48.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "New", + "id": 84094 + }, + "relations": { + "project": [ + 83654 + ], + "informationFlow": [ + 58520 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 37376, + "properties": { + "lastModificationTime": "2022-10-06T11:55:05.000Z", + "lastModificationUser": "Christian Preschern (preschec)", + "id": 37376 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 8637 + ] + } + }, + { + "id": 75907, + "properties": { + "lastModificationTime": "2022-08-23T06:05:17.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 75907 + }, + "relations": { + "informationSystem": [ + 15978 + ], + "informationFlow": [ + 75905 + ] + } + }, + { + "id": 56132, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 56132 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 56129 + ] + } + }, + { + "id": 61125, + "properties": { + "lastModificationTime": "2022-11-07T06:06:36.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "id": 61125 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 61124 + ] + } + }, + { + "id": 37765, + "properties": { + "lastModificationTime": "2022-09-01T10:24:57.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 37765 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 16107 + ] + } + }, + { + "id": 57542, + "properties": { + "lastModificationTime": "2022-07-13T07:12:58.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 57542 + }, + "relations": { + "informationSystem": [ + 5317 + ], + "informationFlow": [ + 57540 + ] + } + }, + { + "id": 56390, + "properties": { + "lastModificationTime": "2023-08-01T02:11:34.172Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 56390 + }, + "relations": { + "informationSystem": [ + 4876 + ], + "informationFlow": [ + 56389 + ] + } + }, + { + "id": 63558, + "properties": { + "lastModificationTime": "2023-06-08T13:21:29.000Z", + "lastModificationUser": "Chen Bang Ngo (ngochenb)", + "id": 63558 + }, + "relations": { + "informationSystem": [ + 63541 + ], + "informationFlow": [ + 63555 + ] + } + }, + { + "id": 61768, + "properties": { + "lastModificationTime": "2023-06-05T14:18:16.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 61768 + }, + "relations": { + "informationSystem": [ + 61727 + ], + "informationFlow": [ + 61737 + ] + } + }, + { + "id": 57160, + "properties": { + "lastModificationTime": "2023-05-09T11:47:40.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 57160 + }, + "relations": { + "informationSystem": [ + 4754 + ], + "informationFlow": [ + 57159 + ] + } + }, + { + "id": 63944, + "properties": { + "lastModificationTime": "2023-02-13T07:44:33.000Z", + "lastModificationUser": "Arjun Manoj (manojarj)", + "id": 63944 + }, + "relations": { + "informationSystem": [ + 21422 + ], + "informationFlow": [ + 63942 + ] + } + }, + { + "id": 55946, + "properties": { + "lastModificationTime": "2022-06-21T01:41:06.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 55946 + }, + "relations": { + "informationSystem": [ + 52314 + ], + "informationFlow": [ + 55944 + ] + } + }, + { + "id": 38284, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 38284 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 18451 + ] + } + }, + { + "id": 63439, + "properties": { + "lastModificationTime": "2022-08-03T06:24:47.000Z", + "lastModificationUser": "Chen Bang Ngo (ngochenb)", + "id": 63439 + }, + "relations": { + "informationSystem": [ + 63424 + ], + "informationFlow": [ + 63438 + ] + } + }, + { + "id": 38287, + "properties": { + "lastModificationTime": "2022-09-07T02:30:24.000Z", + "lastModificationUser": "Ferdinand Baliwag Florida (florida)", + "id": 38287 + }, + "relations": { + "informationSystem": [ + 16134 + ], + "informationFlow": [ + 18457 + ] + } + }, + { + "id": 61587, + "properties": { + "lastModificationTime": "2023-08-17T09:38:36.302Z", + "lastModificationUser": "Prithu Sah (sahp)", + "id": 61587 + }, + "relations": { + "informationSystem": [ + 15935 + ], + "informationFlow": [ + 61586 + ] + } + }, + { + "id": 73938, + "properties": { + "lastModificationTime": "2023-08-17T09:38:36.302Z", + "lastModificationUser": "Prithu Sah (sahp)", + "id": 73938 + }, + "relations": { + "informationSystem": [ + 15935 + ], + "informationFlow": [ + 73937 + ] + } + }, + { + "id": 64213, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 64213 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 64210 + ] + } + }, + { + "id": 54485, + "properties": { + "lastModificationTime": "2022-09-20T09:02:21.000Z", + "lastModificationUser": "Syamsul Izwani A Bakar (abakar)", + "id": 54485 + }, + "relations": { + "informationSystem": [ + 15214 + ], + "informationFlow": [ + 54484 + ] + } + }, + { + "id": 38423, + "properties": { + "lastModificationTime": "2023-01-16T09:11:58.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 38423 + }, + "relations": { + "informationSystem": [ + 16306 + ], + "informationFlow": [ + 21428 + ] + } + }, + { + "id": 73814, + "properties": { + "lastModificationTime": "2023-05-22T02:36:21.000Z", + "lastModificationUser": "Jing Farn Tan (tajingfa)", + "id": 73814 + }, + "relations": { + "informationSystem": [ + 73808 + ], + "informationFlow": [ + 73812 + ] + } + }, + { + "id": 57303, + "properties": { + "lastModificationTime": "2023-04-17T13:54:55.000Z", + "lastModificationUser": "Manfred Gerbeth (gerbeth)", + "id": 57303 + }, + "relations": { + "informationSystem": [ + 21261 + ], + "informationFlow": [ + 57301 + ] + } + }, + { + "id": 37720, + "properties": { + "lastModificationTime": "2023-03-20T02:20:03.000Z", + "lastModificationUser": "Lay Khoon Tan (tanlaykh)", + "id": 37720 + }, + "relations": { + "informationSystem": [ + 5680 + ], + "informationFlow": [ + 16018 + ] + } + }, + { + "id": 38297, + "properties": { + "lastModificationTime": "2022-08-01T06:08:06.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 38297 + }, + "relations": { + "informationSystem": [ + 16539 + ], + "informationFlow": [ + 18502 + ] + } + }, + { + "id": 58521, + "properties": { + "lastModificationTime": "2022-07-13T07:12:58.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 58521 + }, + "relations": { + "informationSystem": [ + 5317 + ], + "informationFlow": [ + 58520 + ] + } + }, + { + "id": 64218, + "properties": { + "lastModificationTime": "2023-07-25T12:32:23.000Z", + "lastModificationUser": "Daniel Barthel (bartheld)", + "id": 64218 + }, + "relations": { + "informationSystem": [ + 62628 + ], + "informationFlow": [ + 64215 + ] + } + }, + { + "id": 77786, + "properties": { + "lastModificationTime": "2023-02-02T01:18:36.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 77786 + }, + "relations": { + "informationSystem": [ + 77780 + ], + "informationFlow": [ + 77785 + ] + } + }, + { + "id": 56155, + "properties": { + "lastModificationTime": "2023-04-14T14:12:56.000Z", + "lastModificationUser": "Burkhard Wolf (wolfburk)", + "id": 56155 + }, + "relations": { + "informationSystem": [ + 8573 + ], + "informationFlow": [ + 56154 + ] + } + }, + { + "id": 73948, + "properties": { + "lastModificationTime": "2023-08-02T06:29:05.289Z", + "lastModificationUser": "Prithu Sah (sahp)", + "id": 73948 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 73945 + ] + } + }, + { + "id": 38047, + "properties": { + "lastModificationTime": "2021-07-30T09:35:49.000Z", + "lastModificationUser": "Teck Khiong Woi (woi)", + "id": 38047 + }, + "relations": { + "informationSystem": [ + 4978 + ], + "informationFlow": [ + 17846 + ] + } + }, + { + "id": 37472, + "properties": { + "lastModificationTime": "2022-11-17T06:06:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 37472 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 10208 + ] + } + }, + { + "id": 62308, + "properties": { + "lastModificationTime": "2023-07-04T04:06:11.000Z", + "lastModificationUser": "Michael Schmalzbauer (schmalmi)", + "id": 62308 + }, + "relations": { + "informationSystem": [ + 47901 + ], + "informationFlow": [ + 62306 + ] + } + }, + { + "id": 59238, + "properties": { + "lastModificationTime": "2022-06-20T03:28:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 59238 + }, + "relations": { + "informationSystem": [ + 4790 + ], + "informationFlow": [ + 59236 + ] + } + }, + { + "id": 61798, + "properties": { + "lastModificationTime": "2023-01-11T06:23:22.000Z", + "lastModificationUser": "Kukuh Setyo Raharjo (raharjokukuh)", + "id": 61798 + }, + "relations": { + "informationSystem": [ + 61708 + ], + "informationFlow": [ + 61796 + ] + } + }, + { + "id": 55145, + "properties": { + "lastModificationTime": "2023-05-02T07:51:39.000Z", + "lastModificationUser": "Thomas Schmidt (schmt)", + "id": 55145 + }, + "relations": { + "informationSystem": [ + 49035 + ], + "informationFlow": [ + 55144 + ] + } + }, + { + "id": 37291, + "properties": { + "lastModificationTime": "2022-11-07T02:51:30.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "id": 37291 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 8393 + ] + } + }, + { + "id": 38123, + "properties": { + "lastModificationTime": "2022-11-07T14:23:41.000Z", + "lastModificationUser": "Felix Huber (hubefeli)", + "id": 38123 + }, + "relations": { + "informationSystem": [ + 16118 + ], + "informationFlow": [ + 17978 + ] + } + }, + { + "id": 37613, + "properties": { + "lastModificationTime": "2023-05-24T14:16:10.000Z", + "lastModificationUser": "Sruthi Haridas (haridassruth)", + "id": 37613 + }, + "relations": { + "informationSystem": [ + 4866 + ], + "informationFlow": [ + 15193 + ] + } + }, + { + "id": 62517, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 62517 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 62514 + ] + } + }, + { + "id": 56117, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 56117 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 56116 + ] + } + }, + { + "id": 64118, + "properties": { + "lastModificationTime": "2023-05-26T07:08:29.000Z", + "lastModificationUser": "Florian Sippenauer (sippenau)", + "id": 64118 + }, + "relations": { + "informationSystem": [ + 4491 + ], + "informationFlow": [ + 64116 + ] + } + }, + { + "id": 64633, + "properties": { + "lastModificationTime": "2023-06-12T06:58:52.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 64633 + }, + "relations": { + "informationSystem": [ + 49884 + ], + "informationFlow": [ + 64629 + ] + } + }, + { + "id": 55802, + "properties": { + "lastModificationTime": "2023-05-31T07:39:40.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 55802 + }, + "relations": { + "informationSystem": [ + 50720 + ], + "informationFlow": [ + 55798 + ] + } + }, + { + "id": 61371, + "properties": { + "lastModificationTime": "2022-12-06T02:48:41.000Z", + "lastModificationUser": "I-Chun Chung (chungpet)", + "id": 61371 + }, + "relations": { + "informationSystem": [ + 4724 + ], + "informationFlow": [ + 61368 + ] + } + }, + { + "id": 58491, + "properties": { + "lastModificationTime": "2023-07-13T01:23:39.000Z", + "lastModificationUser": "Soon Kang Theng (thengsoo)", + "id": 58491 + }, + "relations": { + "informationSystem": [ + 52341 + ], + "informationFlow": [ + 58490 + ] + } + }, + { + "id": 37951, + "properties": { + "lastModificationTime": "2022-11-10T10:48:07.000Z", + "lastModificationUser": "Ketan Rameshchandra Panchal (panchalk)", + "id": 37951 + }, + "relations": { + "informationSystem": [ + 17075 + ], + "informationFlow": [ + 17136 + ] + } + }, + { + "id": 37759, + "properties": { + "lastModificationTime": "2023-01-05T03:44:24.000Z", + "lastModificationUser": "Hui Ming Ong (onghuimi)", + "id": 37759 + }, + "relations": { + "informationSystem": [ + 5632 + ], + "informationFlow": [ + 16100 + ] + } + }, + { + "id": 64575, + "properties": { + "lastModificationTime": "2022-08-31T01:19:44.000Z", + "lastModificationUser": "Meng Mee Lim (limmen)", + "id": 64575 + }, + "relations": { + "informationSystem": [ + 51884 + ], + "informationFlow": [ + 64573 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 46098, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 46098 + }, + "relations": { + "informationSystemDomain": [ + 45101 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 45188, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 45188 + }, + "relations": { + "informationSystemDomain": [ + 45098 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 59029, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 59029 + }, + "relations": { + "informationSystemDomain": [ + 59012 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 45398, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 45398 + }, + "relations": { + "informationSystemDomain": [ + 45094 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 59047, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 59047 + }, + "relations": { + "informationSystemDomain": [ + 59008 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 46072, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 46072 + }, + "relations": { + "informationSystemDomain": [ + 45126 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 59034, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 59034 + }, + "relations": { + "informationSystemDomain": [ + 59010 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 79516, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79516 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 4582 + ] + } + }, + { + "id": 59053, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 59053 + }, + "relations": { + "informationSystemDomain": [ + 59007 + ], + "informationSystem": [ + 4582 + ] + } + } + ], + "Is2BdAssociation": [ + { + "id": 40899, + "properties": { + "EA - Impact Ranking": 3.00, + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 40899 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "businessDomain": [ + 40793 + ] + } + } + ], + "InformationFlow": [ + { + "id": 75905, + "properties": { + "lastModificationTime": "2022-08-23T07:00:28.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Auto Weighing -> Camstar BE ID#75905", + "description": { + "plain": "Auto Weighing Get Lot Information from Camstar BE. API:GetLotDetails", + "translated": "

Auto Weighing Get Lot Information from Camstar BE. API:GetLotDetails

" + }, + "id": 75905, + "position": 2640, + "Roadmap Ranking": "Phase out", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 75907 + ], + "technicalComponentAssociations": [ + 75906 + ], + "informationSystem2Associations": [ + 75908 + ] + } + }, + { + "id": 56129, + "properties": { + "lastModificationTime": "2020-04-02T11:33:58.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> Enterprise Labeling ID#56129", + "description": { + "plain": "Interface for Label Printing withing FI BE. MES (Camstar) create a sik file which is captured by Enterprise Labeling (Spectrum) which use the information to generate the label and send it to the Network Printer.", + "translated": "

Interface for Label Printing withing FI BE. MES (Camstar) create a sik file which is captured by Enterprise Labeling (Spectrum) which use the information to generate the label and send it to the Network Printer.

" + }, + "id": 56129, + "position": 1691, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 56132 + ], + "technicalComponentAssociations": [ + 56130 + ], + "informationSystem2Associations": [ + 56131 + ] + } + }, + { + "id": 63555, + "properties": { + "lastModificationTime": "2021-01-15T17:00:34.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "CRA <- Camstar BE ID#63555", + "description": { + "plain": "After receiving the EBS loaded event and checking if the test program is enabled for CRA, the Socket life count is requested from Camstar via GetDurableDetails", + "translated": "

After receiving the EBS loaded event and checking if the test program is enabled for CRA, the Socket life count is requested from Camstar via GetDurableDetails

" + }, + "id": 63555, + "position": 2017, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 63558 + ], + "technicalComponentAssociations": [ + 63557 + ], + "informationSystem2Associations": [ + 63556 + ] + } + }, + { + "id": 61124, + "properties": { + "lastModificationTime": "2022-11-07T06:06:36.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "Camstar BE <-> SAP ERP (ERP) ID#61124", + "description": { + "plain": "Camstar BE to get Product, Product BOM and Material. Camstar to backflash the wip to IR-SAP. this is only used in TIJUANA, and it will be phased out after SAP PIO rollout.", + "translated": "

Camstar BE to get Product, Product BOM and Material. Camstar to backflash the wip to IR-SAP. this is only used in TIJUANA, and it will be phased out after SAP PIO rollout.

" + }, + "id": 61124, + "position": 1924, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 61125 + ], + "projectAssociations": [ + 84096 + ], + "informationSystem2Associations": [ + 61126 + ] + } + }, + { + "id": 57540, + "properties": { + "lastModificationTime": "2020-06-02T13:27:04.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "RTD <- Camstar BE ID#57540", + "description": { + "plain": "Camstar is providing Equipment Masterdata information to the RTD via Database trigger\nCamstar via ODS*\tOnline (DB trigger)\tLot information for Dispatch List, Core MES master data\n*only Camstar integration uses ODS for RTD integration, all other Online integration connects direct with Application OLTP database.", + "translated": "

Camstar is providing Equipment Masterdata information to the RTD via Database trigger
Camstar  via ODS* Online (DB trigger) Lot information for Dispatch List, Core MES master data
*only Camstar integration uses ODS for RTD integration, all other Online integration connects direct with Application OLTP database.

" + }, + "id": 57540, + "position": 1837, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 57542 + ], + "technicalComponentAssociations": [ + 57541 + ], + "projectAssociations": [ + 84093 + ], + "informationSystem2Associations": [ + 57543 + ] + } + }, + { + "id": 56389, + "properties": { + "lastModificationTime": "2022-06-21T02:00:29.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "MIMS -> Camstar BE ID#56389", + "description": { + "plain": "MIMS use Getlotdetails & GetLotAttributes API to get Lot Details information\n\nProductManagementBackend/GetLotDetails: http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060\nProductManagementBackend/GetLotAttributes:http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=3389", + "translated": "

MIMS use Getlotdetails & GetLotAttributes API to get Lot Details information

ProductManagementBackend/GetLotDetails: http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060
ProductManagementBackend/GetLotAttributes:http:ifxapiviewer.vih.infineon.com/?dbindex=1&service=3389

" + }, + "id": 56389, + "position": 1724, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 56390 + ], + "technicalComponentAssociations": [ + 56392, + 68115 + ], + "informationSystem2Associations": [ + 56391 + ] + } + }, + { + "id": 18502, + "properties": { + "lastModificationTime": "2020-10-06T13:00:24.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "AIR <- Camstar BE ID#18502", + "description": { + "plain": "[[ProductManagementBackend/GetLotDetails>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060]]", + "translated": "

ProductManagementBackend/GetLotDetails

" + }, + "id": 18502, + "position": 997, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38297 + ], + "technicalComponentAssociations": [ + 40651, + 62208 + ], + "informationSystem2Associations": [ + 39597 + ] + } + }, + { + "id": 63942, + "properties": { + "lastModificationTime": "2021-02-26T08:00:34.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "ABIDS <- Camstar BE ID#63942", + "description": { + "plain": "ABIDS retrieves current SPEC name for DLS via YODA call (GetLotDetails)", + "translated": "

ABIDS retrieves current SPEC name for DLS via YODA call (GetLotDetails)

" + }, + "id": 63942, + "position": 2051, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical", + "Information Flow Details": { + "plain": "http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060", + "translated": "

http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060

" + } + }, + "relations": { + "informationSystem1Associations": [ + 63944 + ], + "technicalComponentAssociations": [ + 63943 + ], + "informationSystem2Associations": [ + 63945 + ] + } + }, + { + "id": 57159, + "properties": { + "lastModificationTime": "2021-03-08T06:19:42.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Exception Management -> Camstar BE ID#57159", + "description": { + "plain": "Trigger Camstar to Hold Lot and Release Lot.", + "translated": "

Trigger Camstar to Hold Lot and Release Lot.

" + }, + "id": 57159, + "position": 1804, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 57160 + ], + "technicalComponentAssociations": [ + 62209, + 57162 + ], + "projectAssociations": [ + 84077 + ], + "informationSystem2Associations": [ + 57161 + ] + } + }, + { + "id": 55944, + "properties": { + "lastModificationTime": "2020-10-06T13:00:24.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "JobController NxG BE -> Camstar BE ID#55944", + "description": { + "plain": "Interface from JobController NxG BE towards Camstar via the YODA Camstar Gateway which translate the YODA message into the internal XML structure for the InsideXMLServer.", + "translated": "

Interface from JobController NxG BE towards Camstar via the YODA Camstar Gateway which translate the YODA message into the internal XML structure for the InsideXMLServer.

" + }, + "id": 55944, + "position": 1668, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 55946 + ], + "technicalComponentAssociations": [ + 55947, + 62205 + ], + "informationSystem2Associations": [ + 55945 + ] + } + }, + { + "id": 8393, + "properties": { + "lastModificationTime": "2022-11-07T02:51:30.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "Camstar BE <-> DDM ID#8393", + "description": { + "plain": "Camstar integrates with DDM. \n1. Camstar triggers DDM to hold if any lot has a violation.\n2. DDM to trigger release lot to Camstar once the quality is investigated.", + "translated": "

Camstar integrates with DDM. 

  1. Camstar triggers DDM to hold if any lot has a violation.
    2. DDM to trigger release lot to Camstar once the quality is investigated.
" + }, + "id": 8393, + "position": 110, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 37291 + ], + "technicalComponentAssociations": [ + 63233, + 63232, + 40110 + ], + "projectAssociations": [ + 84090 + ], + "informationSystem2Associations": [ + 38591 + ] + } + }, + { + "id": 63438, + "properties": { + "lastModificationTime": "2022-07-28T01:20:29.000Z", + "lastModificationUser": "Tsuey Hong Lee (leets)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "VOILA <- Camstar BE ID#63438", + "description": { + "plain": "Get lot details, especially the package family, which is an important input for the Rendezvous Component to determine the correct ML model", + "translated": "

Get lot details, especially the package family, which is an important input for the Rendezvous Component to determine the correct ML model

" + }, + "id": 63438, + "position": 2011, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 63439 + ], + "technicalComponentAssociations": [ + 63441 + ], + "informationSystem2Associations": [ + 63440 + ] + } + }, + { + "id": 73937, + "properties": { + "lastModificationTime": "2022-07-11T10:00:29.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "MHA Server -> Camstar BE ID#73937", + "description": { + "plain": "• SetCarrierToCarrierAssociation : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4191 \n• SetCarrierToCarrierDeAssociation : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4190 \n• SetCarrierToLotAssociation : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4189 \n• SetCarrierToLotDeAssociation : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4188", + "translated": "

• SetCarrierToCarrierAssociation : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4191  
• SetCarrierToCarrierDeAssociation : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4190  
• SetCarrierToLotAssociation  : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4189  
• SetCarrierToLotDeAssociation  : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4188

" + }, + "id": 73937, + "position": 2545, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 73938 + ], + "technicalComponentAssociations": [ + 73939 + ], + "informationSystem2Associations": [ + 73940 + ] + } + }, + { + "id": 64210, + "properties": { + "lastModificationTime": "2022-07-18T11:02:18.000Z", + "lastModificationUser": "Daniel Barthel (bartheld)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> EAF MHA Integration ID#64210", + "description": { + "plain": "Camstar publish Transport Orders to BE Material Handling Systems (ABSS, AMHS, AGV) using IFX YODA through EAF MHA Integration.", + "translated": "

Camstar publish Transport Orders to BE Material Handling Systems (ABSS, AMHS, AGV) using IFX YODA through EAF MHA Integration.

" + }, + "id": 64210, + "position": 2095, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 64213 + ], + "technicalComponentAssociations": [ + 64211 + ], + "informationSystem2Associations": [ + 64212 + ] + } + }, + { + "id": 61586, + "properties": { + "lastModificationTime": "2022-07-11T09:51:34.000Z", + "lastModificationUser": "Benjamin Mader (maderben)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "MHA Server <- Camstar BE ID#61586", + "description": { + "plain": "• GetCarrierListToLot\t\t\t : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4193\n•\tGetCarrierToCarrier\t\t\t : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4194 \n•\tGetLotToCarrier\t\t\t : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4192", + "translated": "

•       GetCarrierListToLot           : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4193
• GetCarrierToCarrier           : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4194  
• GetLotToCarrier                   : http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4192

" + }, + "id": 61586, + "position": 1950, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 61587 + ], + "technicalComponentAssociations": [ + 73944 + ], + "informationSystem2Associations": [ + 61588 + ] + } + }, + { + "id": 16018, + "properties": { + "lastModificationTime": "2021-07-12T05:53:31.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "eSCRAP <-> Camstar BE ID#16018", + "description": { + "plain": "eScrap get lot info from Camstar when creator submit escrap form. after submit success, another schedule job will running to update lot owner to \"SCRAP\",or when user Reject/Withdrawal the scrap form will rollback owner. At the end, completed the approve process, escrap will terminate lot.\n\n[[ProductManagementBackend/GetLotDetails>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060]]\n[[ProductManagementBackend/SetLotAttributes>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=3396]]\n[[ProductManagementBackend/TerminateLot>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=3397]]", + "translated": "

eScrap get lot info from Camstar when creator submit escrap form. after submit success, another schedule job will running to update lot owner to \"SCRAP\",or when user Reject/Withdrawal the scrap form will rollback owner. At the end, completed the approve process, escrap will terminate lot.

ProductManagementBackend/GetLotDetails
ProductManagementBackend/SetLotAttributes
ProductManagementBackend/TerminateLot

" + }, + "id": 16018, + "position": 507, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 37720 + ], + "technicalComponentAssociations": [ + 62211, + 62210 + ], + "informationSystem2Associations": [ + 39020 + ] + } + }, + { + "id": 18451, + "properties": { + "lastModificationTime": "2022-06-21T09:03:47.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> RMS BE ID#18451", + "description": { + "plain": "RMS BE is requesting lot details via YODA GetLotDetails from the MES system\n[[ProductManagementBackend\\GetLotDetails>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060]]", + "translated": "

RMS BE is requesting lot details via YODA GetLotDetails from the MES system
ProductManagementBackend\\GetLotDetails

" + }, + "id": 18451, + "position": 984, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38284 + ], + "technicalComponentAssociations": [ + 61927, + 40647, + 63229 + ], + "informationSystem2Associations": [ + 39584 + ] + } + }, + { + "id": 54484, + "properties": { + "Valid From-To": "2022-07-01;2022-12-31", + "lastModificationTime": "2022-09-14T02:17:21.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "FAST -> Camstar BE ID#54484", + "description": { + "plain": "FAST translates events from EAF and sends them to Camstar, FAST receives CreateTransportJob commands from Camstar, translates them and sends them to EAF.", + "translated": "

FAST translates events from EAF and sends them to  Camstar, FAST receives CreateTransportJob commands from Camstar, translates them and sends them to EAF.

" + }, + "id": 54484, + "position": 1480, + "Roadmap Ranking": "Shutdown", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 54485 + ], + "technicalComponentAssociations": [ + 61886, + 54487 + ], + "informationSystem2Associations": [ + 54486 + ] + } + }, + { + "id": 73812, + "properties": { + "lastModificationTime": "2022-09-14T03:55:37.000Z", + "lastModificationUser": "Jing Farn Tan (tajingfa)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "AI Windows Services -> Camstar BE ID#73812", + "description": { + "plain": "This Windows service will query Camstar for the lots that will be entering virtual spec for AI and retrieve the required action to be done on the lot ( eg Move in, TrackIn)", + "translated": "

This Windows service will query Camstar for the lots that will be entering virtual spec for AI and retrieve the required action to be done on the lot ( eg Move in, TrackIn)

" + }, + "id": 73812, + "position": 2535, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 73814 + ], + "informationSystem2Associations": [ + 73813 + ] + } + }, + { + "id": 57301, + "properties": { + "lastModificationTime": "2022-09-02T05:32:07.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "SAP Plant Maintenance # S/4 -> Camstar BE ID#57301", + "description": { + "plain": "SAP transfer to Camstar:\n1) Transfer Tool Stop date during Order creation. Update Tool Stop date if PM extension\n2) EQ id must match, else send mail reminder, match techIdenId, EQ Category\n3) Functional Location\n4) Maint. Plan\n5) Order number", + "translated": "

SAP transfer to Camstar:
1) Transfer Tool Stop date during Order creation. Update Tool Stop date if PM extension
2) EQ id must match, else send mail reminder, match techIdenId, EQ Category
3) Functional Location
4) Maint. Plan
5) Order number

" + }, + "id": 57301, + "position": 1817, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium", + "Information Flow Details": { + "plain": "https://confluencewikiprod.intra.infineon.com/x/hlyJCw", + "translated": "

https://confluencewikiprod.intra.infineon.com/x/hlyJCw

" + } + }, + "relations": { + "informationSystem1Associations": [ + 57303 + ], + "technicalComponentAssociations": [ + 61961, + 57302 + ], + "projectAssociations": [ + 81191, + 81494 + ], + "informationSystem2Associations": [ + 57304 + ] + } + }, + { + "id": 64215, + "properties": { + "lastModificationTime": "2022-07-18T11:04:37.000Z", + "lastModificationUser": "Daniel Barthel (bartheld)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EAF MHA Integration -> Camstar BE ID#64215", + "description": { + "plain": "BE material handling systems (ABSS, AMHS, AGV) publishes notifications to Camstar BE through EAF MHA Integrations.", + "translated": "

BE material handling systems (ABSS, AMHS, AGV) publishes notifications to Camstar BE through EAF MHA Integrations.

" + }, + "id": 64215, + "position": 2096, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 64218 + ], + "technicalComponentAssociations": [ + 64217 + ], + "informationSystem2Associations": [ + 64216 + ] + } + }, + { + "id": 73945, + "properties": { + "lastModificationTime": "2023-08-02T06:29:05.280Z", + "lastModificationUser": "Prithu Sah (sahp)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> MHA Server ID#73945", + "description": { + "plain": "Camstar requests Transportjob creation and Transportjob abort from MHA Server. \nCreate TransportJob: https://ifxapiviewer.vih.infineon.com/?dbindex=2&service=2485\nAbortTransportJob: https://ifxapiviewer.vih.infineon.com/?dbindex=2&service=2484", + "translated": "

Camstar requests Transportjob creation and Transportjob abort from MHA Server.
Create TransportJob: https://ifxapiviewer.vih.infineon.com/?dbindex=2&service=2485
AbortTransportJob: https://ifxapiviewer.vih.infineon.com/?dbindex=2&service=2484

" + }, + "id": 73945, + "position": 2547, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 73948 + ], + "technicalComponentAssociations": [ + 73947 + ], + "informationSystem2Associations": [ + 73946 + ] + } + }, + { + "id": 77785, + "properties": { + "lastModificationTime": "2023-01-03T01:01:57.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "DIGI5M -> Camstar BE ID#77785", + "description": { + "plain": "Call Camstar GetLot Details API", + "translated": "

Call Camstar GetLot Details API

" + }, + "id": 77785, + "position": 2730, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 77786 + ], + "technicalComponentAssociations": [ + 77787, + 77789 + ], + "informationSystem2Associations": [ + 77788 + ] + } + }, + { + "id": 58520, + "properties": { + "lastModificationTime": "2020-06-02T14:00:23.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "RTD -> Camstar BE ID#58520", + "description": { + "plain": "GETDISPATCHLIST\tCamstar \tLot Priority on the Dispatch List in FA JOB TXN UI & Transport Screen.\nGETNEXTEVENT\tCamstar\tProvide the results from Optigen Solver for next event ( activity, tool plan ,package, temp, etc ) in FA JOB TXN UI\n[[Dispatching\\ExecuteRuleCompact>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=3117]]", + "translated": "

GETDISPATCHLIST Camstar  Lot Priority on the Dispatch List in FA JOB TXN UI  & Transport Screen.
GETNEXTEVENT Camstar Provide the results from Optigen Solver for next event ( activity, tool plan ,package, temp, etc ) in FA JOB TXN UI
Dispatching\\ExecuteRuleCompact

" + }, + "id": 58520, + "position": 1861, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 58521 + ], + "technicalComponentAssociations": [ + 58522, + 61919 + ], + "projectAssociations": [ + 84094 + ], + "informationSystem2Associations": [ + 58523 + ] + } + }, + { + "id": 18457, + "properties": { + "lastModificationTime": "2022-09-07T02:30:24.000Z", + "lastModificationUser": "Ferdinand Baliwag Florida (florida)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Twin Adapter -> Camstar BE ID#18457", + "description": { + "plain": "TwinAdapter forwards API message to Camstar (e.g. GetLotDetails, HoldLot)", + "translated": "

TwinAdapter forwards API message to Camstar (e.g. GetLotDetails, HoldLot)

" + }, + "id": 18457, + "position": 987, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 18458 + ], + "informationSystem1Associations": [ + 38287 + ], + "technicalComponentAssociations": [ + 61964, + 40650 + ], + "informationSystem2Associations": [ + 39587 + ] + } + }, + { + "id": 15193, + "properties": { + "lastModificationTime": "2022-09-01T10:18:41.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "MESSIS <-> Camstar BE ID#15193", + "description": { + "plain": "Warstein HPS Interface SAP <> MESSIS <> Camstar", + "translated": "

Warstein HPS Interface SAP <> MESSIS <> Camstar

" + }, + "id": 15193, + "position": 410, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 37613 + ], + "informationSystem2Associations": [ + 38913 + ] + } + }, + { + "id": 56154, + "properties": { + "lastModificationTime": "2022-09-01T11:52:30.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "SAP Plant Maintenance -> Camstar BE ID#56154", + "description": { + "plain": "Backend uses CAMSTAR application and this is connected to SAP to transfer tool stop date information.", + "translated": "

Backend uses CAMSTAR application and this is connected to SAP to transfer tool stop date information.

" + }, + "id": 56154, + "position": 1693, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 56155 + ], + "projectAssociations": [ + 84092 + ], + "informationSystem2Associations": [ + 56156 + ] + } + }, + { + "id": 10208, + "properties": { + "lastModificationTime": "2022-11-17T06:06:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> EPOS ID#10208", + "description": { + "plain": "for the non-PIO side, it's an inventory based on the SCORE file (generated by Camstar BE) used by I/3 (Evaluation Tool - annual/ quarterly/ monthly) for WIP evaluation during month-end closing.\nhttps://wiki.intra.infineon.com/EPOS_Tools\nNote: for the PIO side, data source from SAP, no more SCORE.", + "translated": "

for the non-PIO side, it's an inventory based on the SCORE file (generated by Camstar BE) used by I/3 (Evaluation Tool - annual/ quarterly/ monthly) for WIP evaluation during month-end closing.
https://wiki.intra.infineon.com/EPOS_Tools
Note: for the PIO side, data source from SAP, no more SCORE.

" + }, + "id": 10208, + "position": 277, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 37472 + ], + "informationSystem2Associations": [ + 38772 + ] + } + }, + { + "id": 62306, + "properties": { + "lastModificationTime": "2022-09-01T10:27:48.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "NDM -> Camstar BE ID#62306", + "description": { + "plain": "GetLotDetails\nhttp://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060", + "translated": "

GetLotDetails
http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4060

" + }, + "id": 62306, + "position": 1981, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 62309 + ], + "informationSystem1Associations": [ + 62308 + ], + "technicalComponentAssociations": [ + 62311, + 62307 + ], + "informationSystem2Associations": [ + 62310 + ] + } + }, + { + "id": 16100, + "properties": { + "lastModificationTime": "2022-08-11T03:45:15.000Z", + "lastModificationUser": "Hui Ming Ong (onghuimi)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "Workstream BE <-> Camstar BE ID#16100", + "description": { + "plain": "Integration between Workstream BE with CAMSTAR for the lot start in PROD, and lot shipment from PROD", + "translated": "

Integration between Workstream BE with CAMSTAR for the lot start in PROD, and lot shipment from PROD

" + }, + "id": 16100, + "position": 540, + "Roadmap Ranking": "Phase out", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 37759 + ], + "informationSystem2Associations": [ + 39059 + ] + } + }, + { + "id": 59236, + "properties": { + "lastModificationTime": "2022-06-20T03:28:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA FA FW HPS -> Camstar BE ID#59236", + "description": { + "plain": "Connection between the BEAR MES solution \"Camstar BE\" via the IFX developed Camstar Adapter", + "translated": "

Connection between the BEAR MES solution \"Camstar BE\" via the IFX developed Camstar Adapter

" + }, + "id": 59236, + "position": 1890, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 59238 + ], + "technicalComponentAssociations": [ + 59237 + ], + "informationSystem2Associations": [ + 59239 + ] + } + }, + { + "id": 61796, + "properties": { + "lastModificationTime": "2022-06-20T02:30:18.000Z", + "lastModificationUser": "I-Chun Chung (chungpet)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "IBIS Utilities -> Camstar BE ID#61796", + "description": { + "plain": "IBIS Utilities will call EAF (NotifyDurableAttribute) to update BIB Status in CAMSTAR", + "translated": "

IBIS Utilities will call EAF (NotifyDurableAttribute) to update BIB Status in CAMSTAR

" + }, + "id": 61796, + "position": 1968, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 61798 + ], + "technicalComponentAssociations": [ + 85532 + ], + "informationSystem2Associations": [ + 61797 + ] + } + }, + { + "id": 55144, + "properties": { + "lastModificationTime": "2020-03-12T09:44:53.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "MESAdapter -> Camstar BE ID#55144", + "description": { + "plain": "Customized solution in Warstein. This MESAdapter makes use of the InsideXMLAdapter provided by Siemens (Camstar). This is a XML communication using the F5 LoadBalancer.", + "translated": "

Customized solution in Warstein. This MESAdapter makes use of the InsideXMLAdapter provided by Siemens (Camstar). This is a XML communication using the F5 LoadBalancer.

" + }, + "id": 55144, + "position": 1601, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 55145 + ], + "technicalComponentAssociations": [ + 55480 + ], + "informationSystem2Associations": [ + 55146 + ] + } + }, + { + "id": 61737, + "properties": { + "lastModificationTime": "2022-06-20T05:00:30.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA FA FW HPS # V2 -> Camstar BE ID#61737", + "description": { + "plain": "Connection between the BEAR MES solution \"Camstar BE\" via the IFX developed Camstar Adapter", + "translated": "

Connection between the BEAR MES solution \"Camstar BE\" via the IFX developed Camstar Adapter

" + }, + "id": 61737, + "position": 1958, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 61768 + ], + "technicalComponentAssociations": [ + 61739 + ], + "informationSystem2Associations": [ + 61738 + ] + } + }, + { + "id": 16107, + "properties": { + "lastModificationTime": "2022-09-01T10:24:57.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "Camstar BE <- SPACE Client Collector BE ID#16107", + "description": { + "plain": "SCC Use IFXAPI \"GetLotDetails\" to call Camstar Yoda Gateway to get lot details inforamtion.", + "translated": "

SCC Use IFXAPI \"GetLotDetails\" to call Camstar Yoda Gateway to get lot details inforamtion.

" + }, + "id": 16107, + "position": 543, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 37765 + ], + "technicalComponentAssociations": [ + 63230, + 63231 + ], + "projectAssociations": [ + 84089 + ], + "informationSystem2Associations": [ + 39065 + ] + } + }, + { + "id": 17136, + "properties": { + "lastModificationTime": "2022-09-01T10:26:40.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "Global Production Network <-> Camstar BE ID#17136", + "description": { + "plain": "Exchange lot info (Prod2Stock, Stock2Prod, WIP updates (like split&merge)) and control commands (e.g. future hold) with MES system", + "translated": "

Exchange lot info (Prod2Stock, Stock2Prod, WIP updates (like split&merge)) and control commands (e.g. future hold) with MES system

" + }, + "id": 17136, + "position": 704, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 37951 + ], + "technicalComponentAssociations": [ + 40113, + 83189, + 83193, + 40178 + ], + "projectAssociations": [ + 83671 + ], + "informationSystem2Associations": [ + 39251 + ] + } + }, + { + "id": 62514, + "properties": { + "lastModificationTime": "2021-07-12T06:40:27.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> AGV ID#62514", + "description": { + "plain": "AGV listen on CreateTransportJob (Forward Transport order creation), NotifyLotTrackOut (Backward Transport order creation), NotifyLotTrackIn (Update status ->Close for Forward transport order) from Camstar BE", + "translated": "

AGV listen on CreateTransportJob (Forward Transport order creation), NotifyLotTrackOut (Backward Transport order creation), NotifyLotTrackIn (Update status ->Close for Forward transport order)  from Camstar BE

" + }, + "id": 62514, + "position": 1984, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 62517 + ], + "technicalComponentAssociations": [ + 62516 + ], + "informationSystem2Associations": [ + 62515 + ] + } + }, + { + "id": 56116, + "properties": { + "lastModificationTime": "2021-02-22T10:00:34.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> EQSTAT ID#56116", + "description": { + "plain": "Interface between MES Camstar BE and EQSTAT (Lot Forwarder). The Lot Forwarder is listen to LOT trackin/trackout from MES and send the LOT information to EQSTAT.\n[[ProductManagementBackend/NotifyLotTrackIn>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4313]]\n[[ProductManagementBackend/NotifyLotTrackOut>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4006]]", + "translated": "

Interface between MES Camstar BE and EQSTAT (Lot Forwarder). The Lot Forwarder is listen to LOT trackin/trackout from MES and send the LOT information to EQSTAT.
ProductManagementBackend/NotifyLotTrackIn
ProductManagementBackend/NotifyLotTrackOut

" + }, + "id": 56116, + "position": 1688, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 56117 + ], + "technicalComponentAssociations": [ + 56119, + 62212 + ], + "projectAssociations": [ + 83673 + ], + "informationSystem2Associations": [ + 56118 + ] + } + }, + { + "id": 21428, + "properties": { + "lastModificationTime": "2022-09-01T10:27:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "JobController BE <-> Camstar BE ID#21428", + "description": { + "plain": "Trigger Camstar transactions\nCollate information for job eg GetEAJobInfo, getting equipment information, getting lot information", + "translated": "

Trigger Camstar transactions
Collate information for job eg GetEAJobInfo, getting equipment information, getting lot information

" + }, + "id": 21428, + "position": 1113, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38423 + ], + "technicalComponentAssociations": [ + 61545 + ], + "projectAssociations": [ + 84091 + ], + "informationSystem2Associations": [ + 39723 + ] + } + }, + { + "id": 64116, + "properties": { + "lastModificationTime": "2021-03-03T16:00:35.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "ALF <- Camstar BE ID#64116", + "description": { + "plain": "ALF listens to the MES transactions from Camstar via a YODA", + "translated": "

ALF listens to the MES transactions from Camstar via a YODA

" + }, + "id": 64116, + "position": 2081, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 64118 + ], + "technicalComponentAssociations": [ + 64117 + ], + "informationSystem2Associations": [ + 64119 + ] + } + }, + { + "id": 64629, + "properties": { + "lastModificationTime": "2023-06-12T06:58:52.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "IFXAPI NxG <-> Camstar BE ID#64629", + "description": { + "plain": "Receive, WIP and Ship data from Camstar BE for all Infineon internal BE sites. Where IFX Camstar is the default MES installed.", + "translated": "

Receive, WIP and Ship data from Camstar BE for all Infineon internal BE sites. Where IFX Camstar is the default MES installed.

" + }, + "id": 64629, + "position": 2127, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 74180, + 74182, + 74181 + ], + "informationSystem1Associations": [ + 64633 + ], + "technicalComponentAssociations": [ + 64631, + 64630 + ], + "informationSystem2Associations": [ + 64632 + ] + } + }, + { + "id": 17846, + "properties": { + "lastModificationTime": "2021-07-12T06:12:18.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "PRODDB BE <- Camstar BE ID#17846", + "description": { + "plain": "replicate the data from Camstar OLTP regularly into the ODS DB", + "translated": "

replicate the data from Camstar OLTP regularly into the ODS DB

" + }, + "id": 17846, + "position": 794, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38047 + ], + "technicalComponentAssociations": [ + 40550 + ], + "projectAssociations": [ + 84095 + ], + "informationSystem2Associations": [ + 39347 + ] + } + }, + { + "id": 55798, + "properties": { + "lastModificationTime": "2022-06-20T09:48:37.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "CKIS -> Camstar BE ID#55798", + "description": { + "plain": "Information flow from CKIS to Camstar", + "translated": "

Information flow from CKIS to Camstar

" + }, + "id": 55798, + "position": 1658, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 55800, + 55803 + ], + "informationSystem1Associations": [ + 55802 + ], + "technicalComponentAssociations": [ + 55799 + ], + "informationSystem2Associations": [ + 55801 + ] + } + }, + { + "id": 61368, + "properties": { + "lastModificationTime": "2022-06-20T02:31:47.000Z", + "lastModificationUser": "I-Chun Chung (chungpet)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "IBIS -> Camstar BE ID#61368", + "description": { + "plain": "IBIS will use API to update BIB information in Camstar. API: NotifyDurableAttribute", + "translated": "

IBIS will use API to update BIB information in Camstar. API: NotifyDurableAttribute

" + }, + "id": 61368, + "position": 1933, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 61371 + ], + "technicalComponentAssociations": [ + 67572 + ], + "informationSystem2Associations": [ + 61369 + ] + } + }, + { + "id": 58490, + "properties": { + "lastModificationTime": "2021-01-22T09:00:33.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "RCMS BE -> Camstar BE ID#58490", + "description": { + "plain": "Interface between RCMS BE and Camstar via YODA Camstar Gateway using the IFX API Service: [[ProductManagementBackend\\GetTestParameters>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4265]]\nTo allow obtaining of recipe information and its corresponding test parameters maintained by users in Camstar to enable Load & Go.", + "translated": "

Interface between RCMS BE and Camstar via YODA Camstar Gateway using the IFX API Service: ProductManagementBackend\\GetTestParameters
To allow obtaining of recipe information and its corresponding test parameters maintained by users in Camstar to enable Load & Go.

" + }, + "id": 58490, + "position": 1855, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 58491 + ], + "technicalComponentAssociations": [ + 58492, + 61960 + ], + "informationSystem2Associations": [ + 58493 + ] + } + }, + { + "id": 17978, + "properties": { + "lastModificationTime": "2022-11-07T14:23:41.000Z", + "lastModificationUser": "Felix Huber (hubefeli)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "ESP -> Camstar BE ID#17978", + "description": { + "plain": "Interface ESP transmits OCAPS-Messages to Camstar BE to execute hold lots", + "translated": "

Interface ESP transmits OCAPS-Messages  to Camstar BE to execute hold lots

" + }, + "id": 17978, + "position": 854, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38123 + ], + "technicalComponentAssociations": [ + 62206, + 62207 + ], + "informationSystem2Associations": [ + 39423 + ] + } + }, + { + "id": 8637, + "properties": { + "lastModificationTime": "2022-10-06T11:55:05.000Z", + "lastModificationUser": "Christian Preschern (preschec)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar BE -> Workstream KRV SCORE ID#8637", + "description": { + "plain": "provide SCORE Data via ODS DB", + "translated": "

provide SCORE Data via ODS DB

" + }, + "id": 8637, + "position": 191, + "Roadmap Ranking": "Phase out", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 8640, + 8638, + 8639 + ], + "informationSystem1Associations": [ + 37376 + ], + "technicalComponentAssociations": [ + 40147 + ], + "informationSystem2Associations": [ + 38676 + ] + } + }, + { + "id": 64573, + "properties": { + "lastModificationTime": "2022-08-31T01:19:44.000Z", + "lastModificationUser": "Meng Mee Lim (limmen)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "Camstar SCORE -> Camstar BE ID#64573", + "description": { + "plain": "Application is used to extract SCORE data from Camstar system, integrated with Workstream, GPN or CKIS and generate daily SCORE files.\n\nSCORE files includes: -\n- Inventory, stock or wip in the form of the SCORE INVentory file\n- Lot transaction history in the form of the SCORE HIStory file\n\nThe SCORE files are sent via MQ Series to the following systems :\n- DM (responsible by IT SCM) (key contact: Li Yue/DL-DM-intern), used in SCM planning process\n- EPOS (responsible by IT CBS), used by Finance for extracting daily inventory, rejects and deliveries of respective fabs\n- CDWH (responsible by IT DSA BIA), Corporate Datawarehouse", + "translated": "

Application is used to extract SCORE data from Camstar system, integrated with Workstream, GPN or CKIS and generate daily SCORE files.

SCORE files includes: -
- Inventory, stock or wip in the form of the SCORE INVentory file
- Lot transaction history in the form of the SCORE HIStory file

The SCORE files are sent via MQ Series to the following systems :
- DM (responsible by IT SCM) (key contact: Li Yue/DL-DM-intern), used in SCM planning process
- EPOS (responsible by IT CBS), used by Finance for extracting daily inventory, rejects and deliveries of respective fabs
- CDWH (responsible by IT DSA BIA), Corporate Datawarehouse

" + }, + "id": 64573, + "position": 2115, + "Roadmap Ranking": "Phase out", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 64575 + ], + "informationSystem2Associations": [ + 64574 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 85212, + "properties": { + "lastModificationTime": "2023-08-30T09:38:36.147Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 85212 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "project": [ + 85203 + ] + } + }, + { + "id": 83655, + "properties": { + "SCM - Wafer Diameter": [ + "8\"", + "6\"" + ], + "SCM - Impact Description": "PART as product identifier, unlump assy and test workflows, insertion of pre-assy workflow", + "SCM - Impact Complexity": "Medium", + "lastModificationTime": "2023-07-31T11:37:09.089Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "SCM - Impact Type": "Impacted", + "id": 83655, + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem": [ + 4582 + ], + "project": [ + 83654 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 57473, + "properties": { + "Technology Migration Period": "2020-09-30;2022-05-03", + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "Technology Migration State": "In-Production", + "id": 57473 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 44981 + ] + } + }, + { + "id": 57474, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "Technology Migration State": "In-Production", + "id": 57474 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 17028 + ] + } + }, + { + "id": 57475, + "properties": { + "lastModificationTime": "2023-07-19T11:00:48.000Z", + "lastModificationUser": "Erich Otto Pintar (pintar)", + "Technology Migration State": "In-Production", + "id": 57475 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 16330 + ] + } + }, + { + "id": 57476, + "properties": { + "lastModificationTime": "2023-07-18T07:52:42.000Z", + "lastModificationUser": "Jonas Schrader (schradej)", + "Technology Migration State": "In-Production", + "id": 57476 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 56779 + ] + } + }, + { + "id": 31461, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "Technology Migration State": "In-Production", + "id": 31461 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 16333 + ] + } + }, + { + "id": 84171, + "properties": { + "lastModificationTime": "2023-08-09T09:09:59.158Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "Technology Migration State": "In-Production", + "id": 84171 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 84149 + ] + } + }, + { + "id": 63501, + "properties": { + "lastModificationTime": "2022-09-01T10:09:36.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "Technology Migration State": "In-Production", + "id": 63501 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 63500 + ] + } + }, + { + "id": 69043, + "properties": { + "lastModificationTime": "2023-05-03T11:54:14.000Z", + "lastModificationUser": "Heinz Veitschegger (veitsche)", + "Technology Migration State": "In-Production", + "id": 69043 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 52564 + ] + } + }, + { + "id": 29044, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "Technology Migration State": "In-Production", + "id": 29044 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 1027 + ] + } + }, + { + "id": 69045, + "properties": { + "lastModificationTime": "2023-05-31T07:48:24.000Z", + "lastModificationUser": "Sascha Pscheidt (pscheidt)", + "Technology Migration State": "In-Production", + "id": 69045 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 17708 + ] + } + }, + { + "id": 85141, + "properties": { + "lastModificationTime": "2023-08-24T01:27:29.591Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 85141 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 63835 + ] + } + }, + { + "id": 69044, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "Technology Migration State": "In-Production", + "id": 69044 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 6071 + ] + } + }, + { + "id": 85140, + "properties": { + "lastModificationTime": "2023-08-24T01:22:59.307Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "Technology Migration State": "In-Work", + "id": 85140 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 76034 + ] + } + }, + { + "id": 63510, + "properties": { + "lastModificationTime": "2023-05-02T07:21:32.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 63510 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 63507 + ] + } + }, + { + "id": 30807, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "Technology Migration State": "In-Production", + "id": 30807 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 15354 + ] + } + }, + { + "id": 55263, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "Technology Migration State": "In-Production", + "id": 55263 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "technicalComponent": [ + 17614 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 38913, + "properties": { + "lastModificationTime": "2022-09-01T10:18:41.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 38913 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 15193 + ] + } + }, + { + "id": 56131, + "properties": { + "lastModificationTime": "2023-08-17T12:42:45.615Z", + "lastModificationUser": "Manfred Gerbeth (gerbeth)", + "id": 56131 + }, + "relations": { + "informationSystem": [ + 21330 + ], + "informationFlow": [ + 56129 + ] + } + }, + { + "id": 63556, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 63556 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 63555 + ] + } + }, + { + "id": 75908, + "properties": { + "lastModificationTime": "2022-08-23T06:05:17.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 75908 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 75905 + ] + } + }, + { + "id": 61126, + "properties": { + "lastModificationTime": "2022-11-07T06:06:36.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "id": 61126 + }, + "relations": { + "informationSystem": [ + 5977 + ], + "informationFlow": [ + 61124 + ] + } + }, + { + "id": 57543, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 57543 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 57540 + ] + } + }, + { + "id": 56391, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 56391 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 56389 + ] + } + }, + { + "id": 57161, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 57161 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 57159 + ] + } + }, + { + "id": 55945, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 55945 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 55944 + ] + } + }, + { + "id": 63945, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 63945 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 63942 + ] + } + }, + { + "id": 63440, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 63440 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 63438 + ] + } + }, + { + "id": 39251, + "properties": { + "lastModificationTime": "2022-09-01T10:26:40.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 39251 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 17136 + ] + } + }, + { + "id": 39059, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 39059 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 16100 + ] + } + }, + { + "id": 73813, + "properties": { + "lastModificationTime": "2022-09-14T03:55:37.000Z", + "lastModificationUser": "Jing Farn Tan (tajingfa)", + "id": 73813 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 73812 + ] + } + }, + { + "id": 61588, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 61588 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 61586 + ] + } + }, + { + "id": 38676, + "properties": { + "lastModificationTime": "2023-04-05T11:57:36.000Z", + "lastModificationUser": "Heinz Veitschegger (veitsche)", + "id": 38676 + }, + "relations": { + "informationSystem": [ + 8600 + ], + "informationFlow": [ + 8637 + ] + } + }, + { + "id": 64212, + "properties": { + "lastModificationTime": "2023-07-25T12:32:23.000Z", + "lastModificationUser": "Daniel Barthel (bartheld)", + "id": 64212 + }, + "relations": { + "informationSystem": [ + 62628 + ], + "informationFlow": [ + 64210 + ] + } + }, + { + "id": 73940, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 73940 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 73937 + ] + } + }, + { + "id": 54486, + "properties": { + "lastModificationTime": "2022-09-14T02:17:21.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 54486 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 54484 + ] + } + }, + { + "id": 57304, + "properties": { + "lastModificationTime": "2022-09-02T05:32:07.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 57304 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 57301 + ] + } + }, + { + "id": 64216, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 64216 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 64215 + ] + } + }, + { + "id": 39065, + "properties": { + "lastModificationTime": "2022-09-01T10:24:57.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 39065 + }, + "relations": { + "informationSystem": [ + 5277 + ], + "informationFlow": [ + 16107 + ] + } + }, + { + "id": 58523, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 58523 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 58520 + ] + } + }, + { + "id": 73946, + "properties": { + "lastModificationTime": "2023-08-17T09:38:36.321Z", + "lastModificationUser": "Prithu Sah (sahp)", + "id": 73946 + }, + "relations": { + "informationSystem": [ + 15935 + ], + "informationFlow": [ + 73945 + ] + } + }, + { + "id": 56156, + "properties": { + "lastModificationTime": "2022-09-01T11:52:30.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 56156 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 56154 + ] + } + }, + { + "id": 77788, + "properties": { + "lastModificationTime": "2023-01-03T01:01:57.000Z", + "lastModificationUser": "Xudong Wang (wangjohn)", + "id": 77788 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 77785 + ] + } + }, + { + "id": 39584, + "properties": { + "lastModificationTime": "2023-02-03T09:39:46.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 39584 + }, + "relations": { + "informationSystem": [ + 5231 + ], + "informationFlow": [ + 18451 + ] + } + }, + { + "id": 39587, + "properties": { + "lastModificationTime": "2022-09-07T02:30:24.000Z", + "lastModificationUser": "Ferdinand Baliwag Florida (florida)", + "id": 39587 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 18457 + ] + } + }, + { + "id": 61797, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 61797 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 61796 + ] + } + }, + { + "id": 62310, + "properties": { + "lastModificationTime": "2022-09-01T10:27:48.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 62310 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 62306 + ] + } + }, + { + "id": 59239, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 59239 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 59236 + ] + } + }, + { + "id": 55146, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 55146 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 55144 + ] + } + }, + { + "id": 61738, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 61738 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 61737 + ] + } + }, + { + "id": 39723, + "properties": { + "lastModificationTime": "2022-09-01T10:27:02.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 39723 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 21428 + ] + } + }, + { + "id": 39020, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 39020 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 16018 + ] + } + }, + { + "id": 39597, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 39597 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 18502 + ] + } + }, + { + "id": 39347, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 39347 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 17846 + ] + } + }, + { + "id": 62515, + "properties": { + "lastModificationTime": "2022-09-26T09:21:55.000Z", + "lastModificationUser": "Cheng Bee Tee (teecheng)", + "id": 62515 + }, + "relations": { + "informationSystem": [ + 26798 + ], + "informationFlow": [ + 62514 + ] + } + }, + { + "id": 38772, + "properties": { + "lastModificationTime": "2023-04-19T05:46:47.000Z", + "lastModificationUser": "Andrea Froehlich (froehlia)", + "id": 38772 + }, + "relations": { + "informationSystem": [ + 6032 + ], + "informationFlow": [ + 10208 + ] + } + }, + { + "id": 56118, + "properties": { + "lastModificationTime": "2022-02-16T05:24:29.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 56118 + }, + "relations": { + "informationSystem": [ + 4818 + ], + "informationFlow": [ + 56116 + ] + } + }, + { + "id": 64119, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 64119 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 64116 + ] + } + }, + { + "id": 64632, + "properties": { + "lastModificationTime": "2023-06-12T06:58:52.000Z", + "lastModificationUser": "Jigar Dilip Shah (shajigar)", + "id": 64632 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 64629 + ] + } + }, + { + "id": 61369, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 61369 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 61368 + ] + } + }, + { + "id": 55801, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 55801 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 55798 + ] + } + }, + { + "id": 58493, + "properties": { + "lastModificationTime": "2022-08-18T07:41:41.000Z", + "lastModificationUser": "Kia Hock Teh (tehkiahock)", + "id": 58493 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 58490 + ] + } + }, + { + "id": 64574, + "properties": { + "lastModificationTime": "2022-08-31T01:19:44.000Z", + "lastModificationUser": "Meng Mee Lim (limmen)", + "id": 64574 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 64573 + ] + } + }, + { + "id": 39423, + "properties": { + "lastModificationTime": "2022-11-07T14:23:41.000Z", + "lastModificationUser": "Felix Huber (hubefeli)", + "id": 39423 + }, + "relations": { + "informationSystem": [ + 4582 + ], + "informationFlow": [ + 17978 + ] + } + }, + { + "id": 38591, + "properties": { + "lastModificationTime": "2022-11-07T02:51:30.000Z", + "lastModificationUser": "Yuen Sia Ling (linggill)", + "id": 38591 + }, + "relations": { + "informationSystem": [ + 4524 + ], + "informationFlow": [ + 8393 + ] + } + } + ], + "InformationSystem": [ + { + "id": 4582, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "Contact IT Org": "FI BE ES", + "lastModificationTime": "2023-04-19T06:56:30.000Z", + "EVA Instances": { + "plain": "[[Camstar BE (BTH)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000363630]],\n[[Camstar BE (CEG)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000510901]],\n[[Camstar BE (CJJ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000510895]],\n[[Camstar BE (LEO)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000472120]],\n[[Camstar BE (MKZ)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000258397]],\n[[Camstar BE (RBG)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000369949]],\n[[Camstar BE (SIN)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000258382]],\n[[Camstar BE (TIJ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000542207]],\n[[Camstar BE OneBEAR (WAR)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000407621]],\n[[Camstar BE (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000337252]],\n[[Camstar BE SIAPM (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000458044]]", + "translated": "

Camstar BE (BTH),
Camstar BE (CEG),
Camstar BE (CJJ),
Camstar BE (LEO),
Camstar BE (MKZ),
Camstar BE (RBG),
Camstar BE (SIN),
Camstar BE (TIJ),
Camstar BE OneBEAR (WAR),
Camstar BE (WUX),
Camstar BE SIAPM (WUX)

" + }, + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "$$hierarchy_level$$": 1, + "Deployment model": "Global", + "description": { + "plain": "Short Description: Camstar Manufacturing Execution System for Backend\nCamstar BE is initiated by the BEAR program (A joint effort of BE & MIT to achieve Manufacturing Excellence and Automation)\nApplication for WIP Tracking, Basic data Management (Route, Product), Basic Dispatching and Line Control for BE sites.\nUI: Ability to display different information based on the work center for different area.\nLicence/Vendor: Camstar", + "translated": "

Short Description: Camstar Manufacturing Execution System for Backend
Camstar BE is initiated by the BEAR program (A joint effort of BE & MIT to achieve Manufacturing Excellence and Automation)
Application for WIP Tracking, Basic data Management (Route, Product), Basic Dispatching and Line Control for BE sites.
UI: Ability to display different information based on the work center for different area.
Licence/Vendor: Camstar

" + }, + "Application Owner": "Yuen Sia Ling (linggill)", + "Location of Usage": [ + "Leominster", + "Warstein", + "Cheonan", + "Tijuana", + "Wuxi", + "Cegled", + "Regensburg", + "Batam", + "Singapore", + "Melaka" + ], + "FI - DP Compliance Finish Date": "2020-04-29", + "IT Org": "FI BE ES", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 4582, + "Work Council Agreements": "Q", + "Roadmap Ranking": "Target", + "Location of Instances": [ + "Regensburg", + "Batam", + "Singapore", + "Melaka", + "Leominster", + "Warstein", + "Cegled", + "Cheonan", + "Tijuana", + "Wuxi" + ], + "Location of Hosting": [ + "Leominster", + "Warstein", + "Cegled", + "Cheonan", + "Tijuana", + "Wuxi", + "Regensburg", + "Batam", + "Singapore", + "Melaka" + ], + "Productive period": "2012-05-15;", + "ES - Regional Deployment": [ + "EU", + "NA", + "AP" + ], + "Application Details": { + "plain": "[[Wiki>>https://confluencewikiprod.intra.infineon.com/display/CAMBE/Camstar+BE]]\n[[ACM DB>>http://goto/MEMS/ToolApplicationOverview?Application=Camstar BE]]\nSource Code:\nhttps://WUXSA1116.infineon.com:8443/svn/Camstar/", + "translated": "

Wiki
ACM DB
Source Code:
https://WUXSA1116.infineon.com:8443/svn/Camstar/

" + }, + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Gillian.Ling@infineon.com", + "Development model": "Out-of-box modified", + "Hosting Type": [ + "intern (Intranet)" + ], + "name": "Camstar BE", + "DataCenter Repository Link": { + "plain": "[[Camstar BE>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27Camstar+BE%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

Camstar BE

" + }, + "FI - IRMA Group": "FI BE ES", + "position": 241, + "Mission Criticality": "A - Critical", + "Business Application Owner": "Koh Chey Woon Benny", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "predecessors": [ + 18214, + 50721, + 18219, + 18206, + 5668, + 15949, + 12587, + 15988, + 49025, + 15964, + 12704, + 64634 + ], + "businessDomainAssociations": [ + 40899 + ], + "children": [ + 55358, + 55354, + 62731, + 61221, + 59418, + 16140, + 16138, + 66833, + 4866, + 69081, + 55353, + 55360, + 16136, + 59411, + 16134, + 55356, + 55646, + 61226, + 55352, + 55198, + 50720, + 55355, + 55357, + 66834, + 61093, + 59409, + 59410, + 61223 + ], + "informationFlow1Associations": [ + 37472, + 62517, + 56132, + 61125, + 56117, + 73948, + 37765, + 37376, + 38284, + 37291, + 64213 + ], + "informationSystemDomainAssociations": [ + 59034, + 79516, + 45188, + 59047, + 59053, + 59029, + 46098, + 46072, + 45398 + ], + "successors": [ + 67926 + ], + "technicalComponentAssociations": [ + 57473, + 29044, + 57474, + 69043, + 57475, + 30807, + 63501, + 63510, + 69044, + 31461, + 84171, + 69045, + 57476, + 85140, + 55263, + 85141 + ], + "informationFlow2Associations": [ + 39723, + 39251, + 64632, + 39059, + 39597, + 64119, + 73813, + 55146, + 61738, + 75908, + 57161, + 57304, + 61369, + 61588, + 63440, + 39020, + 57543, + 39347, + 56391, + 39587, + 55801, + 59239, + 61797, + 38913, + 54486, + 77788, + 55945, + 63945, + 58493, + 63556, + 39423, + 58523, + 73940, + 64574, + 56156, + 62310, + 64216 + ], + "projectAssociations": [ + 83655, + 85212 + ], + "baseComponents": [ + 49035, + 61805, + 49884, + 63818, + 5241 + ], + "businessMappings": [ + 34027, + 56860, + 34028, + 49959, + 36486, + 49960, + 70741, + 49961, + 49958 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/4774.json b/iteraplan/4774.json new file mode 100644 index 0000000..649c76a --- /dev/null +++ b/iteraplan/4774.json @@ -0,0 +1,429 @@ +{ + "BusinessMapping": [ + { + "id": 34170, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.588Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34170 + }, + "relations": { + "informationSystem": [ + 4774 + ], + "itService": [ + 13171 + ] + } + }, + { + "id": 34171, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.588Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34171 + }, + "relations": { + "informationSystem": [ + 4774 + ], + "itService": [ + 13500 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 45651, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 45651 + }, + "relations": { + "informationSystemDomain": [ + 45116 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 79573, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 79573 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 70214, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 70214 + }, + "relations": { + "informationSystemDomain": [ + 70012 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 45208, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 45208 + }, + "relations": { + "informationSystemDomain": [ + 45098 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 46216, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 46216 + }, + "relations": { + "informationSystemDomain": [ + 45100 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 45530, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 45530 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 46108, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 46108 + }, + "relations": { + "informationSystemDomain": [ + 45101 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 45405, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 45405 + }, + "relations": { + "informationSystemDomain": [ + 45094 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 70300, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 70300 + }, + "relations": { + "informationSystemDomain": [ + 70290 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 45917, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 45917 + }, + "relations": { + "informationSystemDomain": [ + 45117 + ], + "informationSystem": [ + 4774 + ] + } + }, + { + "id": 56846, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 56846 + }, + "relations": { + "informationSystemDomain": [ + 45126 + ], + "informationSystem": [ + 4774 + ] + } + } + ], + "Is2BdAssociation": [ + { + "id": 58865, + "properties": { + "EA - Impact Ranking": 3.00, + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 58865 + }, + "relations": { + "informationSystem": [ + 4774 + ], + "businessDomain": [ + 40788 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 83452, + "properties": { + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 83452 + }, + "relations": { + "informationSystem": [ + 4774 + ], + "project": [ + 83326 + ] + } + }, + { + "id": 84064, + "properties": { + "lastModificationTime": "2023-07-02T10:06:34.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 84064 + }, + "relations": { + "informationSystem": [ + 4774 + ], + "project": [ + 83654 + ] + } + } + ], + "InformationSystem": [ + { + "id": 4774, + "properties": { + "Application Type": "Technical application", + "Export Control Classification": "No", + "lastModificationTime": "2023-06-21T13:26:21.000Z", + "EVA Instances": { + "plain": "[[EAF EDA (AP-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000396771]],\n[[EAF MHA (KLM) (AP)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000582035]],\n[[EAF (DRS-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000318103]],\n[[EAF (DRS-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000318162]],\n[[EAF (Global)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000578087]],\n[[EAF (KLM-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000369247]],\n[[EAF Tools Violation Report (KLM)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000510992]],\n[[EAF Win10 Monitoring (KLM-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000541985]],\n[[EAF GaN (MES-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000476421]],\n[[EAF (MES-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000476423]],\n[[EAF (RBG-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000292737]],\n[[EAF Tools Violation Report (RBG-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000535676]],\n[[EAF (VIH-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000274211]],\n[[EAF (VIH-OP WT)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000487782]],\n[[EAF (VIH-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000531716]],\n[[EAF (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000336366]],\n[[EAF WUXSA1131 (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000510142]]", + "translated": "

EAF EDA (AP-OP BE),
EAF MHA (KLM) (AP),
EAF (DRS-OP FE 300),
EAF (DRS-OP FE 200),
EAF (Global),
EAF (KLM-OP FE 200),
EAF Tools Violation Report (KLM),
EAF Win10 Monitoring (KLM-OP FE),
EAF GaN (MES-OP FE),
EAF (MES-OP FE),
EAF (RBG-OP FE),
EAF Tools Violation Report (RBG-OP FE),
EAF (VIH-OP FE 200),
EAF (VIH-OP WT),
EAF (VIH-OP FE 300),
EAF (WUX),
EAF WUXSA1131 (WUX)

" + }, + "FI - APM Comment": { + "plain": "comment", + "translated": "

comment

" + }, + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Short Description: Equipment Automation Framework\n\nThe Equipment Automation Framework (EAF) provides the infrastructure and toolset to integrate equipments into the factory system. It communicates to the FA/MES Layer using a well-defined generic interface, documented in IfxApi Viewer. The framework provides connectivity to equipments using different communciation protocols like SECS, OPC, and others.", + "translated": "

Short Description: Equipment Automation Framework

The Equipment Automation Framework (EAF) provides the infrastructure and toolset to integrate equipments into the factory system. It communicates to the FA/MES Layer using a well-defined generic interface, documented in IfxApi Viewer. The framework provides connectivity to equipments using different communciation protocols like SECS, OPC, and others.

" + }, + "Application Owner": "Dieter Schneider (schnedi)", + "Location of Usage": [ + "Kulim", + "Warstein", + "Wuxi", + "Tijuana", + "Mesa", + "Batam", + "Seoul", + "Singapore", + "Dresden", + "Temecula", + "Cegled", + "Chengdu", + "Regensburg", + "Villach", + "Melaka" + ], + "FI - DP Compliance Finish Date": "2019-10-14", + "IT Org": "FI ADI DES", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 4774, + "Work Council Agreements": "S", + "Roadmap Ranking": "Target", + "Location of Instances": [ + "Mesa", + "Regensburg", + "Villach", + "Asia Pacific", + "Dresden", + "Kulim", + "Global", + "Wuxi" + ], + "Location of Hosting": [ + "Dresden", + "Kulim", + "Warstein", + "Cheonan", + "Tijuana", + "Wuxi", + "Mesa", + "Regensburg", + "Villach", + "Batam" + ], + "Productive period": "2012-04-15;", + "Application Details": { + "plain": "[[EAF Wiki>>http://goto/eafwiki]]\n[[EAF FI Wiki>>http://goto/eaffiwiki]]\n[[FAQ Storage EAF>>http://goto/eaffaq]]\n[[iShare Portal EAF>>http://goto/eaf]]\n[[EAF Community>>http://goto/eafcommunity]]\n[[EAF User Documentation>>http://goto/eafdocu]]\n\nSource Code Location and Work Item Tracking in TFS: \n - https://tfs.intra.infineon.com/tfs/manufacturingit/MIT_EAF/\n - https://tfs.intra.infineon.com/tfs/manufacturingit/MIT_EAF_Adaptations/\n\n[[Workers Agreement>>https://ishare.infineon.com/sites/WorksAgreement/Lists/Requests/DispForm.aspx?ID=369]]", + "translated": "

EAF Wiki
EAF FI Wiki
FAQ Storage EAF
iShare Portal EAF
EAF Community
EAF User Documentation

Source Code Location and Work Item Tracking in TFS:
 - https://tfs.intra.infineon.com/tfs/manufacturingit/MIT_EAF/
 - https://tfs.intra.infineon.com/tfs/manufacturingit/MIT_EAF_Adaptations/

Workers Agreement

" + }, + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Dieter.Schneider@infineon.com", + "Development model": "Custom development", + "name": "EAF", + "DataCenter Repository Link": { + "plain": "[[EAF>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27EAF%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

EAF

" + }, + "FI - IRMA Group": "FI ADI DES", + "position": 637, + "FI - Application Roadmap": { + "plain": "https://confluencewikiprod.intra.infineon.com/pages/viewpage.action?pageId=338981605", + "translated": "

https://confluencewikiprod.intra.infineon.com/pages/viewpage.action?pageId=338981605

" + }, + "Mission Criticality": "A - Critical" + }, + "relations": { + "predecessors": [ + 4540, + 21483, + 21479, + 4784, + 21477, + 21475, + 5165, + 4678, + 5313, + 5239, + 5199, + 21481, + 4820 + ], + "businessDomainAssociations": [ + 58865 + ], + "children": [ + 17065, + 47849, + 17061, + 81879, + 17063, + 17067, + 81857 + ], + "informationSystemDomainAssociations": [ + 70214, + 56846, + 45405, + 45208, + 46216, + 45530, + 70300, + 79573, + 45917, + 46108, + 45651 + ], + "parentComponents": [ + 47140, + 26798, + 5606, + 63642, + 51928, + 47251, + 47200, + 47241, + 77772, + 62628, + 26800 + ], + "projectAssociations": [ + 83452, + 84064 + ], + "baseComponents": [ + 56276, + 5706, + 16288, + 5660, + 5113 + ], + "businessMappings": [ + 34171, + 34170 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/4816.json b/iteraplan/4816.json new file mode 100644 index 0000000..f5dd972 --- /dev/null +++ b/iteraplan/4816.json @@ -0,0 +1,1736 @@ +{ + "Ifl2BoAssociation": [ + { + "id": 71414, + "properties": { + "lastModificationTime": "2021-11-02T08:31:30.000Z", + "lastModificationUser": "Christian Mueller (muech)", + "id": 71414, + "direction": "FIRST_TO_SECOND" + }, + "relations": { + "businessObject": [ + 16248 + ], + "informationFlow": [ + 53382 + ] + } + }, + { + "id": 53559, + "properties": { + "lastModificationTime": "2020-01-20T13:33:42.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 53559, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 21255 + ], + "informationFlow": [ + 53558 + ] + } + } + ], + "BusinessMapping": [ + { + "id": 34204, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.588Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34204 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "itService": [ + 13874 + ] + } + }, + { + "id": 34203, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.588Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34203 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "itService": [ + 13171 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 61952, + "properties": { + "lastModificationTime": "2021-03-18T03:04:33.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 61952 + }, + "relations": { + "informationFlow": [ + 55960 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 56097, + "properties": { + "lastModificationTime": "2021-12-16T09:58:29.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 56097 + }, + "relations": { + "informationFlow": [ + 56096 + ], + "technicalComponent": [ + 1161 + ] + } + }, + { + "id": 40643, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 40643 + }, + "relations": { + "informationFlow": [ + 18366 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 61992, + "properties": { + "lastModificationTime": "2021-03-18T03:04:33.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 61992 + }, + "relations": { + "informationFlow": [ + 55244 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 61867, + "properties": { + "lastModificationTime": "2021-03-18T03:04:33.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 61867 + }, + "relations": { + "informationFlow": [ + 18366 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 55246, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 55246 + }, + "relations": { + "informationFlow": [ + 55244 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 61966, + "properties": { + "lastModificationTime": "2021-03-18T03:04:33.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 61966 + }, + "relations": { + "informationFlow": [ + 61753 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 61713, + "properties": { + "lastModificationTime": "2022-06-22T07:58:19.000Z", + "lastModificationUser": "Christian Mueller (muech)", + "id": 61713 + }, + "relations": { + "informationFlow": [ + 53382 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 55250, + "properties": { + "lastModificationTime": "2022-06-20T03:37:12.000Z", + "lastModificationUser": "Mengjie Mei (meimengj)", + "id": 55250 + }, + "relations": { + "informationFlow": [ + 55248 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 61907, + "properties": { + "lastModificationTime": "2022-06-22T07:58:19.000Z", + "lastModificationUser": "Christian Mueller (muech)", + "id": 61907 + }, + "relations": { + "informationFlow": [ + 53382 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 61909, + "properties": { + "lastModificationTime": "2022-06-20T03:37:12.000Z", + "lastModificationUser": "Mengjie Mei (meimengj)", + "id": 61909 + }, + "relations": { + "informationFlow": [ + 55248 + ], + "technicalComponent": [ + 61824 + ] + } + }, + { + "id": 53560, + "properties": { + "lastModificationTime": "2020-04-26T08:15:49.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "id": 53560 + }, + "relations": { + "informationFlow": [ + 53558 + ], + "technicalComponent": [ + 1161 + ] + } + }, + { + "id": 61754, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 61754 + }, + "relations": { + "informationFlow": [ + 61753 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 73690, + "properties": { + "lastModificationTime": "2022-05-30T09:20:23.000Z", + "lastModificationUser": "Daniel Hildebrand (hildebd)", + "id": 73690 + }, + "relations": { + "informationFlow": [ + 56107 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 55963, + "properties": { + "lastModificationTime": "2021-06-14T04:26:11.000Z", + "lastModificationUser": "Vaahini Kalaivanan (kalaivan)", + "id": 55963 + }, + "relations": { + "informationFlow": [ + 55960 + ], + "technicalComponent": [ + 17704 + ] + } + }, + { + "id": 56095, + "properties": { + "lastModificationTime": "2020-04-02T08:41:48.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 56095 + }, + "relations": { + "informationFlow": [ + 56092 + ], + "technicalComponent": [ + 1161 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 56099, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 56099 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 56096 + ] + } + }, + { + "id": 63621, + "properties": { + "lastModificationTime": "2023-04-11T07:31:31.000Z", + "lastModificationUser": "Erich Otto Pintar (pintar)", + "id": 63621 + }, + "relations": { + "informationSystem": [ + 63602 + ], + "informationFlow": [ + 63620 + ] + } + }, + { + "id": 53384, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 53384 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 53382 + ] + } + }, + { + "id": 47145, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 47145 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 47144 + ] + } + }, + { + "id": 64141, + "properties": { + "lastModificationTime": "2023-06-21T13:28:05.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 64141 + }, + "relations": { + "informationSystem": [ + 63642 + ], + "informationFlow": [ + 64140 + ] + } + }, + { + "id": 56110, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 56110 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 56107 + ] + } + }, + { + "id": 55247, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 55247 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 55244 + ] + } + }, + { + "id": 55249, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 55249 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 55248 + ] + } + }, + { + "id": 52275, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 52275 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 52274 + ] + } + }, + { + "id": 55254, + "properties": { + "lastModificationTime": "2023-06-13T12:54:51.000Z", + "lastModificationUser": "Martin Hardes (hardesm)", + "id": 55254 + }, + "relations": { + "informationSystem": [ + 47241 + ], + "informationFlow": [ + 55252 + ] + } + }, + { + "id": 55961, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 55961 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 55960 + ] + } + }, + { + "id": 38265, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 38265 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 18366 + ] + } + }, + { + "id": 53561, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 53561 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 53558 + ] + } + }, + { + "id": 61755, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 61755 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 61753 + ] + } + }, + { + "id": 56093, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 56093 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 56092 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 70161, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 70161 + }, + "relations": { + "informationSystemDomain": [ + 70012 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 45921, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 45921 + }, + "relations": { + "informationSystemDomain": [ + 45117 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 84887, + "properties": { + "lastModificationTime": "2023-08-01T09:38:52.742Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 84887 + }, + "relations": { + "informationSystemDomain": [ + 79465 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 84886, + "properties": { + "lastModificationTime": "2023-08-01T09:38:33.345Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 84886 + }, + "relations": { + "informationSystemDomain": [ + 79466 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 54231, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 54231 + }, + "relations": { + "informationSystemDomain": [ + 45098 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 46220, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 46220 + }, + "relations": { + "informationSystemDomain": [ + 45100 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 45660, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 45660 + }, + "relations": { + "informationSystemDomain": [ + 45116 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 46110, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 46110 + }, + "relations": { + "informationSystemDomain": [ + 45101 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 56847, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 56847 + }, + "relations": { + "informationSystemDomain": [ + 45126 + ], + "informationSystem": [ + 4816 + ] + } + }, + { + "id": 70430, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 70430 + }, + "relations": { + "informationSystemDomain": [ + 70290 + ], + "informationSystem": [ + 4816 + ] + } + } + ], + "InformationFlow": [ + { + "id": 56096, + "properties": { + "lastModificationTime": "2021-12-16T09:58:29.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> PROGENY Repository ID#56096", + "description": { + "plain": "Interface between EA Data Framework (EDA Client)", + "translated": "

Interface between EA Data Framework (EDA Client)

" + }, + "id": 56096, + "position": 1685, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 56099 + ], + "technicalComponentAssociations": [ + 56097 + ], + "informationSystem2Associations": [ + 56098 + ] + } + }, + { + "id": 63620, + "properties": { + "lastModificationTime": "2022-07-18T05:17:05.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "DRS WT EI -> EA Data Framework ID#63620", + "description": { + "plain": "DRS WT EI provides access to Data Collection via Interface A", + "translated": "

DRS WT EI provides access to Data Collection via Interface A

" + }, + "id": 63620, + "position": 2023, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 63621 + ], + "informationSystem2Associations": [ + 63622 + ] + } + }, + { + "id": 53382, + "properties": { + "lastModificationTime": "2022-06-22T07:58:19.000Z", + "lastModificationUser": "Christian Mueller (muech)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "EA Data Framework <- ELODS ID#53382", + "description": { + "plain": "EDA Client is requesting logistic data from ELODS.", + "translated": "

EDA Client is requesting logistic data from ELODS.

" + }, + "id": 53382, + "position": 1437, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 71414 + ], + "informationSystem1Associations": [ + 53384 + ], + "technicalComponentAssociations": [ + 61713, + 61907 + ], + "informationSystem2Associations": [ + 53601 + ] + } + }, + { + "id": 47144, + "properties": { + "lastModificationTime": "2022-07-18T05:15:34.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "EA Data Framework <-> EAF FE Integration ID#47144", + "description": { + "plain": "EAF FE Integration provides access to Data Collection via Interface A", + "translated": "

EAF FE Integration provides access to Data Collection via Interface A

" + }, + "id": 47144, + "position": 1211, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 47145 + ], + "informationSystem2Associations": [ + 47178 + ] + } + }, + { + "id": 56107, + "properties": { + "lastModificationTime": "2020-04-21T14:07:25.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> Exception Management ID#56107", + "description": { + "plain": "Interface between EA Data Framework (EDA Client) and Exception Management using the IFX API Service: [[FactoryAutomation\\TriggerOCAP>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=4176]]\nIn case a receiving applications is returning a error code back to EDA, EDA could call the EM to handle the exception.", + "translated": "

Interface between EA Data Framework (EDA Client) and Exception Management using the IFX API Service: FactoryAutomation\\TriggerOCAP
In case a receiving applications is returning a error code back to EDA, EDA could call the EM to handle the exception.

" + }, + "id": 56107, + "position": 1687, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 56110 + ], + "technicalComponentAssociations": [ + 73690 + ], + "informationSystem2Associations": [ + 56109 + ] + } + }, + { + "id": 55244, + "properties": { + "lastModificationTime": "2020-07-17T07:08:47.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> ESP ID#55244", + "description": { + "plain": "Sending data via YODA to SPACE / ESP by using the IFX API Service: [[SPC/EVALUATESPCDATA>>http://ifxapiviewer.vih.infineon.com/?dbindex=1&service=2888]]", + "translated": "

Sending data via YODA to SPACE / ESP by using the IFX API Service: SPC/EVALUATESPCDATA

" + }, + "id": 55244, + "position": 1610, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 55247 + ], + "technicalComponentAssociations": [ + 61992, + 55246 + ], + "informationSystem2Associations": [ + 55245 + ] + } + }, + { + "id": 64140, + "properties": { + "lastModificationTime": "2021-03-04T15:00:36.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EAF BE Integration -> EA Data Framework ID#64140", + "description": { + "plain": "Interface between the Equipment Automation Framework and the EA Data Framework (EDA Client) based on Interface-A", + "translated": "

Interface between the Equipment Automation Framework and the EA Data Framework (EDA Client) based on Interface-A

" + }, + "id": 64140, + "position": 2087, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 64141 + ], + "informationSystem2Associations": [ + 64142 + ] + } + }, + { + "id": 55248, + "properties": { + "lastModificationTime": "2022-06-20T03:37:12.000Z", + "lastModificationUser": "Mengjie Mei (meimengj)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "SECOND_TO_FIRST", + "name": "EA Data Framework <- CDS Light ID#55248", + "description": { + "plain": "Service call from EA Data Framework to EA FA FW HPS to get additional conext data like Lot Details via IFX API Service call: \"GetFDCContextValue\".", + "translated": "

Service call from EA Data Framework to EA FA FW HPS to get additional conext data like Lot Details via IFX API Service call: \"GetFDCContextValue\".

" + }, + "id": 55248, + "position": 1611, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 55249 + ], + "technicalComponentAssociations": [ + 55250, + 61909 + ], + "informationSystem2Associations": [ + 55251 + ] + } + }, + { + "id": 52274, + "properties": { + "lastModificationTime": "2022-06-23T07:00:30.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> TEDOM ID#52274", + "description": { + "plain": "Enhanced (EA + FA context) STDF stream", + "translated": "

Enhanced (EA + FA context) STDF stream

" + }, + "id": 52274, + "position": 1409, + "Roadmap Ranking": "Shutdown", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 52275 + ], + "informationSystem2Associations": [ + 52276 + ] + } + }, + { + "id": 55252, + "properties": { + "lastModificationTime": "2020-03-12T08:07:28.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EAF BE Module Integration -> EA Data Framework ID#55252", + "description": { + "plain": "Providing Raw data from Equipment Automation via Interface-A to the EA Data Framework.", + "translated": "

Providing Raw data from Equipment Automation via Interface-A to the EA Data Framework.

" + }, + "id": 55252, + "position": 1612, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 55254 + ], + "informationSystem2Associations": [ + 55253 + ] + } + }, + { + "id": 53558, + "properties": { + "lastModificationTime": "2020-04-26T08:15:49.000Z", + "lastModificationUser": "Huihui Shao (shaohuih)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> APC Trend Extractor ID#53558", + "description": { + "plain": "Store PDSF files for APC trend, these files will be transfered from the PDSF file location via the extractor into APC Trend", + "translated": "

Store PDSF files for APC trend, these files will be transfered from the PDSF file location via the extractor into APC Trend

" + }, + "id": 53558, + "position": 1457, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "businessObjectAssociations": [ + 53559 + ], + "informationSystem1Associations": [ + 53561 + ], + "technicalComponentAssociations": [ + 53560 + ], + "informationSystem2Associations": [ + 53562 + ] + } + }, + { + "id": 55960, + "properties": { + "lastModificationTime": "2020-04-01T15:43:04.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> TFM ID#55960", + "description": { + "plain": "Providing Throughput from EDA Client to TFM", + "translated": "

Providing Throughput from EDA Client to TFM

" + }, + "id": 55960, + "position": 1669, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 55961 + ], + "technicalComponentAssociations": [ + 55963, + 61952 + ], + "informationSystem2Associations": [ + 55962 + ] + } + }, + { + "id": 61753, + "properties": { + "lastModificationTime": "2020-09-17T06:00:24.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> EA FA FW HPS V2 ID#61753", + "description": { + "plain": "This interface is mostly used for so called Method 2 integrations. Where equipment events are not directly handled by the EAF instead these are forwared to EDA and EDA publish the event via NotifyEdcValues. EA FA grabs them and handle the message via various plugins. This is not traget!", + "translated": "

This interface is mostly used for so called Method 2 integrations. Where equipment events are not directly handled by the EAF instead these are forwared to EDA and EDA publish the event via NotifyEdcValues. EA FA grabs them and handle the message via various plugins. This is not traget!

" + }, + "id": 61753, + "position": 1963, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 61755 + ], + "technicalComponentAssociations": [ + 61754, + 61966 + ], + "informationSystem2Associations": [ + 61778 + ] + } + }, + { + "id": 56092, + "properties": { + "lastModificationTime": "2020-04-02T08:41:48.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> EBS DL ID#56092", + "description": { + "plain": "Interface between EA Data Framework (EDA Client) and the EBS System to transfer EXF files.", + "translated": "

Interface between EA Data Framework (EDA Client) and the EBS System to transfer EXF files.

" + }, + "id": 56092, + "position": 1684, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 56093 + ], + "technicalComponentAssociations": [ + 56095 + ], + "informationSystem2Associations": [ + 56094 + ] + } + }, + { + "id": 18366, + "properties": { + "lastModificationTime": "2020-03-12T09:52:51.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "EA Data Framework -> EA FA FW HPS ID#18366", + "description": { + "plain": "This interface is mostly used for so called Method 2 integrations. Where equipment events are not directly handled by the EAF instead these are forwared to EDA and EDA publish the event via NotifyEdcValues. EA FA grabs them and handle the message via various plugins. This is not traget!", + "translated": "

This interface is mostly used for so called Method 2 integrations. Where equipment events are not directly handled by the EAF instead these are forwared to EDA and EDA publish the event via NotifyEdcValues. EA FA grabs them and handle the message via various plugins. This is not traget!

" + }, + "id": 18366, + "position": 971, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 38265 + ], + "technicalComponentAssociations": [ + 61867, + 40643 + ], + "informationSystem2Associations": [ + 39565 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 83455, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 83455 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "project": [ + 83326 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 33554, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 33554 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 17708 + ] + } + }, + { + "id": 53554, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 53554 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 16322 + ] + } + }, + { + "id": 53555, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 53555 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 15359 + ] + } + }, + { + "id": 53556, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 53556 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 52561 + ] + } + }, + { + "id": 61045, + "properties": { + "Technology Migration Notes": "From VisuServer 4.3 on", + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 61045 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 44976 + ] + } + }, + { + "id": 30213, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 30213 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 6071 + ] + } + }, + { + "id": 61046, + "properties": { + "Technology Migration Notes": "From VisuServer 4.3 on", + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 61046 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 16356 + ] + } + }, + { + "id": 77485, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 77485 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 52560 + ] + } + }, + { + "id": 31086, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 31086 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "technicalComponent": [ + 16284 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 53601, + "properties": { + "lastModificationTime": "2023-06-27T08:01:38.000Z", + "lastModificationUser": "Christian Mueller (muech)", + "id": 53601 + }, + "relations": { + "informationSystem": [ + 4660 + ], + "informationFlow": [ + 53382 + ] + } + }, + { + "id": 56098, + "properties": { + "lastModificationTime": "2021-12-16T09:58:29.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 56098 + }, + "relations": { + "informationSystem": [ + 71865 + ], + "informationFlow": [ + 56096 + ] + } + }, + { + "id": 63622, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 63622 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 63620 + ] + } + }, + { + "id": 47178, + "properties": { + "lastModificationTime": "2023-08-08T11:41:35.723Z", + "lastModificationUser": "Heinz Veitschegger (veitsche)", + "id": 47178 + }, + "relations": { + "informationSystem": [ + 47140 + ], + "informationFlow": [ + 47144 + ] + } + }, + { + "id": 56109, + "properties": { + "lastModificationTime": "2023-05-09T11:47:40.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 56109 + }, + "relations": { + "informationSystem": [ + 4754 + ], + "informationFlow": [ + 56107 + ] + } + }, + { + "id": 55245, + "properties": { + "lastModificationTime": "2022-02-24T16:16:35.000Z", + "lastModificationUser": "Sascha Pscheidt (pscheidt)", + "id": 55245 + }, + "relations": { + "informationSystem": [ + 16118 + ], + "informationFlow": [ + 55244 + ] + } + }, + { + "id": 39565, + "properties": { + "lastModificationTime": "2022-04-21T07:11:35.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 39565 + }, + "relations": { + "informationSystem": [ + 4790 + ], + "informationFlow": [ + 18366 + ] + } + }, + { + "id": 64142, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 64142 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 64140 + ] + } + }, + { + "id": 61778, + "properties": { + "lastModificationTime": "2023-06-05T14:18:16.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 61778 + }, + "relations": { + "informationSystem": [ + 61727 + ], + "informationFlow": [ + 61753 + ] + } + }, + { + "id": 55251, + "properties": { + "lastModificationTime": "2022-06-20T03:37:12.000Z", + "lastModificationUser": "Mengjie Mei (meimengj)", + "id": 55251 + }, + "relations": { + "informationSystem": [ + 55132 + ], + "informationFlow": [ + 55248 + ] + } + }, + { + "id": 52276, + "properties": { + "lastModificationTime": "2022-07-01T20:24:20.000Z", + "lastModificationUser": "Benjamin Lenz (lenzbenj)", + "id": 52276 + }, + "relations": { + "informationSystem": [ + 15728 + ], + "informationFlow": [ + 52274 + ] + } + }, + { + "id": 55253, + "properties": { + "lastModificationTime": "2023-07-20T08:13:21.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "id": 55253 + }, + "relations": { + "informationSystem": [ + 4816 + ], + "informationFlow": [ + 55252 + ] + } + }, + { + "id": 55962, + "properties": { + "lastModificationTime": "2023-05-09T05:59:22.000Z", + "lastModificationUser": "Zebiao Yan (yanaustin)", + "id": 55962 + }, + "relations": { + "informationSystem": [ + 5147 + ], + "informationFlow": [ + 55960 + ] + } + }, + { + "id": 53562, + "properties": { + "lastModificationTime": "2022-10-17T15:07:50.000Z", + "lastModificationUser": "Abinash Ojha (ojha)", + "id": 53562 + }, + "relations": { + "informationSystem": [ + 17535 + ], + "informationFlow": [ + 53558 + ] + } + }, + { + "id": 56094, + "properties": { + "lastModificationTime": "2023-06-22T09:16:41.000Z", + "lastModificationUser": "Philipp Ferstl (ferstlph)", + "id": 56094 + }, + "relations": { + "informationSystem": [ + 8180 + ], + "informationFlow": [ + 56092 + ] + } + } + ], + "InformationSystem": [ + { + "id": 4816, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "lastModificationTime": "2023-08-31T10:28:52.723Z", + "EVA Instances": { + "plain": "[[EA Data Framework (DRS-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000403786]],\n[[EA Data Framework (DRS-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000403787]],\n[[EA Data Framework (Global)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000730447]],\n[[EA Data Framework (KLM-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000442269]],\n[[EA Data Framework - WBG (KLM-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000704886]],\n[[EA Data Framework (MES-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000546134]],\n[[EA Data Framework (RBG)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000372776]],\n[[EA Data Framework (SIN-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000364422]],\n[[EA Data Framework (VIH-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000380645]],\n[[EA Data Framework (VIH-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000513209]]", + "translated": "

EA Data Framework (DRS-OP FE 200),
EA Data Framework (DRS-OP FE 300),
EA Data Framework (Global),
EA Data Framework (KLM-OP FE),
EA Data Framework - WBG (KLM-OP FE),
EA Data Framework (MES-OP FE),
EA Data Framework (RBG),
EA Data Framework (SIN-OP BE),
EA Data Framework (VIH-OP FE 200),
EA Data Framework (VIH-OP FE 300)

" + }, + "FI - APM Comment": { + "plain": "2016-05-19 (Rene Zimmermann, Thomas G.): upgraded the MC from C to A to reflect the reality, especially because EDA Server is running within EAF", + "translated": "

2016-05-19 (Rene Zimmermann, Thomas G.): upgraded the MC from C to A to reflect the reality, especially because EDA Server is running within EAF

" + }, + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Short Description: Equipment Acquisition Data Framework (Interface-A), this application is responsible for \n1) configuring and retrieving data from (currently) Interface-A based data providers such as EAF or Processing Equipments with native Interface-A support\n2) post process the data (if necessary) and prepare it for specific target applications\n3) forward data to configured target application, such as APC Trend or IFX Api based data consumers etc.\niShare: http://ishare2010.infineon.com/sites/EDAFramework/SitePages/Home.aspx -> folder \"Documentation\"\nWiki: https://confluencewikiprod.intra.infineon.com/display/EDA/EDA+Framework+Home\nSupposed IT Line: IFD CSC FI ADI DES\nSupposed Responsible person (IT): Mike Koehler, Stephan Melzig\nLicence/Vendor: no lincence required/ Infineon", + "translated": "

Short Description: Equipment Acquisition Data Framework (Interface-A), this application is responsible for
1) configuring and retrieving data from (currently) Interface-A based data providers such as EAF or Processing Equipments with native Interface-A support
2) post process the data (if necessary) and prepare it for specific target applications
3) forward data to configured target application, such as APC Trend or IFX Api based data consumers etc.
iShare: http://ishare2010.infineon.com/sites/EDAFramework/SitePages/Home.aspx -> folder \"Documentation\"
Wiki: https://confluencewikiprod.intra.infineon.com/display/EDA/EDA+Framework+Home
Supposed IT Line: IFD CSC FI ADI DES
Supposed Responsible person (IT): Mike Koehler, Stephan Melzig
Licence/Vendor: no lincence required/ Infineon

" + }, + "Application Owner": "Stephan Melzig (melzig)", + "Location of Usage": [ + "Kulim", + "Dresden", + "Warstein", + "Tijuana", + "Wuxi", + "Cegled", + "Regensburg", + "Mesa", + "Villach", + "Batam", + "Singapore", + "Melaka" + ], + "FI - DP Compliance Finish Date": "2020-10-07", + "IT Org": "FI ADI DES", + "FI - Technical Fitness": "High", + "Personal Data Protection Class": "C", + "id": 4816, + "Roadmap Ranking": "Target", + "Location of Instances": [ + "Mesa", + "Regensburg", + "Villach", + "Singapore", + "Dresden", + "Kulim", + "Global" + ], + "Location of Hosting": [ + "Dresden", + "Kulim", + "Mesa", + "Regensburg", + "Villach" + ], + "Productive period": "2012-07-02;", + "Application Details": { + "plain": "[[ACM DB>>http://goto/MEMS/ToolApplicationOverview?Application=EA Data Framework]]\nhttps://ishare.infineon.com/sites/EDAFramework/Documentation/Forms/AllItems.aspx", + "translated": "

ACM DB
https://ishare.infineon.com/sites/EDAFramework/Documentation/Forms/AllItems.aspx

" + }, + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Stephan.Melzig@infineon.com", + "Keyword Tags": { + "plain": "EDA, EDA Client", + "translated": "

EDA, EDA Client

" + }, + "Development model": "Custom development", + "name": "EA Data Framework", + "DataCenter Repository Link": { + "plain": "[[EA Data Framework>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27EA+Data+Framework%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

EA Data Framework

" + }, + "FI - IRMA Group": "FI ADI DES", + "position": 653, + "Shortname": "EDA", + "Mission Criticality": "A - Critical" + }, + "relations": { + "predecessors": [ + 59899, + 5702, + 4586, + 71345, + 59220, + 62700 + ], + "children": [ + 16290, + 16288, + 16286, + 82098, + 16292, + 55593 + ], + "informationFlow1Associations": [ + 56110, + 55961, + 53384, + 55247, + 61755, + 56093, + 47145, + 55249, + 38265, + 52275, + 53561, + 56099 + ], + "informationSystemDomainAssociations": [ + 56847, + 70161, + 84886, + 84887, + 54231, + 45921, + 70430, + 46220, + 45660, + 46110 + ], + "technicalComponentAssociations": [ + 61046, + 53556, + 33554, + 77485, + 61045, + 53555, + 31086, + 53554, + 30213 + ], + "informationFlow2Associations": [ + 55253, + 64142, + 63622 + ], + "projectAssociations": [ + 83455 + ], + "baseComponents": [ + 8170, + 72964, + 63642, + 72966, + 72962, + 77773, + 72960, + 77772, + 4754 + ], + "businessMappings": [ + 34203, + 34204 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/51928.json b/iteraplan/51928.json new file mode 100644 index 0000000..82f51d8 --- /dev/null +++ b/iteraplan/51928.json @@ -0,0 +1,214 @@ +{ + "BusinessMapping": [ + { + "id": 52184, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.601Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 52184 + }, + "relations": { + "informationSystem": [ + 51928 + ], + "itService": [ + 13146 + ] + } + }, + { + "id": 52183, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.601Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 52183 + }, + "relations": { + "informationSystem": [ + 51928 + ], + "itService": [ + 52167 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 80088, + "properties": { + "lastModificationTime": "2023-06-01T16:38:23.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80088 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 51928 + ] + } + }, + { + "id": 52219, + "properties": { + "lastModificationTime": "2023-06-01T16:38:23.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 52219 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 51928 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 52220, + "properties": { + "lastModificationTime": "2023-06-01T16:38:23.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 52220 + }, + "relations": { + "informationSystem": [ + 51928 + ], + "technicalComponent": [ + 6071 + ] + } + }, + { + "id": 52221, + "properties": { + "lastModificationTime": "2023-06-01T16:38:23.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 52221 + }, + "relations": { + "informationSystem": [ + 51928 + ], + "technicalComponent": [ + 1157 + ] + } + }, + { + "id": 52222, + "properties": { + "lastModificationTime": "2023-06-01T16:38:23.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 52222 + }, + "relations": { + "informationSystem": [ + 51928 + ], + "technicalComponent": [ + 917 + ] + } + }, + { + "id": 52223, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 52223 + }, + "relations": { + "informationSystem": [ + 51928 + ], + "technicalComponent": [ + 17614 + ] + } + } + ], + "InformationSystem": [ + { + "id": 51928, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "Contact IT Org": "FI", + "lastModificationTime": "2023-06-01T16:38:23.000Z", + "EVA Instances": { + "plain": "[[OpenInsight Metrology Viewer (NA-OP FE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000558532]]", + "translated": "

OpenInsight Metrology Viewer (NA-OP FE)

" + }, + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "Deployment model": "Local", + "description": { + "plain": "Component of MES solution at Mesa used to view/validate/archive metrology data in the Si fab before import to OpenInsight MES.", + "translated": "

Component of MES solution at Mesa used to view/validate/archive metrology data in the Si fab before import to OpenInsight MES.

" + }, + "Application Owner": "Leslie Phares (phares)", + "Location of Usage": [ + "Mesa" + ], + "ES - Vendor": "OpenInsight", + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "ES - Operation Model": "Intern", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "D", + "id": 51928, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "North America" + ], + "Location of Hosting": [ + "El Segundo", + "Mesa" + ], + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Mike.Phares@infineon.com", + "Keyword Tags": { + "plain": "metrology database", + "translated": "

metrology database

" + }, + "Development model": "Custom development", + "name": "OpenInsight Metrology Viewer", + "DataCenter Repository Link": { + "plain": "[[OpenInsight Metrology Viewer>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27OpenInsight+Metrology+Viewer%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

OpenInsight Metrology Viewer

" + }, + "position": 2001, + "Mission Criticality": "A - Critical", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 52219, + 80088 + ], + "parentComponents": [ + 9451 + ], + "technicalComponentAssociations": [ + 52221, + 52223, + 52220, + 52222 + ], + "baseComponents": [ + 4774 + ], + "businessMappings": [ + 52184, + 52183 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/5660.json b/iteraplan/5660.json new file mode 100644 index 0000000..9958710 --- /dev/null +++ b/iteraplan/5660.json @@ -0,0 +1,577 @@ +{ + "BusinessMapping": [ + { + "id": 34544, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.590Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34544 + }, + "relations": { + "informationSystem": [ + 5660 + ], + "itService": [ + 14083 + ] + } + }, + { + "id": 34542, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.590Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34542 + }, + "relations": { + "informationSystem": [ + 5660 + ], + "itService": [ + 13214 + ] + } + }, + { + "id": 34543, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.590Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34543 + }, + "relations": { + "informationSystem": [ + 5660 + ], + "itService": [ + 13216 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 73244, + "properties": { + "lastModificationTime": "2022-04-11T11:05:55.000Z", + "lastModificationUser": "Christof Kanitz (kanitz)", + "id": 73244 + }, + "relations": { + "informationFlow": [ + 73242 + ], + "technicalComponent": [ + 17704 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 73243, + "properties": { + "lastModificationTime": "2022-07-13T10:14:25.000Z", + "lastModificationUser": "Christof Kanitz (kanitz)", + "id": 73243 + }, + "relations": { + "informationSystem": [ + 5676 + ], + "informationFlow": [ + 73242 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 70197, + "properties": { + "lastModificationTime": "2021-09-14T06:52:34.000Z", + "lastModificationUser": "Erich Otto Pintar (pintar)", + "id": 70197 + }, + "relations": { + "informationSystemDomain": [ + 70012 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 79716, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79716 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46503, + "properties": { + "lastModificationTime": "2020-10-23T07:37:11.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46503 + }, + "relations": { + "informationSystemDomain": [ + 45127 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46375, + "properties": { + "lastModificationTime": "2020-12-10T07:58:23.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 46375 + }, + "relations": { + "informationSystemDomain": [ + 45094 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46504, + "properties": { + "lastModificationTime": "2020-10-23T07:37:11.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46504 + }, + "relations": { + "informationSystemDomain": [ + 45128 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46505, + "properties": { + "lastModificationTime": "2020-10-23T07:37:11.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46505 + }, + "relations": { + "informationSystemDomain": [ + 45126 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46506, + "properties": { + "lastModificationTime": "2020-10-23T07:37:11.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46506 + }, + "relations": { + "informationSystemDomain": [ + 45100 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46507, + "properties": { + "lastModificationTime": "2020-10-23T07:37:11.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46507 + }, + "relations": { + "informationSystemDomain": [ + 45101 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46508, + "properties": { + "lastModificationTime": "2020-10-23T07:37:11.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 46508 + }, + "relations": { + "informationSystemDomain": [ + 45117 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 46429, + "properties": { + "lastModificationTime": "2020-12-10T07:58:55.000Z", + "lastModificationUser": "Sebastian Huette (huette)", + "id": 46429 + }, + "relations": { + "informationSystemDomain": [ + 45098 + ], + "informationSystem": [ + 5660 + ] + } + }, + { + "id": 70447, + "properties": { + "lastModificationTime": "2021-09-14T06:53:26.000Z", + "lastModificationUser": "Erich Otto Pintar (pintar)", + "id": 70447 + }, + "relations": { + "informationSystemDomain": [ + 70290 + ], + "informationSystem": [ + 5660 + ] + } + } + ], + "Is2BdAssociation": [ + { + "id": 59451, + "properties": { + "EA - Impact Ranking": 3.00, + "lastModificationTime": "2020-10-23T07:37:11.000Z", + "lastModificationUser": "Hwee Farn Chan (chanhw)", + "id": 59451 + }, + "relations": { + "informationSystem": [ + 5660 + ], + "businessDomain": [ + 40798 + ] + } + } + ], + "InformationFlow": [ + { + "id": 73242, + "properties": { + "lastModificationTime": "2022-04-11T12:00:29.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "WAC -> YODA ID#73242", + "description": { + "plain": "WAC client server communication uses YODA (request/reply, subscribe/publish). WAC servers using failover via Yoda fault tolerance. WAC servers also call various services via YODA and subscribe to multiple subjects (see other connected applications).", + "translated": "

WAC client server communication uses YODA (request/reply, subscribe/publish). WAC servers using failover via Yoda fault tolerance. WAC servers also call various services via YODA and subscribe to multiple subjects (see other connected applications).

" + }, + "id": 73242, + "position": 2495, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "informationSystem1Associations": [ + 73243 + ], + "technicalComponentAssociations": [ + 73244 + ], + "informationSystem2Associations": [ + 73245 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 83656, + "properties": { + "lastModificationTime": "2023-07-02T10:04:34.000Z", + "lastModificationUser": "Siong Boon Ong (ongsiong)", + "SCM - Impact Type": "Not Impacted", + "id": 83656 + }, + "relations": { + "informationSystem": [ + 5660 + ], + "project": [ + 83654 + ] + } + }, + { + "id": 83495, + "properties": { + "lastModificationTime": "2023-06-20T14:13:32.000Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 83495 + }, + "relations": { + "informationSystem": [ + 5660 + ], + "project": [ + 83326 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 73245, + "properties": { + "lastModificationTime": "2022-04-11T11:05:55.000Z", + "lastModificationUser": "Christof Kanitz (kanitz)", + "id": 73245 + }, + "relations": { + "informationSystem": [ + 5660 + ], + "informationFlow": [ + 73242 + ] + } + } + ], + "InformationSystem": [ + { + "id": 5660, + "properties": { + "Application Type": "Technical application", + "Export Control Classification": "No", + "lastModificationTime": "2023-04-19T07:16:35.000Z", + "EVA Instances": { + "plain": "[[YODA (BKK)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000737016]],\n[[YODA (BTH)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000285481]],\n[[YODA (CEG-OP BE)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000382394]],\n[[YODA (CJJ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000450387]],\n[[YODA (DRS-OP FE 200)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000191299]],\n[[YODA (DRS-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000285490]],\n[[YODA (KLM)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000207419]],\n[[YODA (MKZ)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000189177]],\n[[YODA (MES)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000540746]],\n[[YODA (MGH)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000411812]],\n[[YODA (RBG)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000191295]],\n[[YODA (SIN)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000189129]],\n[[YODA (TIJ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000408901]],\n[[YODA (VIH)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000132650]],\n[[YODA (VIH-OP FE 300)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000511815]],\n[[YODA (WAR)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000361544]],\n[[YODA (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB40000189176]],\n[[YODA SIAPM (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000449952]]", + "translated": "

YODA (BKK),
YODA (BTH),
YODA (CEG-OP BE),
YODA (CJJ),
YODA (DRS-OP FE 200),
YODA (DRS-OP FE 300),
YODA (KLM),
YODA (MKZ),
YODA (MES),
YODA (MGH),
YODA (RBG),
YODA (SIN),
YODA (TIJ),
YODA (VIH),
YODA (VIH-OP FE 300),
YODA (WAR),
YODA (WUX),
YODA SIAPM (WUX)

" + }, + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Short Description: MIB Integration Framework\n\nMIB Integration Framework is also called YODA. Yoda stands for \"Your Own Data Adaptor\". YODA is a set of components and libraries which are application, platform and technology independent. They have defined a set of well-defined rules and conventions.\n\nMore information at http://goto.infineon.com/yoda", + "translated": "

Short Description: MIB Integration Framework

MIB Integration Framework is also called YODA. Yoda stands for \"Your Own Data Adaptor\". YODA is a set of components and libraries which are application, platform and technology independent. They have defined a set of well-defined rules and conventions.

More information at http://goto.infineon.com/yoda

" + }, + "Application Owner": "Hock Yew Ong (onghocky)", + "Location of Usage": [ + "Bangkok", + "Morgan Hill" + ], + "IT Org": "FI ADI ESB", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "D", + "id": 5660, + "Roadmap Ranking": "Target", + "Location of Instances": [ + "Mesa", + "Batam", + "Morgan Hill", + "Singapore", + "Kulim", + "Warstein", + "Wuxi", + "Tijuana", + "Regensburg", + "Villach", + "Melaka", + "Dresden", + "Cegled", + "Bangkok", + "Cheonan" + ], + "Location of Hosting": [ + "Dresden", + "Cegled", + "Bangkok", + "Cheonan", + "Regensburg", + "Villach", + "Melaka", + "Kulim", + "Warstein", + "Wuxi", + "Tijuana", + "Mesa", + "Batam", + "Singapore" + ], + "Productive period": "2004-01-01;", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Geoffrey.Ong@infineon.com", + "Development model": "Custom development", + "name": "YODA", + "DataCenter Repository Link": { + "plain": "[[YODA>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27YODA%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

YODA

" + }, + "FI - IRMA Group": "FI ADI ESB", + "position": 825, + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessDomainAssociations": [ + 59451 + ], + "children": [ + 15367, + 15388, + 61520, + 15386, + 15390, + 8174, + 15598, + 8160, + 15411, + 15392, + 15427, + 15600, + 8156, + 8166, + 15420, + 8172, + 15413, + 15423, + 15415, + 47850, + 5297, + 8170, + 8168, + 15409, + 15374, + 15425, + 15429, + 61676, + 8162, + 8158, + 8164, + 49884, + 15431 + ], + "informationSystemDomainAssociations": [ + 46508, + 79716, + 46429, + 46503, + 70197, + 70447, + 46506, + 46507, + 46375, + 46504, + 46505 + ], + "parentComponents": [ + 4710, + 49374, + 5678, + 4974, + 4674, + 51994, + 67038, + 21475, + 5277, + 5706, + 5604, + 5159, + 61727, + 5620, + 56276, + 4526, + 47032, + 21479, + 47200, + 4774, + 5223, + 77774, + 4726, + 5171, + 47241, + 4457, + 62628, + 4532, + 5137, + 47140, + 5207, + 4898, + 15760, + 15273, + 49347, + 17537, + 5165, + 52162, + 15251, + 66854, + 77772, + 5674, + 5199, + 21473, + 4932, + 4752, + 21469, + 15085, + 5121, + 5606, + 49319, + 63642, + 4832, + 71627, + 5746, + 21477, + 4524, + 21471, + 4790, + 4489, + 52194, + 16118, + 4564, + 17539, + 47251, + 5734 + ], + "informationFlow2Associations": [ + 73245 + ], + "projectAssociations": [ + 83656, + 83495 + ], + "businessMappings": [ + 34542, + 34544, + 34543 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/63775.json b/iteraplan/63775.json new file mode 100644 index 0000000..d83abf1 --- /dev/null +++ b/iteraplan/63775.json @@ -0,0 +1,163 @@ +{ + "BusinessMapping": [ + { + "id": 64224, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.613Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 64224 + }, + "relations": { + "informationSystem": [ + 63775 + ], + "itService": [ + 64223 + ] + } + }, + { + "id": 64669, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.614Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 64669 + }, + "relations": { + "informationSystem": [ + 63775 + ], + "itService": [ + 13062 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 80497, + "properties": { + "lastModificationTime": "2023-04-14T13:57:01.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 80497 + }, + "relations": { + "informationSystemDomain": [ + 79472 + ], + "informationSystem": [ + 63775 + ] + } + }, + { + "id": 80212, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 80212 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 63775 + ] + } + }, + { + "id": 63899, + "properties": { + "lastModificationTime": "2021-03-01T12:34:52.000Z", + "lastModificationUser": "Dieter Schneider (schnedi)", + "id": 63899 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 63775 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 64670, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 64670 + }, + "relations": { + "informationSystem": [ + 63775 + ], + "technicalComponent": [ + 17614 + ] + } + } + ], + "InformationSystem": [ + { + "id": 63775, + "properties": { + "Application Type": "Business application", + "lastModificationTime": "2021-03-01T12:34:52.000Z", + "lastModificationUser": "Dieter Schneider (schnedi)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Equipment Integration Solutions for Mesa on EAF", + "translated": "

Equipment Integration Solutions for Mesa on EAF

" + }, + "Productive period": "2021-02-17;", + "Application Owner": "Leslie Phares (phares)", + "Location of Usage": [ + "Mesa" + ], + "IT Org": "FI SPS", + "Application Details": { + "plain": "http://ishare.infineon.com/sites/eaf.SitePages/Home.aspx", + "translated": "

http://ishare.infineon.com/sites/eaf.SitePages/Home.aspx

" + }, + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Mike.Phares@infineon.com", + "FI - Technical Fitness": "Medium", + "Development model": "Custom development", + "name": "EAF Mesa Integration", + "DataCenter Repository Link": { + "plain": "EAF Mesa Integration", + "translated": "

EAF Mesa Integration

" + }, + "Personal Data Protection Class": "C", + "id": 63775, + "position": 2632, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical", + "Location of Instances": [ + "Mesa" + ], + "Location of Hosting": [ + "Mesa" + ] + }, + "relations": { + "informationSystemDomainAssociations": [ + 63899, + 80497, + 80212 + ], + "technicalComponentAssociations": [ + 64670 + ], + "businessMappings": [ + 64224, + 64669 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/66828.json b/iteraplan/66828.json new file mode 100644 index 0000000..b633230 --- /dev/null +++ b/iteraplan/66828.json @@ -0,0 +1,119 @@ +{ + "BusinessMapping": [ + { + "id": 66850, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.587Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 66850 + }, + "relations": { + "informationSystem": [ + 66828 + ], + "itService": [ + 13156 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 66829, + "properties": { + "lastModificationTime": "2021-06-14T19:27:25.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 66829 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 66828 + ] + } + }, + { + "id": 80221, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 80221 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 66828 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 66830, + "properties": { + "lastModificationTime": "2022-06-13T13:55:09.000Z", + "lastModificationUser": "Heinz Veitschegger (veitsche)", + "id": 66830 + }, + "relations": { + "informationSystem": [ + 66828 + ], + "technicalComponent": [ + 44975 + ] + } + } + ], + "InformationSystem": [ + { + "id": 66828, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "lastModificationTime": "2021-06-14T19:27:25.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Data visualization tool which provides pictorial and graphical representations of data for HiRel Manufacturing reporting and analytics.", + "translated": "

Data visualization tool which provides pictorial and graphical representations of data for HiRel Manufacturing reporting and analytics.

" + }, + "Productive period": "2017-08-07;", + "Application Owner": "Travis Buuck (buuck)", + "IT Org": "FI SPS", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Travis.Buuck@infineon.com", + "Keyword Tags": { + "plain": "Tableau\nHiRel", + "translated": "

Tableau
HiRel

" + }, + "FI - Technical Fitness": "High", + "Development model": "Out-of-box standard", + "name": "Tableau Server HiRel", + "Personal Data Protection Class": "C", + "id": 66828, + "position": 2747, + "Work Council Agreements": "not applicable", + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 66829, + 80221 + ], + "technicalComponentAssociations": [ + 66830 + ], + "businessMappings": [ + 66850 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/72966.json b/iteraplan/72966.json new file mode 100644 index 0000000..8b3a5f5 --- /dev/null +++ b/iteraplan/72966.json @@ -0,0 +1,74 @@ +{ + "BusinessMapping": [ + { + "id": 72967, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.615Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 72967 + }, + "relations": { + "informationSystem": [ + 72966 + ], + "itService": [ + 72944 + ] + } + } + ], + "InformationSystem": [ + { + "id": 72966, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "lastModificationTime": "2022-03-31T05:32:18.000Z", + "lastModificationUser": "Mike Koehler (koehlmik)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Short Description: Equipment Data Acquisition Client\n\nPlays the role of the Equipment Data Distributor. Implements the Interface-A and/or EDA SEMI Standard Interfaces.\nLoads individual data format transformer modules at process start up (e.g. PDSF, EXF, JSON modules)", + "translated": "

Short Description: Equipment Data Acquisition Client

Plays the role of the Equipment Data Distributor. Implements the Interface-A and/or EDA SEMI Standard Interfaces.
Loads individual data format transformer modules at process start up (e.g. PDSF, EXF, JSON modules)

" + }, + "Productive period": "2012-07-02;", + "Application Owner": "Leslie Phares (phares)", + "Location of Usage": [ + "Mesa" + ], + "FI - DP Compliance Finish Date": "2020-10-07", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Mike.Phares@infineon.com", + "Keyword Tags": { + "plain": "EDA, EDA Client", + "translated": "

EDA, EDA Client

" + }, + "FI - Technical Fitness": "High", + "Development model": "Custom development", + "name": "EDA Mesa Integration", + "DataCenter Repository Link": { + "plain": "EDA Mesa Integration", + "translated": "

EDA Mesa Integration

" + }, + "Personal Data Protection Class": "C", + "id": 72966, + "position": 2835, + "Roadmap Ranking": "Target", + "Mission Criticality": "A - Critical", + "Location of Instances": [ + "Mesa" + ], + "Location of Hosting": [ + "Mesa" + ] + }, + "relations": { + "parentComponents": [ + 4816 + ], + "businessMappings": [ + 72967 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/77180.json b/iteraplan/77180.json new file mode 100644 index 0000000..70aa7a6 --- /dev/null +++ b/iteraplan/77180.json @@ -0,0 +1,59 @@ +{ + "BusinessMapping": [ + { + "id": 77272, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.606Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 77272 + }, + "relations": { + "informationSystem": [ + 77180 + ], + "itService": [ + 13849 + ] + } + } + ], + "InformationSystem": [ + { + "id": 77180, + "properties": { + "lastModificationTime": "2022-11-09T16:00:42.000Z", + "EVA Instances": { + "plain": "[[OpenLDAP Service (VIH)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525603]],[[OpenLDAP Service (SHA)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000553370]],[[OpenLDAP Service (SJC)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000557980]],[[OpenLDAP Service (BLR)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525607]],[[OpenLDAP Service (TYO)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000598152]],[[OpenLDAP Service (CAV)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000636520]],[[OpenLDAP Service (BKK)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000636881]],[[OpenLDAP Service (TDC)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000557981]],[[OpenLDAP Service (MES)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000595513]],[[OpenLDAP Service (TEM)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000595514]],[[OpenLDAP Service (CJJ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525606]],[[OpenLDAP Service (MKZ)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000488144]],[[OpenLDAP Service (WAR)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525608]],[[OpenLDAP Service (KLM)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525596]],[[OpenLDAP Service (CEG)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525599]],[[OpenLDAP Service (BTH)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525597]],[[OpenLDAP Service (ELS)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525605]],[[OpenLDAP Service (RBG)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525602]],[[OpenLDAP Service (SIN)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525598]],[[OpenLDAP Service (DRS)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525604]],[[OpenLDAP Service (WUX)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525600]],[[OpenLDAP Service (MUC)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000525601]]", + "translated": "

OpenLDAP Service (VIH),OpenLDAP Service (SHA),OpenLDAP Service (SJC),OpenLDAP Service (BLR),OpenLDAP Service (TYO),OpenLDAP Service (CAV),OpenLDAP Service (BKK),OpenLDAP Service (TDC),OpenLDAP Service (MES),OpenLDAP Service (TEM),OpenLDAP Service (CJJ),OpenLDAP Service (MKZ),OpenLDAP Service (WAR),OpenLDAP Service (KLM),OpenLDAP Service (CEG),OpenLDAP Service (BTH),OpenLDAP Service (ELS),OpenLDAP Service (RBG),OpenLDAP Service (SIN),OpenLDAP Service (DRS),OpenLDAP Service (WUX),OpenLDAP Service (MUC)

" + }, + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "http://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/4720\nProduct Responsible: Pichler Alexander", + "translated": "

http://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/4720
Product Responsible: Pichler Alexander

" + }, + "IT Org": "IT OS NPA", + "Application Details": { + "plain": ".", + "translated": "

.

" + }, + "name": "OpenLDAP Service", + "DataCenter Repository Link": { + "plain": "[[LAN Service>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27LAN+Service%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

LAN Service

" + }, + "Personal Data Protection Class": "C", + "id": 77180, + "position": 2994, + "Roadmap Ranking": "Target", + "Mission Criticality": "C - Medium", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "businessMappings": [ + 77272 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/80575.json b/iteraplan/80575.json new file mode 100644 index 0000000..89e016d --- /dev/null +++ b/iteraplan/80575.json @@ -0,0 +1,287 @@ +{ + "BusinessMapping": [ + { + "id": 84061, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.593Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 84061 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "itService": [ + 13156 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 80577, + "properties": { + "lastModificationTime": "2023-04-06T17:46:26.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80577 + }, + "relations": { + "informationFlow": [ + 80576 + ], + "technicalComponent": [ + 917 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 80578, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.799Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 80578 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 80576 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 80579, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.939Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80579 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 80575 + ] + } + }, + { + "id": 80586, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.939Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80586 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 80575 + ] + } + } + ], + "InformationFlow": [ + { + "id": 80576, + "properties": { + "lastModificationTime": "2023-04-06T18:00:37.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "OpenInsight -> Mesa Reporting Service ID#80576", + "description": { + "plain": "Interface used in MESA to copy MES data to Fab Time for production reports:\n\nLogi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report", + "translated": "

Interface used in MESA to copy MES data to Fab Time for production reports:

Logi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report

" + }, + "id": 80576, + "position": 2850, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 80578 + ], + "technicalComponentAssociations": [ + 80577 + ], + "informationSystem2Associations": [ + 83292 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 80585, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.956Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80585 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "technicalComponent": [ + 44213 + ] + } + }, + { + "id": 80584, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.956Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80584 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "technicalComponent": [ + 929 + ] + } + }, + { + "id": 80580, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.956Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80580 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "technicalComponent": [ + 17028 + ] + } + }, + { + "id": 80583, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.956Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80583 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "technicalComponent": [ + 52563 + ] + } + }, + { + "id": 80582, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.956Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80582 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "technicalComponent": [ + 17614 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 83292, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.970Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 83292 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "informationFlow": [ + 80576 + ] + } + } + ], + "InformationSystem": [ + { + "id": 80575, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "Contact IT Org": "FI", + "lastModificationTime": "2023-07-31T15:03:38.859Z", + "ES - URL of Web Application": "http://10.72.100.74/fabtime717", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "ES - Contract Details": "88000 py (multi-site)", + "description": { + "plain": "Reporting dashboard for Mesa Manufacturing reports and logs – performs reporting/charting of Manufacturing performance, WIP tracking, lot dispatching, tool performance OEE and passdowns.", + "translated": "

Reporting dashboard for Mesa Manufacturing reports and logs – performs reporting/charting of Manufacturing performance, WIP tracking, lot dispatching, tool performance OEE and passdowns.

" + }, + "Application Owner": "Jonathan Ouellette (ouellette)", + "Location of Usage": [ + "Mesa" + ], + "FI - DP Compliance Finish Date": "2023-01-01", + "IT Org": "FI SPS", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "D", + "id": 80575, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "Mesa" + ], + "Location of Hosting": [ + "Mesa" + ], + "Productive period": "2023-01-23;", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Jonathan.Ouellette@infineon.com", + "Keyword Tags": { + "plain": "IR\nMesa", + "translated": "

IR
Mesa

" + }, + "Development model": "Out-of-box standard", + "name": "Mesa Reporting Service", + "position": 3062, + "Mission Criticality": "C - Medium", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 80586, + 80579 + ], + "technicalComponentAssociations": [ + 80585, + 80583, + 80580, + 80582, + 80584 + ], + "informationFlow2Associations": [ + 83292 + ], + "businessMappings": [ + 84061 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/84920.json b/iteraplan/84920.json new file mode 100644 index 0000000..ef54aa5 --- /dev/null +++ b/iteraplan/84920.json @@ -0,0 +1,364 @@ +{ + "Ifl2BoAssociation": [ + { + "id": 84929, + "properties": { + "lastModificationTime": "2023-08-08T07:17:59.789Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84929, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 21258 + ], + "informationFlow": [ + 84928 + ] + } + }, + { + "id": 84933, + "properties": { + "lastModificationTime": "2023-08-08T07:18:00.212Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84933, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 84928 + ] + } + }, + { + "id": 84932, + "properties": { + "lastModificationTime": "2023-08-08T07:18:00.167Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84932, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 21255 + ], + "informationFlow": [ + 84928 + ] + } + } + ], + "BusinessMapping": [ + { + "id": 85084, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.777Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 85084 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "itService": [ + 26762 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 84934, + "properties": { + "lastModificationTime": "2023-08-08T07:19:15.923Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84934 + }, + "relations": { + "informationFlow": [ + 84928 + ], + "technicalComponent": [ + 1009 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 84930, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.790Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84930 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "informationFlow": [ + 84928 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 85085, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.779Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 85085 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 84920 + ] + } + }, + { + "id": 84927, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.779Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84927 + }, + "relations": { + "informationSystemDomain": [ + 49446 + ], + "informationSystem": [ + 84920 + ] + } + }, + { + "id": 85086, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.779Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 85086 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 84920 + ] + } + } + ], + "InformationFlow": [ + { + "id": 84928, + "properties": { + "lastModificationTime": "2023-08-08T08:00:32.318Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "OpenInsight Web Services <-> OpenInsight ID#84928", + "description": { + "plain": "Lot data, state and execute track in. Equip state/maint data updates. WIP and Equip metrics, fab staff logging.", + "translated": "

Lot data, state and execute track in.  Equip state/maint data updates.  WIP and Equip metrics, fab staff logging.

" + }, + "id": 84928, + "position": 3076, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 84929, + 84932, + 84933 + ], + "informationSystem1Associations": [ + 84930 + ], + "technicalComponentAssociations": [ + 84934 + ], + "informationSystem2Associations": [ + 84931 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 84939, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.780Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84939 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "technicalComponent": [ + 1081 + ] + } + }, + { + "id": 84941, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.788Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84941 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "technicalComponent": [ + 56779 + ] + } + }, + { + "id": 84940, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.788Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84940 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "technicalComponent": [ + 61286 + ] + } + }, + { + "id": 84942, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.788Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84942 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "technicalComponent": [ + 52565 + ] + } + }, + { + "id": 84926, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.788Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84926 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "technicalComponent": [ + 52563 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 84931, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.800Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84931 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 84928 + ] + } + } + ], + "InformationSystem": [ + { + "id": 84920, + "properties": { + "Application Type": "Business application", + "Contact IT Org": "FI FE ES", + "lastModificationTime": "2023-08-31T07:49:39.777Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "$$hierarchy_level$$": 2, + "Deployment model": "Local", + "description": { + "plain": "MES functionality to compliment and integrate with OpenInsight while leveraging industry standard technologies. Examples: Smart Scanner for MES transactions in remote areas of the fab, Reactor Maint UI for technicians in grey spaces of the fab, SSR Passdown reports fab status and updates assignments/next steps.", + "translated": "

MES functionality to compliment and integrate with OpenInsight while leveraging industry standard technologies.  Examples: Smart Scanner for MES transactions in remote areas of the fab, Reactor Maint UI for technicians in grey spaces of the fab, SSR Passdown reports fab status and updates assignments/next steps.

" + }, + "Application Owner": "Chase Tucker (tuckerc)", + "Location of Usage": [ + "Mesa" + ], + "IT Org": "FI SPS", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "D", + "id": 84920, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "Mesa" + ], + "Location of Hosting": [ + "Mesa" + ], + "Productive period": "2023-04-21;", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Chase.Tucker@infineon.com", + "Keyword Tags": { + "plain": "OpenInsight, Maintenance UI, Smart Scanner, SSR Passdown", + "translated": "

OpenInsight, Maintenance UI, Smart Scanner, SSR Passdown

" + }, + "Development model": "Custom development", + "Hosting Type": [ + "intern (Intranet)" + ], + "name": "OpenInsight Web Services", + "position": 0, + "Mission Criticality": "A - Critical" + }, + "relations": { + "parent": [ + 9451 + ], + "informationFlow1Associations": [ + 84930 + ], + "informationSystemDomainAssociations": [ + 85086, + 85085, + 84927 + ], + "technicalComponentAssociations": [ + 84939, + 84942, + 84940, + 84941, + 84926 + ], + "businessMappings": [ + 85084 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9401.json b/iteraplan/9401.json new file mode 100644 index 0000000..e03ad4a --- /dev/null +++ b/iteraplan/9401.json @@ -0,0 +1,171 @@ +{ + "BusinessMapping": [ + { + "id": 52050, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.600Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 52050 + }, + "relations": { + "informationSystem": [ + 9401 + ], + "itService": [ + 26939 + ] + } + }, + { + "id": 34675, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.591Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34675 + }, + "relations": { + "informationSystem": [ + 9401 + ], + "itService": [ + 13237 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 79768, + "properties": { + "lastModificationTime": "2023-05-16T16:22:54.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79768 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9401 + ] + } + }, + { + "id": 45542, + "properties": { + "lastModificationTime": "2023-05-16T16:22:54.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45542 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9401 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 31130, + "properties": { + "lastModificationTime": "2023-05-16T16:22:54.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 31130 + }, + "relations": { + "informationSystem": [ + 9401 + ], + "technicalComponent": [ + 16321 + ] + } + }, + { + "id": 29795, + "properties": { + "lastModificationTime": "2023-05-16T16:22:54.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 29795 + }, + "relations": { + "informationSystem": [ + 9401 + ], + "technicalComponent": [ + 1155 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9401, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "Contact IT Org": "FI", + "lastModificationTime": "2023-05-16T16:22:53.000Z", + "EVA Instances": { + "plain": "[[YieldHUB (NA)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000583741]]", + "translated": "

YieldHUB (NA)

" + }, + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "HiRel Leominster\nFailure Analysis software; test data from test machines is inserted into application. That test data is then available to anyone using for analysis of failure, type of failure, where failed. Includes Radhard test parts and will contain ITAR data (Radhard data). The application was formerly known as FloorVision.", + "translated": "

HiRel Leominster
Failure Analysis software; test data from test machines is inserted into application. That test data is then available to anyone using for analysis of failure, type of failure, where failed. Includes Radhard test parts and will contain ITAR data (Radhard data).  The application was formerly known as FloorVision.

" + }, + "Application Owner": "Martha Jarsey (mjarsey1)", + "Location of Usage": [ + "Leominster" + ], + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 9401, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "North America" + ], + "Location of Hosting": [ + "Leominster", + "El Segundo" + ], + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Marti.Jarsey@infineon.com", + "Keyword Tags": { + "plain": "floorvision", + "translated": "

floorvision

" + }, + "Development model": "Out-of-box standard", + "name": "YieldHUB", + "DataCenter Repository Link": { + "plain": "[[YieldHUB>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27YieldHUB%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

YieldHUB

" + }, + "position": 930, + "Mission Criticality": "C - Medium", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 45542, + 79768 + ], + "technicalComponentAssociations": [ + 31130, + 29795 + ], + "businessMappings": [ + 34675, + 52050 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9405.json b/iteraplan/9405.json new file mode 100644 index 0000000..49e8f9c --- /dev/null +++ b/iteraplan/9405.json @@ -0,0 +1,202 @@ +{ + "BusinessMapping": [ + { + "id": 34677, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.591Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34677 + }, + "relations": { + "informationSystem": [ + 9405 + ], + "itService": [ + 13150 + ] + } + }, + { + "id": 34678, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.591Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34678 + }, + "relations": { + "informationSystem": [ + 9405 + ], + "itService": [ + 26931 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 79769, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79769 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9405 + ] + } + }, + { + "id": 45543, + "properties": { + "lastModificationTime": "2021-09-30T01:29:18.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45543 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9405 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 84609, + "properties": { + "SCM - Impact Description": "used in Leominster only", + "lastModificationTime": "2023-07-13T06:14:41.000Z", + "lastModificationUser": "Harald Ratusny (ratusny)", + "SCM - Impact Type": "Not Impacted", + "id": 84609 + }, + "relations": { + "informationSystem": [ + 9405 + ], + "project": [ + 83654 + ] + } + }, + { + "id": 76752, + "properties": { + "lastModificationTime": "2023-01-12T14:14:24.000Z", + "lastModificationUser": "Burkhard Wolf (wolfburk)", + "id": 76752 + }, + "relations": { + "informationSystem": [ + 9405 + ], + "project": [ + 76497 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79069, + "properties": { + "lastModificationTime": "2023-02-16T20:55:53.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79069 + }, + "relations": { + "informationSystem": [ + 9405 + ], + "technicalComponent": [ + 52563 + ] + } + }, + { + "id": 79070, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 79070 + }, + "relations": { + "informationSystem": [ + 9405 + ], + "technicalComponent": [ + 17614 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9405, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "Contact IT Org": "FI", + "lastModificationTime": "2021-09-30T01:29:18.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "HiRel Leominster\nFailure analysis, CAR, MRB", + "translated": "

HiRel Leominster
Failure analysis, CAR, MRB

" + }, + "Application Owner": "Martha Jarsey (mjarsey1)", + "Location of Usage": [ + "Leominster" + ], + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 9405, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "Leominster" + ], + "Location of Hosting": [ + "Leominster" + ], + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Marti.Jarsey@infineon.com", + "Keyword Tags": { + "plain": "xfracas", + "translated": "

xfracas

" + }, + "Development model": "Out-of-box standard", + "name": "IR Xfracas", + "position": 931, + "Mission Criticality": "C - Medium", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 45543, + 79769 + ], + "technicalComponentAssociations": [ + 79069, + 79070 + ], + "projectAssociations": [ + 76752, + 84609 + ], + "businessMappings": [ + 34677, + 34678 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9451.json b/iteraplan/9451.json new file mode 100644 index 0000000..c157d49 --- /dev/null +++ b/iteraplan/9451.json @@ -0,0 +1,937 @@ +{ + "Ifl2BoAssociation": [ + { + "id": 84929, + "properties": { + "lastModificationTime": "2023-08-08T07:17:59.789Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84929, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 21258 + ], + "informationFlow": [ + 84928 + ] + } + }, + { + "id": 84933, + "properties": { + "lastModificationTime": "2023-08-08T07:18:00.212Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84933, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 84928 + ] + } + }, + { + "id": 84932, + "properties": { + "lastModificationTime": "2023-08-08T07:18:00.167Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84932, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 21255 + ], + "informationFlow": [ + 84928 + ] + } + }, + { + "id": 10181, + "properties": { + "id": 10181, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 7897 + ], + "informationFlow": [ + 10082 + ] + } + }, + { + "id": 10182, + "properties": { + "id": 10182, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 10082 + ] + } + }, + { + "id": 10153, + "properties": { + "id": 10153, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 10129 + ], + "informationFlow": [ + 10065 + ] + } + }, + { + "id": 10154, + "properties": { + "id": 10154, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 8602 + ], + "informationFlow": [ + 10065 + ] + } + }, + { + "id": 10155, + "properties": { + "id": 10155, + "direction": "NO_DIRECTION" + }, + "relations": { + "businessObject": [ + 8587 + ], + "informationFlow": [ + 10065 + ] + } + } + ], + "BusinessMapping": [ + { + "id": 36497, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.792Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 36497 + }, + "relations": { + "businessProcess": [ + 43870 + ], + "informationSystem": [ + 9451 + ] + } + }, + { + "id": 36545, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.792Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 36545 + }, + "relations": { + "businessProcess": [ + 43782 + ], + "informationSystem": [ + 9451 + ] + } + }, + { + "id": 34694, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 34694 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "itService": [ + 13081 + ] + } + }, + { + "id": 36534, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 36534 + }, + "relations": { + "businessProcess": [ + 43832 + ], + "informationSystem": [ + 9451 + ] + } + }, + { + "id": 34695, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 34695 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "itService": [ + 13118 + ] + } + }, + { + "id": 34696, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 34696 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "itService": [ + 13198 + ] + } + }, + { + "id": 36616, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 36616 + }, + "relations": { + "businessProcess": [ + 43872 + ], + "informationSystem": [ + 9451 + ] + } + }, + { + "id": 34697, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 34697 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "itService": [ + 13239 + ] + } + }, + { + "id": 34698, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 34698 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "itService": [ + 13243 + ] + } + }, + { + "id": 34699, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 34699 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "itService": [ + 26762 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 80577, + "properties": { + "lastModificationTime": "2023-04-06T17:46:26.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80577 + }, + "relations": { + "informationFlow": [ + 80576 + ], + "technicalComponent": [ + 917 + ] + } + }, + { + "id": 40097, + "properties": { + "lastModificationTime": "2022-09-15T22:07:05.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 40097 + }, + "relations": { + "informationFlow": [ + 17670 + ], + "technicalComponent": [ + 917 + ] + } + }, + { + "id": 40373, + "properties": { + "lastModificationTime": "2022-09-15T18:09:30.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 40373 + }, + "relations": { + "informationFlow": [ + 10082 + ], + "technicalComponent": [ + 5758 + ] + } + }, + { + "id": 84934, + "properties": { + "lastModificationTime": "2023-08-08T07:19:15.923Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 84934 + }, + "relations": { + "informationFlow": [ + 84928 + ], + "technicalComponent": [ + 1009 + ] + } + }, + { + "id": 39863, + "properties": { + "lastModificationTime": "2022-09-15T18:09:30.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 39863 + }, + "relations": { + "informationFlow": [ + 10082 + ], + "technicalComponent": [ + 847 + ] + } + }, + { + "id": 39849, + "properties": { + "lastModificationTime": "2022-09-15T18:08:15.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 39849 + }, + "relations": { + "informationFlow": [ + 10065 + ], + "technicalComponent": [ + 847 + ] + } + }, + { + "id": 40362, + "properties": { + "lastModificationTime": "2022-09-15T18:08:15.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 40362 + }, + "relations": { + "informationFlow": [ + 10065 + ], + "technicalComponent": [ + 5758 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 37416, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.799Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 37416 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 10065 + ] + } + }, + { + "id": 80578, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.799Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 80578 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 80576 + ] + } + }, + { + "id": 84930, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.790Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84930 + }, + "relations": { + "informationSystem": [ + 84920 + ], + "informationFlow": [ + 84928 + ] + } + }, + { + "id": 38012, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.799Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 38012 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 17670 + ] + } + }, + { + "id": 37430, + "properties": { + "lastModificationTime": "2022-09-15T18:09:30.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 37430 + }, + "relations": { + "informationSystem": [ + 5977 + ], + "informationFlow": [ + 10082 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 45544, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.795Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 45544 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9451 + ] + } + }, + { + "id": 79771, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.795Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 79771 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9451 + ] + } + } + ], + "InformationFlow": [ + { + "id": 80576, + "properties": { + "lastModificationTime": "2023-04-06T18:00:37.000Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "OpenInsight -> Mesa Reporting Service ID#80576", + "description": { + "plain": "Interface used in MESA to copy MES data to Fab Time for production reports:\n\nLogi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report", + "translated": "

Interface used in MESA to copy MES data to Fab Time for production reports:

Logi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report

" + }, + "id": 80576, + "position": 2850, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 80578 + ], + "technicalComponentAssociations": [ + 80577 + ], + "informationSystem2Associations": [ + 83292 + ] + } + }, + { + "id": 10065, + "properties": { + "lastModificationTime": "2022-09-15T18:08:15.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "OpenInsight -> SAP ERP (ERP) ID#10065", + "description": { + "plain": "Bi-directional interface between legacy IR SAP and Mesa OpenInsight MES. Supports creation of lots, tracking status of lots, due date, arrival and quantity to FG warehouse.", + "translated": "

Bi-directional interface between legacy IR SAP and Mesa OpenInsight MES.  Supports creation of lots, tracking status of lots, due date, arrival and quantity to FG warehouse.

" + }, + "id": 10065, + "position": 226, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 10153, + 10154, + 10155 + ], + "informationSystem1Associations": [ + 37416 + ], + "technicalComponentAssociations": [ + 40362, + 39849 + ], + "informationSystem2Associations": [ + 38716 + ] + } + }, + { + "id": 84928, + "properties": { + "lastModificationTime": "2023-08-08T08:00:32.318Z", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "BOTH_DIRECTIONS", + "name": "OpenInsight Web Services <-> OpenInsight ID#84928", + "description": { + "plain": "Lot data, state and execute track in. Equip state/maint data updates. WIP and Equip metrics, fab staff logging.", + "translated": "

Lot data, state and execute track in.  Equip state/maint data updates.  WIP and Equip metrics, fab staff logging.

" + }, + "id": 84928, + "position": 3076, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 84929, + 84932, + 84933 + ], + "informationSystem1Associations": [ + 84930 + ], + "technicalComponentAssociations": [ + 84934 + ], + "informationSystem2Associations": [ + 84931 + ] + } + }, + { + "id": 10082, + "properties": { + "lastModificationTime": "2022-09-15T18:09:30.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "SAP ERP (ERP) -> OpenInsight ID#10082", + "description": { + "plain": "Bi-directional interface between legacy IR SAP and Mesa OpenInsight MES. Supports creation of lots, tracking status of lots, due date, arrival and quantity to FG warehouse.", + "translated": "

Bi-directional interface between legacy IR SAP and Mesa OpenInsight MES.  Supports creation of lots, tracking status of lots, due date, arrival and quantity to FG warehouse.

" + }, + "id": 10082, + "position": 240, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical" + }, + "relations": { + "businessObjectAssociations": [ + 10181, + 10182 + ], + "informationSystem1Associations": [ + 37430 + ], + "technicalComponentAssociations": [ + 40373, + 39863 + ], + "informationSystem2Associations": [ + 38730 + ] + } + }, + { + "id": 17670, + "properties": { + "lastModificationTime": "2022-09-15T22:07:05.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "OpenInsight -> FabTime ID#17670", + "description": { + "plain": "Interface used in MESA to copy MES data to Fab Time for production reports:\n\nLogi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report", + "translated": "

Interface used in MESA to copy MES data to Fab Time for production reports:

Logi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report

" + }, + "id": 17670, + "position": 761, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 38012 + ], + "technicalComponentAssociations": [ + 40097 + ], + "informationSystem2Associations": [ + 39312 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 31642, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.796Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 31642 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "technicalComponent": [ + 16343 + ] + } + }, + { + "id": 79133, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.798Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 79133 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "technicalComponent": [ + 44975 + ] + } + }, + { + "id": 33341, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.798Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 33341 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "technicalComponent": [ + 17685 + ] + } + }, + { + "id": 79132, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.798Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 79132 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "technicalComponent": [ + 52563 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 39312, + "properties": { + "lastModificationTime": "2023-01-25T22:55:12.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 39312 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "informationFlow": [ + 17670 + ] + } + }, + { + "id": 84931, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.800Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 84931 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 84928 + ] + } + }, + { + "id": 38730, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.800Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 38730 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 10082 + ] + } + }, + { + "id": 38716, + "properties": { + "lastModificationTime": "2022-09-15T18:08:15.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 38716 + }, + "relations": { + "informationSystem": [ + 5977 + ], + "informationFlow": [ + 10065 + ] + } + }, + { + "id": 83292, + "properties": { + "lastModificationTime": "2023-07-31T15:03:38.970Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 83292 + }, + "relations": { + "informationSystem": [ + 80575 + ], + "informationFlow": [ + 80576 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9451, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "Contact IT Org": "FI", + "lastModificationTime": "2023-08-31T07:49:39.794Z", + "EVA Instances": { + "plain": "[[OpenInsight (MES)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000465401]]", + "translated": "

OpenInsight (MES)

" + }, + "FI - APM Comment": { + "plain": "2017-01-26 (Thomas G.) TF is set to low due to used technology", + "translated": "

2017-01-26 (Thomas G.) TF is set to low due to used technology

" + }, + "ES - URL of Web Application": "n/a", + "lastModificationUser": "Thomas Giegold (giegold)", + "$$hierarchy_level$$": 1, + "Deployment model": "Local", + "description": { + "plain": "MES solution at MESA\n\nVendor - Revelation\nTechnology - Advanced Basic\nDatabase - SQL\n\nContains following components :\nEquipment Tracking and Monitoring, Fault Detection and Classifications, Maintenance, Pools and Products Failures, PM Tracking, Scheduling, Material Tracking, GaN WIP Tracking, MES IR; SRP OEngines (Logi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report).", + "translated": "

MES solution at MESA

Vendor - Revelation
Technology - Advanced Basic
Database - SQL

Contains following components :
Equipment Tracking and Monitoring, Fault Detection and Classifications, Maintenance, Pools and Products Failures, PM Tracking, Scheduling, Material Tracking, GaN WIP Tracking, MES IR; SRP OEngines (Logi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report).

" + }, + "Application Owner": "Jonathan Ouellette (ouellette)", + "Location of Usage": [ + "Mesa" + ], + "ES - Vendor": "OpenInsight", + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "ES - Operation Model": "Intern", + "FI - Technical Fitness": "Low", + "Personal Data Protection Class": "C", + "id": 9451, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "Mesa" + ], + "Location of Hosting": [ + "Mesa", + "Campeon" + ], + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Jonathan.Ouellette@infineon.com", + "Keyword Tags": { + "plain": "MES IR; Universal Driver (UD 5.0); Tools & Products Failures; General Data Export; Custom Data Export; PM Tracking; Scheduling & Material Tracking; Metrology Viewer, Metrology database", + "translated": "

MES IR; Universal Driver (UD 5.0);  Tools & Products Failures; General Data Export; Custom Data Export; PM Tracking; Scheduling & Material Tracking; Metrology Viewer, Metrology database

" + }, + "Development model": "Out-of-box modified", + "Hosting Type": [ + "intern (Intranet)" + ], + "name": "OpenInsight", + "DataCenter Repository Link": { + "plain": "[[OpenInsight>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27OpenInsight%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

OpenInsight

" + }, + "FI - IRMA Group": "FI SPS", + "position": 949, + "Mission Criticality": "A - Critical", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "children": [ + 84920 + ], + "informationFlow1Associations": [ + 80578, + 37416, + 38012 + ], + "informationSystemDomainAssociations": [ + 45544, + 79771 + ], + "technicalComponentAssociations": [ + 79133, + 31642, + 33341, + 79132 + ], + "informationFlow2Associations": [ + 84931, + 38730 + ], + "baseComponents": [ + 51928 + ], + "businessMappings": [ + 34698, + 36497, + 34695, + 34699, + 34697, + 34694, + 34696, + 36616, + 36545, + 36534 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9455.json b/iteraplan/9455.json new file mode 100644 index 0000000..055dc9b --- /dev/null +++ b/iteraplan/9455.json @@ -0,0 +1,204 @@ +{ + "BusinessMapping": [ + { + "id": 34700, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34700 + }, + "relations": { + "informationSystem": [ + 9455 + ], + "itService": [ + 13081 + ] + } + }, + { + "id": 34701, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34701 + }, + "relations": { + "informationSystem": [ + 9455 + ], + "itService": [ + 26932 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 45545, + "properties": { + "lastModificationTime": "2023-02-15T17:57:09.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45545 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9455 + ] + } + }, + { + "id": 79772, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79772 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9455 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 84604, + "properties": { + "SCM - Impact Description": "used in Leominster only", + "lastModificationTime": "2023-07-13T06:13:33.000Z", + "lastModificationUser": "Harald Ratusny (ratusny)", + "SCM - Impact Type": "Not Impacted", + "id": 84604 + }, + "relations": { + "informationSystem": [ + 9455 + ], + "project": [ + 83654 + ] + } + }, + { + "id": 76762, + "properties": { + "lastModificationTime": "2023-02-15T17:57:09.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 76762 + }, + "relations": { + "informationSystem": [ + 9455 + ], + "project": [ + 76497 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79221, + "properties": { + "lastModificationTime": "2023-02-24T20:21:54.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79221 + }, + "relations": { + "informationSystem": [ + 9455 + ], + "technicalComponent": [ + 44975 + ] + } + }, + { + "id": 79222, + "properties": { + "lastModificationTime": "2023-06-12T12:25:46.000Z", + "lastModificationUser": "Jonas Schrader (schradej)", + "id": 79222 + }, + "relations": { + "informationSystem": [ + 9455 + ], + "technicalComponent": [ + 16374 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9455, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "Contact IT Org": "FI", + "lastModificationTime": "2023-02-15T17:57:09.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "HiRel Leominster\nManufacturing Support/ Calibration and maintenance ", + "translated": "

HiRel Leominster
Manufacturing Support/ Calibration and maintenance 

" + }, + "Application Owner": "Martha Jarsey (mjarsey1)", + "Location of Usage": [ + "Leominster", + "San Jose" + ], + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "SCM - Technical Platform Pattern": "Others", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 9455, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "Leominster", + "San Jose" + ], + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Marti.Jarsey@infineon.com", + "Keyword Tags": { + "plain": "Faciliworks", + "translated": "

Faciliworks

" + }, + "SCM - Application Classification": "Minor", + "Development model": "Out-of-box modified", + "name": "IR FaciliWorks", + "position": 951, + "SCM - Next Review": "2022-02-28", + "Mission Criticality": "C - Medium", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 45545, + 79772 + ], + "technicalComponentAssociations": [ + 79221, + 79222 + ], + "projectAssociations": [ + 76762, + 84604 + ], + "businessMappings": [ + 34701, + 34700 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9505.json b/iteraplan/9505.json new file mode 100644 index 0000000..e88e287 --- /dev/null +++ b/iteraplan/9505.json @@ -0,0 +1,367 @@ +{ + "BusinessMapping": [ + { + "id": 34712, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34712 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "itService": [ + 13156 + ] + } + }, + { + "id": 34713, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34713 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "itService": [ + 13175 + ] + } + }, + { + "id": 34714, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34714 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "itService": [ + 16181 + ] + } + }, + { + "id": 36546, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.674Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 36546 + }, + "relations": { + "businessProcess": [ + 43782 + ], + "informationSystem": [ + 9505 + ] + } + }, + { + "id": 36619, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.674Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 36619 + }, + "relations": { + "businessProcess": [ + 43872 + ], + "informationSystem": [ + 9505 + ] + } + } + ], + "Tc2IflAssociation": [ + { + "id": 40097, + "properties": { + "lastModificationTime": "2022-09-15T22:07:05.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 40097 + }, + "relations": { + "informationFlow": [ + 17670 + ], + "technicalComponent": [ + 917 + ] + } + } + ], + "Ifl2Is1Association": [ + { + "id": 38012, + "properties": { + "lastModificationTime": "2023-08-31T07:49:39.799Z", + "lastModificationUser": "Thomas Giegold (giegold)", + "id": 38012 + }, + "relations": { + "informationSystem": [ + 9451 + ], + "informationFlow": [ + 17670 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 79773, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79773 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9505 + ] + } + }, + { + "id": 45547, + "properties": { + "lastModificationTime": "2023-01-25T22:55:12.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45547 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9505 + ] + } + } + ], + "InformationFlow": [ + { + "id": 17670, + "properties": { + "lastModificationTime": "2022-09-15T22:07:05.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "interfaceDirection": "FIRST_TO_SECOND", + "name": "OpenInsight -> FabTime ID#17670", + "description": { + "plain": "Interface used in MESA to copy MES data to Fab Time for production reports:\n\nLogi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report", + "translated": "

Interface used in MESA to copy MES data to Fab Time for production reports:

Logi Reports External, Internal Logi Reports, HADI Portal, Interactive FA reports, Quality report

" + }, + "id": 17670, + "position": 761, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "C - Medium" + }, + "relations": { + "informationSystem1Associations": [ + 38012 + ], + "technicalComponentAssociations": [ + 40097 + ], + "informationSystem2Associations": [ + 39312 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 33248, + "properties": { + "lastModificationTime": "2023-01-25T22:55:12.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 33248 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "technicalComponent": [ + 17028 + ] + } + }, + { + "id": 79129, + "properties": { + "lastModificationTime": "2023-07-03T13:07:44.000Z", + "lastModificationUser": "Michael Jakab (jakab)", + "id": 79129 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "technicalComponent": [ + 44213 + ] + } + }, + { + "id": 79131, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 79131 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "technicalComponent": [ + 17614 + ] + } + }, + { + "id": 28626, + "properties": { + "lastModificationTime": "2023-01-25T22:55:12.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 28626 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "technicalComponent": [ + 929 + ] + } + }, + { + "id": 79130, + "properties": { + "lastModificationTime": "2023-02-21T17:11:59.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79130 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "technicalComponent": [ + 52563 + ] + } + } + ], + "Ifl2Is2Association": [ + { + "id": 39312, + "properties": { + "lastModificationTime": "2023-01-25T22:55:12.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 39312 + }, + "relations": { + "informationSystem": [ + 9505 + ], + "informationFlow": [ + 17670 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9505, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "Contact IT Org": "FI", + "lastModificationTime": "2023-04-19T07:28:51.000Z", + "EVA Instances": { + "plain": "[[FabTime (MES)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000586793]]", + "translated": "

FabTime (MES)

" + }, + "FI - APM Comment": { + "plain": "(2016-02-10) Thomas G, Ashish: due to ASP classic only", + "translated": "

(2016-02-10) Thomas G, Ashish: due to ASP classic only

" + }, + "ES - URL of Web Application": "http://10.72.100.74/fabtime717", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "$$hierarchy_level$$": 1, + "ES - Contract Details": "88000 py (multi-site)", + "description": { + "plain": "Analytical software program – performs charting of Manufacturing performance, WIP tracking, lot dispatching, tool performance OEE.", + "translated": "

Analytical software program – performs charting of Manufacturing performance, WIP tracking, lot dispatching, tool performance OEE.

" + }, + "Application Owner": "Jonathan Ouellette (ouellette)", + "Location of Usage": [ + "Temecula", + "Mesa" + ], + "FI - DP Compliance Finish Date": "2023-01-01", + "IT Org": "FI SPS", + "FI - Technical Fitness": "Low", + "Personal Data Protection Class": "C", + "id": 9505, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "Mesa" + ], + "Location of Hosting": [ + "Mesa" + ], + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Jonathan.Ouellette@infineon.com", + "Keyword Tags": { + "plain": "IR", + "translated": "

IR

" + }, + "Development model": "Out-of-box standard", + "name": "FabTime", + "DataCenter Repository Link": { + "plain": "[[FabTime>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27FabTime%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

FabTime

" + }, + "position": 968, + "Mission Criticality": "A - Critical", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 45547, + 79773 + ], + "technicalComponentAssociations": [ + 79131, + 79130, + 33248, + 28626, + 79129 + ], + "informationFlow2Associations": [ + 39312 + ], + "businessMappings": [ + 34713, + 34714, + 34712, + 36546, + 36619 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9505.post b/iteraplan/9505.post new file mode 100644 index 0000000..32457fb --- /dev/null +++ b/iteraplan/9505.post @@ -0,0 +1,23 @@ +https://iteraplan.icp.infineon.com +/api/icd/partial/elements +# POST /api/icd/partial/elements HTTP/1.1 +# Accept: application/json, text/plain, */* +# Accept-Encoding: gzip, deflate, br +# Accept-Language: en-US,en;q=0.9 +# Connection: keep-alive +# Content-Length: 31 +# Content-Type: application/json +Cookie: IFX_user=Infineon; a750a2a8d1f52dbdd97b03527dc3b4d5=04c2a6fb7ffadb520a65d0a78c421ed4; XSRF-TOKEN=ea5eb18a-9850-4c9d-b5ec-7afbafd7cf39; JSESSIONID=72FE2EDD2C34B135F884DFDE852C81E4; mp_0b5f0fc48effdbb04bde91aa529859a1_mixpanel=%7B%22distinct_id%22%3A%20%22d%3Aacb3a8ee-31bd-4552-bf91-ce58efd0d6f8%22%2C%22%24device_id%22%3A%20%2218a518cf17967a-09d3ba9cd34456-7f5d547b-1fa400-18a518cf17ae47%22%2C%22%24initial_referrer%22%3A%20%22%24direct%22%2C%22%24initial_referring_domain%22%3A%20%22%24direct%22%2C%22%24user_id%22%3A%20%22d%3Aacb3a8ee-31bd-4552-bf91-ce58efd0d6f8%22%2C%22license%22%3A%20%22CN%3DInfineon%2CO%3DInfineon%2CL%3DKlagenfurt%2CC%3DAT%22%2C%22commit%22%3A%20%228de22e1ddb766c6fcf36766f5782d00618e43544%22%2C%22txtRelease%22%3A%20%2233.0.7%22%7D; amp_da9324=3LCSpvYONKpFNcF-iyrmby...1h998hn50.1h99ai1co.0.0.0; session=CaFWMel8zeSIfGajyLBCwQ|1693614080|Dt3TrrT4ofi2GpB2hupevnOG2XwiO4-R0CWJaeRDHQolbGHIBCxk5thuCK74z2c5kyarFAfXSGoBBhRsVtQis2F-Y4CKe31mqkGVzTcLkX6BbByLXyBGN3MzoL8qjtgm2tmF_zhxIw1j4v8frx7mcQUjgzCoyPzvKVgYHKmezTDcHNKMuX3vE2k4VUARGJrsPIBzRxGWvJsFQVT_IurmhHp4rNvQg3sVA0u50ZqEs-14yOfhwtZ0uStJMNsA3bR6vFX9wMCTkoZapOmk8X4Nv5Hzg1NrDkM6IvOlBtuSE3Kek423JIh9WwHuOb86gX1YJYzfgZw2VvVipFCFDeS6umdYKDoJUTRKYibSqWL4RW0AUL8Cn4xV6NXzKvMcKnCY9eqECvTNqLkHiRTHuzUMFawOALcc2ALOPq5DEVu_XRJX8uANt_VwwgHvNAOF-0gs0tfTQ9D0H7dT3FBiwXaPXTajVzE8Ie7kamxq8nUHgax9ghCP015BuXg5qPzjjKha0Dh1PAWh8LB5Xz9yfH54RcUZpCwUsu6Z-Ar0o1lep2dP_xXJEQyP4xIRh1xwDDwldvongjpI3oNHVWL41k7p6XaozFZkxKnBpueEpqIXfLOkzd1vrpSkzblY1db0KIMIx8KWe2g_JNCJ3sUXR203vAFCssnr1kxbeLxgRAWFeLUBZbYMLmoQyKUF7k4DPVWz-esCmzKcU8xWGp3O8WniCuzHSKELryXKrJQAj4D0ErtSw-uV5iSODJHL5uZEM088D3Dusq78d9Gw6UUeju__WT4ycSTQ-g2XrJA_loSUURmpJewOgjMJZAM4pVDqbJxS|05CYU3SzgoqqkHrXsFuuPN5rqCg +Host: iteraplan.icp.infineon.com +Origin: https://iteraplan.icp.infineon.com +Referer: https://iteraplan.icp.infineon.com/client/ +# Sec-Fetch-Dest: empty +# Sec-Fetch-Mode: cors +# Sec-Fetch-Site: same-origin +User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36 Edg/116.0.1938.62 +X-XSRF-TOKEN: ea5eb18a-9850-4c9d-b5ec-7afbafd7cf39 +etag: "1693609235548" +# sec-ch-ua: "Chromium";v="116", "Not)A;Brand";v="24", "Microsoft Edge";v="116" +# sec-ch-ua-mobile: ?1 +# sec-ch-ua-platform: "Android" +{"InformationSystem":["9505"]} \ No newline at end of file diff --git a/iteraplan/9581.json b/iteraplan/9581.json new file mode 100644 index 0000000..15b7cfb --- /dev/null +++ b/iteraplan/9581.json @@ -0,0 +1,298 @@ +{ + "BusinessMapping": [ + { + "id": 36216, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.671Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 36216 + }, + "relations": { + "businessProcess": [ + 40810 + ], + "informationSystem": [ + 9581 + ] + } + }, + { + "id": 34725, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34725 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "itService": [ + 13136 + ] + } + }, + { + "id": 34726, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34726 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "itService": [ + 13150 + ] + } + }, + { + "id": 34727, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34727 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "itService": [ + 13218 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 45548, + "properties": { + "lastModificationTime": "2023-01-25T23:12:11.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45548 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9581 + ] + } + }, + { + "id": 79774, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79774 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9581 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79137, + "properties": { + "lastModificationTime": "2023-02-21T17:18:10.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79137 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "technicalComponent": [ + 52563 + ] + } + }, + { + "id": 79136, + "properties": { + "lastModificationTime": "2023-02-21T17:18:01.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79136 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "technicalComponent": [ + 52947 + ] + } + }, + { + "id": 79138, + "properties": { + "lastModificationTime": "2023-02-21T17:18:18.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79138 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "technicalComponent": [ + 44975 + ] + } + }, + { + "id": 80386, + "properties": { + "lastModificationTime": "2023-07-03T13:07:44.000Z", + "lastModificationUser": "Michael Jakab (jakab)", + "id": 80386 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "technicalComponent": [ + 44213 + ] + } + }, + { + "id": 27660, + "properties": { + "lastModificationTime": "2023-01-25T23:12:11.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 27660 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "technicalComponent": [ + 801 + ] + } + }, + { + "id": 79135, + "properties": { + "lastModificationTime": "2023-02-21T17:17:53.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79135 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "technicalComponent": [ + 16396 + ] + } + }, + { + "id": 30303, + "properties": { + "lastModificationTime": "2023-01-25T23:12:11.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 30303 + }, + "relations": { + "informationSystem": [ + 9581 + ], + "technicalComponent": [ + 6071 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9581, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "No", + "Contact IT Org": "FI", + "lastModificationTime": "2023-04-19T07:28:57.000Z", + "EVA Instances": { + "plain": "[[SQDS (NA-QM)>>http://goto.infineon.com/EVA/Home/Index/CMDB50000603098]]", + "translated": "

SQDS (NA-QM)

" + }, + "FI - APM Comment": { + "plain": "2016-02-16 (Thomas G., Ashish): only TF Medium because we don't know the Overall architecture, however the used technology is up to date\n2016-01-26 (Thomas G.): changed TF to Low due to IE 7 and .NET 4.0, which is out of support", + "translated": "

2016-02-16 (Thomas G., Ashish): only TF Medium because we don't know the Overall architecture, however the used technology is up to date
2016-01-26 (Thomas G.): changed TF to Low due to IE 7 and .NET 4.0, which is out of support

" + }, + "ES - URL of Web Application": "http://sqds.irf.com/", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Short Description: Site Quality Database System (non-Productive / Archive only)\n\nIt is a corrective action system used to raise corrective actions based on reliability systems and/or internal sites. It is a web application with central database in Temecula. Corrective action follows the 8D methodology and is also used for customer returns (Return for device analysis), internal issues (local sites) and also related to NPI.\nPurpose: Management of corrective actions\n- RDA that require corrective action\n- Customer RDA and issuance of 8D, CA or D0\n- Reliability RDA’s issued for Reliability failures related to NPI or Product Reliability Integrity Tests (PRIT)\n- Internal audit CA for Corporate Audits and Internal Audits\n- CA between operational sites for yield or delivery issues\n- Internal Operational site CA for yield or delivery issues", + "translated": "

Short Description: Site Quality Database System (non-Productive / Archive only)

It is a corrective action system used to raise corrective actions based on reliability systems and/or internal sites. It is a web application with central database in Temecula. Corrective action follows the 8D methodology and is also used for customer returns (Return for device analysis), internal issues (local sites) and also related to NPI.
Purpose: Management of corrective actions
- RDA that require corrective action
- Customer RDA and issuance of 8D, CA or D0
- Reliability RDA’s issued for Reliability failures related to NPI or Product Reliability Integrity Tests (PRIT)
- Internal audit CA for Corporate Audits and Internal Audits
- CA between operational sites for yield or delivery issues
- Internal Operational site CA for yield or delivery issues

" + }, + "Application Owner": "Jonathan Ouellette (ouellette)", + "Location of Usage": [ + "Mesa" + ], + "FI - DP Compliance Finish Date": "2023-01-20", + "IT Org": "FI SPS", + "ES - Operation Model": "Extern", + "FI - Technical Fitness": "Low", + "Personal Data Protection Class": "C", + "id": 9581, + "Roadmap Ranking": "Non-Target", + "Location of Instances": [ + "North America" + ], + "Location of Hosting": [ + "El Segundo", + "Mesa" + ], + "Productive period": "2009-01-30;2030-10-30", + "FI - APM Status": "Done", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Jonathan.Ouellette@infineon.com", + "Development model": "Custom development", + "Hosting Type": [ + "intern (Intranet)" + ], + "name": "SQDS", + "DataCenter Repository Link": { + "plain": "[[SQDS>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27SQDS%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

SQDS

" + }, + "position": 995, + "Mission Criticality": "C - Medium", + "Business Application Owner": "Chris Sousa", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 79774, + 45548 + ], + "technicalComponentAssociations": [ + 79136, + 30303, + 79135, + 79138, + 27660, + 80386, + 79137 + ], + "businessMappings": [ + 34725, + 36216, + 34726, + 34727 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9637.json b/iteraplan/9637.json new file mode 100644 index 0000000..ef701b0 --- /dev/null +++ b/iteraplan/9637.json @@ -0,0 +1,198 @@ +{ + "BusinessMapping": [ + { + "id": 34734, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34734 + }, + "relations": { + "informationSystem": [ + 9637 + ], + "itService": [ + 13159 + ] + } + }, + { + "id": 34735, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.592Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 34735 + }, + "relations": { + "informationSystem": [ + 9637 + ], + "itService": [ + 26983 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 45549, + "properties": { + "lastModificationTime": "2021-09-30T01:28:30.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45549 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9637 + ] + } + }, + { + "id": 79775, + "properties": { + "lastModificationTime": "2023-04-14T13:57:29.000Z", + "lastModificationUser": "Rainer Helmut Glas (glas)", + "id": 79775 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9637 + ] + } + } + ], + "Is2ProjAssociation": [ + { + "id": 84608, + "properties": { + "lastModificationTime": "2023-07-12T21:14:23.000Z", + "lastModificationUser": "Harald Ratusny (ratusny)", + "id": 84608 + }, + "relations": { + "informationSystem": [ + 9637 + ], + "project": [ + 83654 + ] + } + }, + { + "id": 76792, + "properties": { + "lastModificationTime": "2023-01-12T14:14:24.000Z", + "lastModificationUser": "Burkhard Wolf (wolfburk)", + "id": 76792 + }, + "relations": { + "informationSystem": [ + 9637 + ], + "project": [ + 76497 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79072, + "properties": { + "lastModificationTime": "2023-07-05T06:23:48.000Z", + "lastModificationUser": "Mathias Rueck (rueckmat)", + "id": 79072 + }, + "relations": { + "informationSystem": [ + 9637 + ], + "technicalComponent": [ + 17614 + ] + } + }, + { + "id": 79071, + "properties": { + "lastModificationTime": "2023-02-16T21:12:45.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79071 + }, + "relations": { + "informationSystem": [ + 9637 + ], + "technicalComponent": [ + 52563 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9637, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "lastModificationTime": "2021-09-30T01:28:29.000Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "HiRel document control system used in Leominster and San Jose. ", + "translated": "

HiRel document control system used in Leominster and San Jose.  

" + }, + "Application Owner": "Martha Jarsey (mjarsey1)", + "Location of Usage": [ + "Leominster", + "San Jose" + ], + "FI - DP Compliance Finish Date": "2021-09-30", + "IT Org": "FI SPS", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Marti.Jarsey@infineon.com", + "Keyword Tags": { + "plain": "powerway, waypoint", + "translated": "

powerway, waypoint

" + }, + "FI - Technical Fitness": "Medium", + "Development model": "Out-of-box standard", + "name": "IR PowerWay", + "Personal Data Protection Class": "C", + "id": 9637, + "position": 1010, + "Roadmap Ranking": "Non-Target", + "Mission Criticality": "A - Critical", + "Location of Instances": [ + "Leominster", + "San Jose" + ], + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 45549, + 79775 + ], + "technicalComponentAssociations": [ + 79071, + 79072 + ], + "projectAssociations": [ + 84608, + 76792 + ], + "businessMappings": [ + 34735, + 34734 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/9892.json b/iteraplan/9892.json new file mode 100644 index 0000000..320f6cb --- /dev/null +++ b/iteraplan/9892.json @@ -0,0 +1,230 @@ +{ + "BusinessMapping": [ + { + "id": 48201, + "properties": { + "lastModificationTime": "2023-08-31T07:27:13.668Z", + "lastModificationUser": "MUCITERAPLANADM MUCITERAPLANADM (MUCITERAPLANADM)", + "id": 48201 + }, + "relations": { + "businessProcess": [ + 43926 + ], + "informationSystem": [ + 9892 + ] + } + }, + { + "id": 84060, + "properties": { + "lastModificationTime": "2023-08-29T14:32:44.593Z", + "lastModificationUser": "Dmitry Kerbelev (kerbelev)", + "id": 84060 + }, + "relations": { + "informationSystem": [ + 9892 + ], + "itService": [ + 13150 + ] + } + } + ], + "Is2IsdAssociation": [ + { + "id": 79776, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.594Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79776 + }, + "relations": { + "informationSystemDomain": [ + 79464 + ], + "informationSystem": [ + 9892 + ] + } + }, + { + "id": 45550, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.594Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 45550 + }, + "relations": { + "informationSystemDomain": [ + 45125 + ], + "informationSystem": [ + 9892 + ] + } + } + ], + "Is2TcAssociation": [ + { + "id": 79128, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.614Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79128 + }, + "relations": { + "informationSystem": [ + 9892 + ], + "technicalComponent": [ + 17614 + ] + } + }, + { + "id": 80384, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.614Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 80384 + }, + "relations": { + "informationSystem": [ + 9892 + ], + "technicalComponent": [ + 44213 + ] + } + }, + { + "id": 30306, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.614Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 30306 + }, + "relations": { + "informationSystem": [ + 9892 + ], + "technicalComponent": [ + 6071 + ] + } + }, + { + "id": 27661, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.614Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 27661 + }, + "relations": { + "informationSystem": [ + 9892 + ], + "technicalComponent": [ + 801 + ] + } + }, + { + "id": 79127, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.614Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79127 + }, + "relations": { + "informationSystem": [ + 9892 + ], + "technicalComponent": [ + 52563 + ] + } + }, + { + "id": 79126, + "properties": { + "lastModificationTime": "2023-08-03T17:19:18.614Z", + "lastModificationUser": "Martha Jarsey (mjarsey1)", + "id": 79126 + }, + "relations": { + "informationSystem": [ + 9892 + ], + "technicalComponent": [ + 52560 + ] + } + } + ], + "InformationSystem": [ + { + "id": 9892, + "properties": { + "Application Type": "Business application", + "Export Control Classification": "Yes", + "Contact IT Org": "Non-IT", + "lastModificationTime": "2023-08-03T18:00:37.785Z", + "FI - APM Comment": { + "plain": "2016-02-16 (Thomas G., Ashish): TF is only Medium, because we can't judge the Overall architetcure, the used technology is up-to-date", + "translated": "

2016-02-16 (Thomas G., Ashish): TF is only Medium, because we can't judge the Overall architetcure, the used technology is up-to-date

" + }, + "ES - URL of Web Application": "http://temapprovalsystem.irf.com", + "lastModificationUser": "Plugin API (PluginAPI)", + "$$hierarchy_level$$": 1, + "description": { + "plain": "Notice >>>> Mesa EPI <<<< Workflow Approval System for various Engineering documents\nITAR Controlled Application", + "translated": "

Notice  >>>> Mesa EPI <<<< Workflow Approval System for various Engineering documents
ITAR Controlled Application

" + }, + "Application Owner": "Chase Tucker (tuckerc)", + "ES - Vendor": "IR", + "FI - DP Compliance Finish Date": "2022-12-30", + "IT Org": "FI SPS", + "FI - Technical Fitness": "Medium", + "Personal Data Protection Class": "C", + "id": 9892, + "Roadmap Ranking": "Non-Target", + "Productive period": "2021-04-01;", + "FI - DP Compliance Status": "Completed", + "Application Owner Email": "Chase.Tucker@infineon.com", + "Development model": "Custom development", + "name": "Fab Approval System", + "DataCenter Repository Link": { + "plain": "[[Fab Approval System>>http://goto.infineon.com/DCR?Site=DataView&TableName=ITOSDC%5FInventory%5FCMDBEnterpriseVerifiedApplications&ColumnName_00=KindOfDependency&ColumnValue_00=%28%27direct%27%29&ColumnName_01=Status&ColumnValue_01=%28%27Deployed%27%29&ColumnName_02=Infrastructure%2EStatus&ColumnValue_02=%28%27Deployed%27%29&ColumnName_04=Product%5FName&ColumnValue_04=%28%27Fab+Approval+System%27%29&ChkCol=2-4-5-7-8-9-11-16-24-26-27-29-30-32-41-42-43-44&Distinct=Yes&Top=All]]", + "translated": "

Fab Approval System

" + }, + "FI - IRMA Group": "FI SPS", + "position": 1066, + "Mission Criticality": "C - Medium", + "Business Application Owner": "Jonathan Ouellette", + "Internal Control System (SOX / BilMoG)": "No" + }, + "relations": { + "informationSystemDomainAssociations": [ + 79776, + 45550 + ], + "technicalComponentAssociations": [ + 79128, + 80384, + 79127, + 30306, + 79126, + 27661 + ], + "businessMappings": [ + 48201, + 84060 + ] + } + } + ] + } \ No newline at end of file diff --git a/iteraplan/apc-trend.md b/iteraplan/apc-trend.md new file mode 100644 index 0000000..5fc7f07 --- /dev/null +++ b/iteraplan/apc-trend.md @@ -0,0 +1,23 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.356Z" +updated: "2023-09-25T16:09:52.357Z" +--- + +# APC Trend + +- [x] [APC Trend](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/4449) + +## Service Portfolio Manager + +- [x] [APC Trend](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/4471) + +## EVA Instances(s) + +- [x] [APC Trend (MES-OP FE)](../eva/apc-trend-mes-op-fe.md) +- [x] [APC Trend (MES-OP FE) - STAGE](../eva/apc-trend-mes-op-fe-stage.md) +- [x] [APC Trend (MES-OP FE) - DEV](../eva/apc-trend-mes-op-fe-dev.md) + +## Repository(ies) + +- [x] [APC-Viewer](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/APC-Viewer) diff --git a/iteraplan/camstar-be.md b/iteraplan/camstar-be.md new file mode 100644 index 0000000..10fafdc --- /dev/null +++ b/iteraplan/camstar-be.md @@ -0,0 +1,20 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.358Z" +updated: "2023-09-25T16:09:52.358Z" +assigned: "" +--- + +# Camstar BE + +- [x] [Camstar BE](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/4582) + +## Service Portfolio Manager + +- [x] [Camstar BE](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/5389) + +## EVA Instances(s) + +- [x] [Camstar BE (LEO) - TEST](../eva/camstar-be-leo-test.md) + +## Repository(ies) diff --git a/iteraplan/ea-data-framework.md b/iteraplan/ea-data-framework.md new file mode 100644 index 0000000..9ad53ea --- /dev/null +++ b/iteraplan/ea-data-framework.md @@ -0,0 +1,23 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.359Z" +updated: "2023-09-25T16:09:52.359Z" +--- + +# EA Data Framework + +- [x] [EDA Mesa Integration](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/72966) + +## Service Portfolio Manager + +- [x] [EDA Mesa Integration](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8690) + +## EVA Instances(s) + +- [x] [EA Data Framework (MES-OP FE)](../eva/ea-data-framework-mes-op-fe.md) +- [x] [EA Data Framework (MES-OP FE) - STAGE](../eva/ea-data-framework-mes-op-fe-stage.md) +- [x] [EA Data Framework (MES-OP FE) - TEST](../eva/ea-data-framework-mes-op-fe-test.md) + +## Repository(ies) + +- [x] [EDA-Viewer](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EDA-Viewer) diff --git a/iteraplan/eaf.md b/iteraplan/eaf.md new file mode 100644 index 0000000..490072c --- /dev/null +++ b/iteraplan/eaf.md @@ -0,0 +1,76 @@ +--- +type: "iteraplan" +created: "2023-10-28T18:00:27.346Z" +updated: "2023-10-28T18:00:27.346Z" +--- + +# EAF + +- [x] [EAF Mesa Integration](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/63775) + +## Service Portfolio Manager + +-[ ] [EAF Mesa Integration](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8587) + +## EVA Instances(s) + +- [x] [EAF (MES-OP FE)](../eva/eaf-mes-op-fe.md) +- [x] [EAF (MES-OP FE) - STAGE](../eva/eaf-mes-op-fe-stage.md) +- [x] [EAF (MES-OP FE) - DEV](../eva/eaf-mes-op-fe-dev.md) +- [x] [EAF GaN (MES-OP FE)](../eva/eaf-ga-n-mes-op-fe.md) +- [x] [EAF GaN (MES-OP FE) - STAGE](../eva/eaf-ga-n-mes-op-fe-stage.md) + +## Delete Repository(ies) + +- [x] [Centered-Content-Angular](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Centered-Content-Angular) +- [x] [Tool-Setpoint-Calculator](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Tool-Setpoint-Calculator) +- [x] [Barcode-Server](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Server) +- [x] [Mesa-Backlog](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Backlog) + +## Dependency Repository(ies) + +- [x] [BaGet](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/BaGet) +- [x] [Barcode-Host](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Barcode-Host) +- [x] [Clipboard-Console](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Clipboard-Console) +- [x] [EAF-Viewer](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EAF-Viewer) +- [x] [EC](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/EC) +- [x] [Expose-MyIT](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Expose-MyIT) +- [x] [File-Folder-Helper](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/File-Folder-Helper) +- [x] [gittest](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/gittest) +- [x] [Intra-Client](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Intra-Client) +- [x] [Mesa-Goto](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Mesa-Goto) +- [x] [NGINdeX.io](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/NGINdeX.io) +- [x] [NGINX-Conf](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/NGINX-Conf) +- [x] [PDF-Text-Stripper](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/PDF-Text-Stripper) +- [x] [Scan-Simulation](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Scan-Simulation) +- [x] [VSCode-Kanbn](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/VSCode-Kanbn)- [x] [FI-Operations](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/FI-Operations) + +## Repository(ies) + +- [x] [DEP08EGANAIXG5](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08EGANAIXG5) +- [x] [DEP08SIASM](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIASM) +- [x] [DEP08SIHTRPLC](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/DEP08SIHTRPLC) +- [x] [MESAFIBACKLOG](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MESAFIBACKLOG) +- [x] [MET08AFMD3100](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08AFMD3100) +- [x] [MET08ANLYSDIFAAST230](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08ANLYSDIFAAST230) +- [x] [MET08BVHGPROBE](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08BVHGPROBE) +- [x] [MET08CVHGPROBE802B150](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08CVHGPROBE802B150) +- [x] [MET08DDINCAN8620](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDINCAN8620) +- [x] [MET08DDUPSFS6420](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSFS6420) +- [x] [MET08DDUPSP1TBI](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08DDUPSP1TBI) +- [x] [MET08EBEAMINTEGRITY26](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08EBEAMINTEGRITY26) +- [x] [MET08HALLHL5580](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08HALLHL5580) +- [x] [MET08MESMICROSCOPE](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08MESMICROSCOPE) +- [x] [MET08NDFRESIMAP151C](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08NDFRESIMAP151C) +- [x] [MET08PLMAPRPM](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMAPRPM) +- [x] [MET08PLMPPLATO](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PLMPPLATO) +- [x] [MET08PRFUSB4000](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08PRFUSB4000) +- [x] [MET08RESIHGCV](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIHGCV) +- [x] [MET08RESIMAPCDE](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESIMAPCDE) +- [x] [MET08RESISRP2100](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08RESISRP2100) +- [x] [MET08THFTIRQS408M](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRQS408M) +- [x] [MET08THFTIRSTRATUS](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08THFTIRSTRATUS) +- [x] [MET08UVH44GS100M](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08UVH44GS100M) +- [x] [MET08VPDSUBCON](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08VPDSUBCON) +- [x] [MET08WGEOMX203641Q](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08WGEOMX203641Q) +- [x] [MET08XRDXPERTPROMRDXL](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MET08XRDXPERTPROMRDXL) diff --git a/iteraplan/fab-approval-system.md b/iteraplan/fab-approval-system.md new file mode 100644 index 0000000..7069963 --- /dev/null +++ b/iteraplan/fab-approval-system.md @@ -0,0 +1,25 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.362Z" +updated: "2023-09-25T16:09:52.362Z" +assigned: "" +--- + +# Fab Approval System + +- [x] [Fab Approval System](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/9892) + +## Service Portfolio Manager + +- [x] [Fab Approval System](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/5955) + +## EVA Instances(s) + +- [ ] Fab Approval System + +## Repository(ies) + +- [x] [Fab-2-Approval-System](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Fab-2-Approval-System) +- [x] [MesaFabApproval](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MesaFabApproval) +- [x] [FabApprovalJobSchedulerUI](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/FabApprovalJobSchedulerUI) +- [x] [OldFabApprovalJobScheduler](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OldFabApprovalJobScheduler) diff --git a/iteraplan/fab-time.md b/iteraplan/fab-time.md new file mode 100644 index 0000000..42bea99 --- /dev/null +++ b/iteraplan/fab-time.md @@ -0,0 +1,20 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.364Z" +updated: "2023-09-25T16:09:52.364Z" +assigned: "" +--- + +# FabTime + +- [x] [FabTime](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/9505) + +## Service Portfolio Manager + +- [x] [FabTime](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/5962) + +## EVA Instances(s) + +- [x] [FabTime (MES-OP FE)](../eva/fab-time-mes-op-fe.md) + +## Repository(ies) diff --git a/iteraplan/ha-remote-daemon.md b/iteraplan/ha-remote-daemon.md new file mode 100644 index 0000000..34497c8 --- /dev/null +++ b/iteraplan/ha-remote-daemon.md @@ -0,0 +1,22 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.366Z" +updated: "2023-09-25T16:09:52.367Z" +assigned: "" +--- + +# HA Remote Daemon + +- [x] [HA Remote Daemon](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/15598) + +## Service Portfolio Manager + +- [x] [Message Bus Platform](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/5936) + +## EVA Instances(s) + +- [x] [HA Remote Daemon (MES)](../eva/ha-remote-daemon-mes.md) +- [x] [HA Remote Daemon (MES) - STAGE](../eva/ha-remote-daemon-mes-stage.md) +- [x] [HA Remote Daemon (MES) - DEV](../eva/ha-remote-daemon-mes-dev.md) + +## Repository(ies) diff --git a/iteraplan/infinity-qs.md b/iteraplan/infinity-qs.md new file mode 100644 index 0000000..b910f26 --- /dev/null +++ b/iteraplan/infinity-qs.md @@ -0,0 +1,20 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.368Z" +updated: "2023-09-25T16:09:52.368Z" +--- + +# InfinityQS + +- [x] [InfinityQS](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/10325) + +## Service Portfolio Manager + +- [x] [InfinityQS](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8103) + +## EVA Instances(s) + +- [x] [InfinityQS Si (MES-OP FE)](../eva/infinity-qs-si-mes-op-fe.md) +- [x] [InfinityQS GaN (MES-OP FE)](../eva/infinity-qs-ga-n-mes-op-fe.md) + +## Repository(ies) diff --git a/iteraplan/ir-power-way.md b/iteraplan/ir-power-way.md new file mode 100644 index 0000000..4187dfb --- /dev/null +++ b/iteraplan/ir-power-way.md @@ -0,0 +1,20 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.370Z" +updated: "2023-09-25T16:09:52.370Z" +assigned: "" +--- + +# IR PowerWay + +- [x] [IR PowerWay](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/9637) + +## Service Portfolio Manager + +- [x] [Waypoint](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8137) + +## EVA Instances(s) + +- [ ] Waypoint + +## Repository(ies) diff --git a/iteraplan/ir-xfracas.md b/iteraplan/ir-xfracas.md new file mode 100644 index 0000000..36bbf31 --- /dev/null +++ b/iteraplan/ir-xfracas.md @@ -0,0 +1,20 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.371Z" +updated: "2023-09-25T16:09:52.371Z" +assigned: "" +--- + +# IR Xfracas + +- [x] [IR Xfracas](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/9405) + +## Service Portfolio Manager + +- [x] [Xfracas](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8124) + +## EVA Instances(s) + +- [ ] Xfracas + +## Repository(ies) diff --git a/iteraplan/mesa-reporting-service.md b/iteraplan/mesa-reporting-service.md new file mode 100644 index 0000000..15573b1 --- /dev/null +++ b/iteraplan/mesa-reporting-service.md @@ -0,0 +1,25 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.373Z" +updated: "2023-09-25T16:09:52.373Z" +assigned: "" +--- + +# Mesa Reporting Service + +- [x] [Mesa Reporting Service](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/80575) + +## Service Portfolio Manager + +- [x] [Mesa Reporting Service](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8816) + +## EVA Instances(s) + +- [ ] Mesa Reporting Service + +## Repository(ies) + +- [x] [MesaReportingServices](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MesaReportingServices) +- [x] [Form_0311](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Form_0311) +- [x] [SSRReport](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/SSRReport) +- [x] [RDS_Info](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/RDS_Info) diff --git a/iteraplan/open-insight-metrology-viewer.md b/iteraplan/open-insight-metrology-viewer.md new file mode 100644 index 0000000..946e754 --- /dev/null +++ b/iteraplan/open-insight-metrology-viewer.md @@ -0,0 +1,21 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.375Z" +updated: "2023-09-25T16:09:52.375Z" +--- + +# OpenInsight Metrology Viewer + +- [x] [OpenInsight Metrology Viewer](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/51928) + +## Service Portfolio Manager + +- [x] [OpenInsight Metrology Viewer](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8244) + +## EVA Instances(s) + +- [x] [OpenInsight Metrology Viewer (NA-OP FE)](../eva/open-insight-metrology-viewer-na-op-fe.md) + +## Repository(ies) + +- [x] [OI-Metrology](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI-Metrology) diff --git a/iteraplan/open-insight-web-services.md b/iteraplan/open-insight-web-services.md new file mode 100644 index 0000000..efc83e3 --- /dev/null +++ b/iteraplan/open-insight-web-services.md @@ -0,0 +1,22 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.377Z" +updated: "2023-09-25T16:09:52.377Z" +--- + +# OpenInsight Web Services + +- [x] [OpenInsight Web Services](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/5660) + +## Service Portfolio Manager + +- [ ] OpenInsight Web Services + +## EVA Instances(s) + +- [ ] OpenInsight Web Services + +## Repository(ies) + +- [x] [OI-Wizard](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI-Wizard) +- [x] [OI%20Barcode](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OI%20Barcode) diff --git a/iteraplan/open-insight.md b/iteraplan/open-insight.md new file mode 100644 index 0000000..5b178bb --- /dev/null +++ b/iteraplan/open-insight.md @@ -0,0 +1,26 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.378Z" +updated: "2023-09-25T16:09:52.379Z" +assigned: "" +--- + +# OpenInsight + +- [x] [OpenInsight](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/9451) + +## Service Portfolio Manager + +- [x] [OpenInsight](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8106) + +## EVA Instances(s) + +- [x] [OpenInsight (MES-OP FE)](../eva/open-insight-mes-op-fe.md) +- [x] [OpenInsight (MES-OP FE) - DEV](../eva/open-insight-mes-op-fe-dev.md) + +## Repository(ies) + +- [x] [MonALibrary](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/MonALibrary) +- [x] [OpenInsight](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight) +- [x] [OpenInsight%20Monitoring](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/OpenInsight%20Monitoring) +- [x] [Web-Barcode-Scanner](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Web-Barcode-Scanner) diff --git a/iteraplan/serial-log.md b/iteraplan/serial-log.md new file mode 100644 index 0000000..cf0346f --- /dev/null +++ b/iteraplan/serial-log.md @@ -0,0 +1,22 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.380Z" +updated: "2023-09-25T16:09:52.380Z" +assigned: "" +--- + +# SerialLog + +- [x] [SerialLog](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/26866) + +## Service Portfolio Manager + +- [x] [SerialLog](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8136) + +## EVA Instances(s) + +- [ ] SerialLog + +## Repository(ies) + +- [x] [Leominster-Serial-Log-Framework-461](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/Leominster-Serial-Log-Framework-461) diff --git a/iteraplan/site-quality-database-system.md b/iteraplan/site-quality-database-system.md new file mode 100644 index 0000000..d2ce97a --- /dev/null +++ b/iteraplan/site-quality-database-system.md @@ -0,0 +1,23 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.382Z" +updated: "2023-09-25T16:09:52.382Z" +assigned: "" +--- + +# Site Quality Database System + +- [x] [SQDS](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/9581) + +## Service Portfolio Manager + +- [x] [SQDS](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/5960) + +## EVA Instances(s) + +- [ ] Site Quality Database System + +## Repository(ies) + +- [x] [SQDS](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/SQDS) + diff --git a/iteraplan/yield-hub-na.md b/iteraplan/yield-hub-na.md new file mode 100644 index 0000000..2e8fa3e --- /dev/null +++ b/iteraplan/yield-hub-na.md @@ -0,0 +1,20 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.384Z" +updated: "2023-09-25T16:09:52.384Z" +assigned: "" +--- + +# YieldHUB (NA) + +- [x] [YieldHUB](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/9401) + +## Service Portfolio Manager + +- [x] [YieldHUB](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/8129) + +## EVA Instances(s) + +- [x] [YieldHUB (NA)](yield-hub-na.md) + +## Repository(ies) diff --git a/iteraplan/yoda.md b/iteraplan/yoda.md new file mode 100644 index 0000000..f5cdf15 --- /dev/null +++ b/iteraplan/yoda.md @@ -0,0 +1,27 @@ +--- +type: "iteraplan" +created: "2023-09-25T16:09:52.386Z" +updated: "2023-09-25T16:09:52.386Z" +--- + +# YODA + +- [x] [YODA](https://iteraplan.icp.infineon.com/client/#/single/InformationSystem/5660) + +## Service Portfolio Manager + +- [x] [YODA](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/5132) +- [x] [Tibco RV](https://webnetprod.muc.infineon.com/ServicePortfolioManager/ServiceProduct/Details/5070) + +## EVA Instances(s) + +- [x] [YODA (MES)](../eva/yoda-mes.md) +- [x] [HA Remote Daemon (MES)](../eva/ha-remote-daemon-mes.md) +- [x] [YODA (MES-OP FE) - STAGE](../eva/yoda-mes-op-fe-stage.md) +- [x] [HA Remote Daemon (MES) - STAGE](../eva/ha-remote-daemon-mes-stage.md) +- [x] [YODA (MES-OP FE) - DEV](../eva/yoda-mes-op-fe-dev.md) +- [x] [HA Remote Daemon (MES) - DEV](../eva/ha-remote-daemon-mes-dev.md) + +## Repository(ies) + +- [x] [YODA-Viewer](https://tfs.intra.infineon.com/tfs/ManufacturingIT/Mesa_FI/_git/YODA-Viewer) diff --git a/mydcassets/ouellette.md b/mydcassets/ouellette.md new file mode 100644 index 0000000..8547194 --- /dev/null +++ b/mydcassets/ouellette.md @@ -0,0 +1,54 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.987Z" +updated: "2024-03-05T01:23:56.987Z" +--- +```conf +# https://self-service-cockpit.icp.infineon.com/mydcassets +Self Service Cockpit +AvatarJonathan Ouellette +My DC Assets +view data of your legally managed users: +Summary: +1 +25 +type +name +description +owner +substitute +location +monthly cost unit +security +action +Select... +ICP Namespace open-insight-metrology-viewer Playground project for OpenInsight Metrology Viewer NA-US-1 0.000.00 % +Windows Server MESSA004 Mesa Fabtime App server -- -- NA/Mesa +Windows Server MESSA005 Open Insight IFX APP Server -- -- NA/Mesa +Windows Server MESSA010 IFX Web Server - SQDS -- -- NA/Mesa +Windows Server MESSA011EC EAF GaN Runtime Agent Server - Prod -- -- NA/Mesa +Windows Server MESSA013 RDS Profile Share -- -- NA/Mesa +Windows Server MESSA014 OI Mobile Scanner -- -- NA/Mesa +Windows Server MESSA015 New OpenInsight PROD -- -- NA/Mesa +Windows Server MESSA016 New OpenInsight Dev -- -- NA/Mesa +Windows Server MESSA018 OpenInsight Web Service -- -- NA/Mesa +Windows Server MESSA018EC EC Tableau Prod -- -- NA/Mesa +Windows Server MESSA019EC New OpenInsight Prod DB -- -- NA/Mesa +Windows Server MESSA01EC OpenInsight EC Prod DB -- -- NA/Mesa +Windows Server MESSA020EC Openinsight EC API -- -- NA/Mesa +Windows Server MESSA05EC EC Utility server - Francois Rivard -- -- NA/Mesa +Windows Server MESSA06EC Catalyst (si) App server - Francois Rivard -- -- NA/Mesa +Windows Server MESSA08EC EAF Application Server - Prod - Francois Rivard -- -- NA/Mesa +Windows Server MESSA09EC EAF Prod App Server 02 - Francois Rivard -- -- NA/Mesa +Windows Server MESTSA007 IFX Web Server - SQDS (Dev) -- -- NA/Mesa +Windows Server MESTSA008 OpenInsight API Dev -- -- NA/Mesa +Windows Server MESTSA009 OpenInsight Stealth Test - not ec -- -- NA/Mesa +Windows Server MESTSA01EC OpenInisght Dev -- -- NA/Mesa +Windows Server MESTSA04EC EC Tableau Dev -- -- NA/Mesa +Windows Server MESTSA05EC EC Fab Approval Dev -- -- NA/Mesa +Windows Server MESTSA06EC SPC Dev -- -- NA/Mesa +Windows Server MESTSA08EC New OpenInsight Dev DB -- -- NA/Mesa +1 - 26 of 26 items +100 +items per page +``` diff --git a/mydcassets/phares.md b/mydcassets/phares.md new file mode 100644 index 0000000..1a3f8a7 --- /dev/null +++ b/mydcassets/phares.md @@ -0,0 +1,52 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.988Z" +updated: "2024-03-05T01:23:56.988Z" +--- +```conf +# https://self-service-cockpit.icp.infineon.com/mydcassets +Self Service Cockpit +AvatarLeslie Phares +My DC Assets +Summary: +2 +23 +type +name +description +owner +substitute +location +monthly cost unit +security +action +Select... +ICP Namespace dans-playground Playground project for Dan's Playground NA-US-1 +ICP Namespace open-insight-metrology-viewer Playground project for OpenInsight Metrology Viewer NA-US-1 0.000.00 % +Windows Server MESSA010EC Metrology GaN App Server -- -- NA/Mesa +Windows Server MESSA012EC APC Trend Prod App Server 1 -- -- NA/Mesa +Windows Server MESSA013EC APC Trend -- -- NA/Mesa +Windows Server MESSA014EC YODA Prod App Server 1 -- -- NA/Mesa +Windows Server MESSA015EC YODA Prod App Server 2 -- -- NA/Mesa +Windows Server MESSA017 EAF Reporting -- -- NA/Mesa +Windows Server MESSA022EC EAF Prod Server 1 - Stealth -- -- NA/Mesa +Windows Server MESSA023EC EAF Prod Server 2 - Stealth -- -- NA/Mesa +Windows Server MESSA05EC EC Utility server - Francois Rivard -- -- NA/Mesa +Windows Server MESSA06EC Catalyst (si) App server - Francois Rivard -- -- NA/Mesa +Windows Server MESSA08EC EAF Application Server - Prod - Francois Rivard -- -- NA/Mesa +Windows Server MESSA09EC EAF Prod App Server 02 - Francois Rivard -- -- NA/Mesa +Windows Server MESSA1005 ASP:Mesa InfinityQS Development Server -- -- NA/Mesa +Windows Server MESTSA003 EAF Dev -- -- NA/Mesa +Windows Server MESTSA004 EAF GaN Test Server - IFX -- -- NA/Mesa +Windows Server MESTSA005 APC Trend Dev -- -- NA/Mesa +Windows Server MESTSA006 YODA TEST \ Dev App Server -- -- NA/Mesa +Windows Server MESTSA02EC APC Trend Stage App server -- -- NA/Mesa +Windows Server MESTSA03EC YODA Test App server -- -- NA/Mesa +Windows Server MESTSA06EC SPC Dev -- -- NA/Mesa +Windows Server MESTSA07EC EAF App Test Server -- -- NA/Mesa +Windows Server MESTSA08EC New OpenInsight Dev DB -- -- NA/Mesa +Windows Server MESTSA1001 New Yoda ELK - Dev Server -- -- NA/Mesa +1 - 25 of 25 items +100 +items per page +``` diff --git a/mydcassets/stieber.md b/mydcassets/stieber.md new file mode 100644 index 0000000..d0f0f03 --- /dev/null +++ b/mydcassets/stieber.md @@ -0,0 +1,8 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.989Z" +updated: "2024-03-05T01:23:56.990Z" +--- +```conf +# https://self-service-cockpit.icp.infineon.com/mydcassets +``` diff --git a/mydcassets/tucker.md b/mydcassets/tucker.md new file mode 100644 index 0000000..6443d15 --- /dev/null +++ b/mydcassets/tucker.md @@ -0,0 +1,30 @@ +--- +type: "note" +created: "2024-03-05T01:23:56.991Z" +updated: "2024-03-05T01:23:56.992Z" +--- +```conf +# https://self-service-cockpit.icp.infineon.com/mydcassets +Self Service Cockpit +AvatarChase Tucker +My DC Assets +Summary: +4 +type +name +description +owner +substitute +location +monthly cost unit +security +action +Select... +Windows Server MESSA014 OI Mobile Scanner -- -- NA/Mesa +Windows Server MESSA017EC EC Web Server -- -- NA/Mesa +Windows Server MESTSA008 OpenInsight API Dev -- -- NA/Mesa +Windows Server MESTSA05EC EC Fab Approval Dev -- -- NA/Mesa +1 - 4 of 4 items +100 +items per page +``` diff --git a/nmap/10.95.154.0/.vscode/helper/10.95.154-links.md b/nmap/10.95.154.0/.vscode/helper/10.95.154-links.md new file mode 100644 index 0000000..278bca4 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/10.95.154-links.md @@ -0,0 +1,31 @@ +--- +type: "note" +--- + +# 10.95.154-links + +## Hosts +- [mac-0050568e38c2](mac-0050568e38c2.md) +- [mac-0050568e821e](mac-0050568e821e.md) +- [mac-1c6f65c351db](mac-1c6f65c351db.md) +- [mac-00106f00d74e](mac-00106f00d74e.md) +- [mac-000129a1f145](mac-000129a1f145.md) +- [mac-0090e86e3c35](mac-0090e86e3c35.md) +- [mac-6c0b84e39411](mac-6c0b84e39411.md) +- [mac-c400ad2390f5](mac-c400ad2390f5.md) +- [mac-00d86101bc66](mac-00d86101bc66.md) +- [mac-0001296a8fab](mac-0001296a8fab.md) +- [mac-00131402bd67](mac-00131402bd67.md) +- [mac-00131402b8b7](mac-00131402b8b7.md) +- [mac-7c575863ba9e](mac-7c575863ba9e.md) +- [mac-0090e8651f2b](mac-0090e8651f2b.md) +- [mac-0090e86e3c24](mac-0090e86e3c24.md) +- [mac-0090e86e3c1e](mac-0090e86e3c1e.md) +- [mac-0090e86e3c26](mac-0090e86e3c26.md) +- [mac-0090e86e3c23](mac-0090e86e3c23.md) +- [mac-0090e86e3c18](mac-0090e86e3c18.md) +- [mac-0090e86e3c22](mac-0090e86e3c22.md) +- [mac-0090e86e3bf0](mac-0090e86e3bf0.md) +- [mac-00c0e50002ed](mac-00c0e50002ed.md) +- [mac-00c0e50005d0](mac-00c0e50005d0.md) +- [ipv4-109515430](ipv4-109515430.md) diff --git a/nmap/10.95.154.0/.vscode/helper/columnsToCards.json b/nmap/10.95.154.0/.vscode/helper/columnsToCards.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/columnsToCards.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/nmap/10.95.154.0/.vscode/helper/ipv4-109515430.md b/nmap/10.95.154.0/.vscode/helper/ipv4-109515430.md new file mode 100644 index 0000000..3d44141 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/ipv4-109515430.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# ipv4-109515430 + +# 10.95.154.30 - K200001783-01.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0001296a8fab.md b/nmap/10.95.154.0/.vscode/helper/mac-0001296a8fab.md new file mode 100644 index 0000000..1cb0f0f --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0001296a8fab.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0001296a8fab + +# 10.95.154.29 - 00:01:29:6A:8F:AB - frederic-PC.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-000129a1f145.md b/nmap/10.95.154.0/.vscode/helper/mac-000129a1f145.md new file mode 100644 index 0000000..0580bdf --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-000129a1f145.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-000129a1f145 + +# 10.95.154.14 - 00:01:29:A1:F1:45 - frederic-PC.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-00105acbc65b.md b/nmap/10.95.154.0/.vscode/helper/mac-00105acbc65b.md new file mode 100644 index 0000000..2540942 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-00105acbc65b.md @@ -0,0 +1,16 @@ +--- +type: "note" +--- + +# mac-00105acbc65b + +# ipv4-109515430.md +## 10.95.154.30 / K200001783-01.mes.infineon.com (up) +### Info: +### Ports: +### Traceroute information: +### Misc Metrics +### Scripts: +#### PORT 80 +#### PORT 3389 +#### PORT 5051 diff --git a/nmap/10.95.154.0/.vscode/helper/mac-00106f00d74e.md b/nmap/10.95.154.0/.vscode/helper/mac-00106f00d74e.md new file mode 100644 index 0000000..c90ba4f --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-00106f00d74e.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-00106f00d74e + +# 10.95.154.12 - 00:10:6F:00:D7:4E - SP1-1097-0156.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-00131402b8b7.md b/nmap/10.95.154.0/.vscode/helper/mac-00131402b8b7.md new file mode 100644 index 0000000..c6d9a44 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-00131402b8b7.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-00131402b8b7 + +# 10.95.154.32 - 00:13:14:02:B8:B7 diff --git a/nmap/10.95.154.0/.vscode/helper/mac-00131402bd67.md b/nmap/10.95.154.0/.vscode/helper/mac-00131402bd67.md new file mode 100644 index 0000000..0526c6c --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-00131402bd67.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-00131402bd67 + +# 10.95.154.31 - 00:13:14:02:BD:67 diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0050568e38c2.md b/nmap/10.95.154.0/.vscode/helper/mac-0050568e38c2.md new file mode 100644 index 0000000..24c6051 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0050568e38c2.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0050568e38c2 + +# 10.95.154.1 - 00:50:56:8E:38:C2 diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0050568e821e.md b/nmap/10.95.154.0/.vscode/helper/mac-0050568e821e.md new file mode 100644 index 0000000..332cc45 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0050568e821e.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0050568e821e + +# 10.95.154.7 - 00:50:56:8E:82:1E diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e8651f2b.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e8651f2b.md new file mode 100644 index 0000000..1b4fe1a --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e8651f2b.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e8651f2b + +# 10.95.154.36 - 00:90:E8:65:1F:2B - TENCOR1.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3bf0.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3bf0.md new file mode 100644 index 0000000..77f0cb0 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3bf0.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3bf0 + +# 10.95.154.43 - 00:90:E8:6E:3B:F0 - CDE2.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c18.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c18.md new file mode 100644 index 0000000..c850f49 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c18.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3c18 + +# 10.95.154.41 - 00:90:E8:6E:3C:18 - BIORAD2.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c1e.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c1e.md new file mode 100644 index 0000000..4b91719 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c1e.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3c1e + +# 10.95.154.38 - 00:90:E8:6E:3C:1E - TENCOR3.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c22.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c22.md new file mode 100644 index 0000000..99ed142 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c22.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3c22 + +# 10.95.154.42 - 00:90:E8:6E:3C:22 - BIORAD3.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c23.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c23.md new file mode 100644 index 0000000..ec87a8e --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c23.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3c23 + +# 10.95.154.40 - 00:90:E8:6E:3C:23 - HGCV3.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c24.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c24.md new file mode 100644 index 0000000..593fbf8 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c24.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3c24 + +# 10.95.154.37 - 00:90:E8:6E:3C:24 - TENCOR2.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c26.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c26.md new file mode 100644 index 0000000..2c2f435 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c26.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3c26 + +# 10.95.154.39 - 00:90:E8:6E:3C:26 - HGCV1.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c35.md b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c35.md new file mode 100644 index 0000000..77ceb83 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-0090e86e3c35.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-0090e86e3c35 + +# 10.95.154.17 - 00:90:E8:6E:3C:35 - HGCV2.mes.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-00c0e50002ed.md b/nmap/10.95.154.0/.vscode/helper/mac-00c0e50002ed.md new file mode 100644 index 0000000..b2ddbb5 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-00c0e50002ed.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-00c0e50002ed + +# 10.95.154.52 - 00:C0:E5:00:02:ED diff --git a/nmap/10.95.154.0/.vscode/helper/mac-00c0e50005d0.md b/nmap/10.95.154.0/.vscode/helper/mac-00c0e50005d0.md new file mode 100644 index 0000000..87d9d7b --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-00c0e50005d0.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-00c0e50005d0 + +# 10.95.154.53 - 00:C0:E5:00:05:D0 diff --git a/nmap/10.95.154.0/.vscode/helper/mac-00d86101bc66.md b/nmap/10.95.154.0/.vscode/helper/mac-00d86101bc66.md new file mode 100644 index 0000000..fed7e76 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-00d86101bc66.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-00d86101bc66 + +# 10.95.154.27 - 00:D8:61:01:BC:66 - cde-resmap diff --git a/nmap/10.95.154.0/.vscode/helper/mac-1c6f65c351db.md b/nmap/10.95.154.0/.vscode/helper/mac-1c6f65c351db.md new file mode 100644 index 0000000..9514c5e --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-1c6f65c351db.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-1c6f65c351db + +# 10.95.154.10 - 1C:6F:65:C3:51:DB - MESD1BIORAD4.ifxcep.net diff --git a/nmap/10.95.154.0/.vscode/helper/mac-6c0b84e39411.md b/nmap/10.95.154.0/.vscode/helper/mac-6c0b84e39411.md new file mode 100644 index 0000000..835f9f9 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-6c0b84e39411.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-6c0b84e39411 + +# 10.95.154.18 - 6C:0B:84:E3:94:11 - unity5 diff --git a/nmap/10.95.154.0/.vscode/helper/mac-7c575863ba9e.md b/nmap/10.95.154.0/.vscode/helper/mac-7c575863ba9e.md new file mode 100644 index 0000000..81974fb --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-7c575863ba9e.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-7c575863ba9e + +# 10.95.154.34 - 7C:57:58:63:BA:9E - ISCFMXL2472FTD.infineon.com diff --git a/nmap/10.95.154.0/.vscode/helper/mac-c400ad2390f5.md b/nmap/10.95.154.0/.vscode/helper/mac-c400ad2390f5.md new file mode 100644 index 0000000..a0a1805 --- /dev/null +++ b/nmap/10.95.154.0/.vscode/helper/mac-c400ad2390f5.md @@ -0,0 +1,7 @@ +--- +type: "note" +--- + +# mac-c400ad2390f5 + +# 10.95.154.20 - C4:00:AD:23:90:F5 - INFINEONEPI230.mes.infineon.com diff --git a/nmap/10.95.154.0/10.95.154.0-links.md b/nmap/10.95.154.0/10.95.154.0-links.md new file mode 100644 index 0000000..18ad891 --- /dev/null +++ b/nmap/10.95.154.0/10.95.154.0-links.md @@ -0,0 +1,69 @@ +--- +type: "note" +--- + +# 10.95.154.0-links + +## Hosts + +- [10.95.154.1 - 00:50:56:8E:38:C2](mac-0050568e38c2.md) +- [10.95.154.7 - 00:50:56:8E:82:1E](mac-0050568e821e.md) +- [10.95.154.10 - 1C:6F:65:C3:51:DB - MESD1BIORAD4.ifxcep.net](mac-1c6f65c351db.md) +- [10.95.154.12 - 00:10:6F:00:D7:4E - SP1-1097-0156.mes.infineon.com](mac-00106f00d74e.md) +- [10.95.154.14 - 00:01:29:A1:F1:45 - frederic-PC.mes.infineon.com](mac-000129a1f145.md) +- [10.95.154.17 - 00:90:E8:6E:3C:35 - HGCV2.mes.infineon.com](mac-0090e86e3c35.md) +- [10.95.154.18 - 6C:0B:84:E3:94:11 - unity5](mac-6c0b84e39411.md) +- [10.95.154.20 - C4:00:AD:23:90:F5 - INFINEONEPI230.mes.infineon.com](mac-c400ad2390f5.md) +- [10.95.154.27 - 00:D8:61:01:BC:66 - cde-resmap](mac-00d86101bc66.md) +- [10.95.154.29 - 00:01:29:6A:8F:AB - frederic-PC.mes.infineon.com](mac-0001296a8fab.md) +- [10.95.154.31 - 00:13:14:02:BD:67](mac-00131402bd67.md) +- [10.95.154.32 - 00:13:14:02:B8:B7](mac-00131402b8b7.md) +- [10.95.154.34 - 7C:57:58:63:BA:9E - ISCFMXL2472FTD.infineon.com](mac-7c575863ba9e.md) +- [10.95.154.36 - 00:90:E8:65:1F:2B - TENCOR1.mes.infineon.com](mac-0090e8651f2b.md) +- [10.95.154.37 - 00:90:E8:6E:3C:24 - TENCOR2.mes.infineon.com](mac-0090e86e3c24.md) +- [10.95.154.38 - 00:90:E8:6E:3C:1E - TENCOR3.mes.infineon.com](mac-0090e86e3c1e.md) +- [10.95.154.39 - 00:90:E8:6E:3C:26 - HGCV1.mes.infineon.com](mac-0090e86e3c26.md) +- [10.95.154.40 - 00:90:E8:6E:3C:23 - HGCV3.mes.infineon.com](mac-0090e86e3c23.md) +- [10.95.154.41 - 00:90:E8:6E:3C:18 - BIORAD2.mes.infineon.com](mac-0090e86e3c18.md) +- [10.95.154.42 - 00:90:E8:6E:3C:22 - BIORAD3.mes.infineon.com](mac-0090e86e3c22.md) +- [10.95.154.43 - 00:90:E8:6E:3B:F0 - CDE2.mes.infineon.com](mac-0090e86e3bf0.md) +- [10.95.154.52 - 00:C0:E5:00:02:ED](mac-00c0e50002ed.md) +- [10.95.154.53 - 00:C0:E5:00:05:D0](mac-00c0e50005d0.md) +- [10.95.154.30 - K200001783-01.mes.infineon.com](ipv4-109515430.md) + +```json +{ + "Args": "\u0022C:\\\\Program Files (x86)\\\\Nmap\\\\nmap.exe\u0022 -A -F -oX D:\\\\Tmp\\\\10.95.154.0.xml 10.95.154.0/25", + "Debugging": { + "Level": 0 + }, + "Host": [], + "RunStats": { + "Finished": { + "Elapsed": 348.58, + "Exit": "success", + "Summary": "Nmap done at Tue Dec 5 14:03:50 2023; 128 IP addresses (24 hosts up) scanned in 348.58 seconds", + "Time": 1701810230, + "TimeStr": "Tue Dec 5 14:03:50 2023" + }, + "Hosts": { + "Down": 104, + "Total": 128, + "Up": 24 + } + }, + "ScanInfo": { + "NumServices": 100, + "Protocol": "tcp", + "Services": "7,9,13,21-23,25-26,37,53,79-81,88,106,110-111,113,119,135,139,143-144,179,199,389,427,443-445,465,513-515,543-544,548,554,587,631,646,873,990,993,995,1025-1029,1110,1433,1720,1723,1755,1900,2000-2001,2049,2121,2717,3000,3128,3306,3389,3986,4899,5000,5009,5051,5060,5101,5190,5357,5432,5631,5666,5800,5900,6000-6001,6646,7070,8000,8008-8009,8080-8081,8443,8888,9100,9999-10000,32768,49152-49157", + "Type": "syn" + }, + "Scanner": "nmap", + "Start": 1701809882, + "StartStr": "Tue Dec 5 13:58:02 2023", + "Verbose": { + "Level": 0 + }, + "Version": "7.94" +} +``` diff --git a/nmap/10.95.154.0/10.95.154.0.json b/nmap/10.95.154.0/10.95.154.0.json new file mode 100644 index 0000000..7efae79 --- /dev/null +++ b/nmap/10.95.154.0/10.95.154.0.json @@ -0,0 +1,4488 @@ +{ + "Args": "NMAP -A -F -oX D:/Tmp/10.95.154.0.xml 10.95.154.0/25", + "Debugging": { + "Level": 0 + }, + "Host": [ + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.1", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:50:56:8E:38:C2", + "AddressType": "mac", + "Vendor": "VMware" + } + ], + "HostNames": { + "HostName": null + }, + "IPIDSequence": { + "Class": "", + "Values": "" + }, + "OS": { + "OSClass": null, + "OSMatch": null, + "OSPortUsed": null + }, + "Port": null, + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "", + "Index": "", + "Values": "" + }, + "TCPTSSequence": { + "Class": "", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.1", + "RTT": 13, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.7", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:50:56:8E:82:1E", + "AddressType": "mac", + "Vendor": "VMware" + } + ], + "HostNames": { + "HostName": null + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "22BB,22BC,22BD,22BE,22BF,22C0" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "97", + "Line": "76213", + "Name": "Microsoft Windows Server 2016" + }, + { + "Accuracy": "91", + "Line": "75690", + "Name": "Microsoft Windows Server 2012 or Windows Server 2012 R2" + }, + { + "Accuracy": "89", + "Line": "108094", + "Name": "Microsoft Windows Server 2022" + }, + { + "Accuracy": "87", + "Line": "79354", + "Name": "Microsoft Windows Phone 7.5 or 8.0" + } + ], + "OSPortUsed": [ + { + "PortID": 135, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 135, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows Server 2008 R2 - 2012 microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "rdp-ntlm-info", + "Output": "\n Target_Name: EC\n NetBIOS_Domain_Name: EC\n NetBIOS_Computer_Name: MESSTEC102\n DNS_Domain_Name: EC.local\n DNS_Computer_Name: messtec102.EC.local\n DNS_Tree_Name: EC.local\n Product_Version: 10.0.14393\n System_Time: 2024-03-05T17:19:13+00:00" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ssl-date", + "Output": "2024-03-05T17:20:17+00:00; -21s from scanner time." + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=messtec102.EC.local\nNot valid before: 2023-12-05T20:44:49\nNot valid after: 2024-06-05T20:44:49" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-wbt-server", + "Product": "Microsoft Terminal Services", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "262", + "Values": "9D053B6B,EFABFD58,7D02B74D,10F2309,17782A8B,A204B3C3" + }, + "TCPTSSequence": { + "Class": "1000HZ", + "Values": "4CD9CB5E,4CD9CBC3,4CD9CC29,4CD9CC8F,4CD9CCF5,4CD9CD59" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.7", + "RTT": 1.93, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Mon Feb 19 12:10:02 2024", + "Seconds": 1289467 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.9", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "6C:0B:84:E3:94:11", + "AddressType": "mac", + "Vendor": "Universal Global Scientific Industrial" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "unity5.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "All zeros", + "Values": "0,0,0,0,0,0" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "67250", + "Name": "Linux 4.15 - 5.8" + } + ], + "OSPortUsed": [ + { + "PortID": 22, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 31972, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 22, + "Protocol": "tcp", + "Script": [ + { + "ID": "ssh-hostkey", + "Output": "\n 256 42:e0:3b:ed:fa:d3:45:d1:c1:84:aa:17:3e:d8:ea:ee (ECDSA)\n 256 b7:c9:c0:2d:30:e3:7c:05:7f:3c:c3:75:ec:45:7e:8a (ED25519)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:openbsd:openssh:8.9p1", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu Linux; protocol 2.0", + "Method": "probed", + "Name": "ssh", + "Product": "OpenSSH", + "Version": "8.9p1 Ubuntu 3ubuntu0.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Welcome to nginx!" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.18.0 (Ubuntu)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.18.0", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.18.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 443, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title." + }, + { + "ID": "http-server-header", + "Output": "nginx/1.18.0 (Ubuntu)" + }, + { + "ID": "tls-alpn", + "Output": "\n h2\n http/1.1" + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=unity5/organizationName=Infineon Technologies Americas Corp./stateOrProvinceName=Arizona/countryName=US\nSubject Alternative Name: DNS:unity5, DNS:localhost, DNS:127.0.0.1\nNot valid before: 2023-06-04T00:03:26\nNot valid after: 2024-06-03T00:03:26" + }, + { + "ID": "tls-nextprotoneg", + "Output": "\n h2\n http/1.1" + }, + { + "ID": "ssl-date", + "Output": "TLS randomness does not represent time" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.18.0", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.18.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "253", + "Values": "3EC443CE,BFE922CD,43B9DCA6,EDD4A705,55FC7824,A792C6C0" + }, + "TCPTSSequence": { + "Class": "1000HZ", + "Values": "F217C273,F217C2D8,F217C33C,F217C3A1,F217C407,F217C46C" + }, + "Trace": { + "Hops": [ + { + "Host": "unity5.mes.infineon.com", + "IPAddr": "10.95.154.9", + "RTT": 0.65, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Thu Jan 18 10:04:54 2024", + "Seconds": 4061775 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.10", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "1C:6F:65:C3:51:DB", + "AddressType": "mac", + "Vendor": "Giga-byte Technology" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "MESD1BIORAD4.ifxcep.net", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Busy server or unknown class", + "Values": "AE62,AE63,AE6E,AE74,AE75,AE77" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "83119", + "Name": "Microsoft Windows XP SP2 or SP3, or Windows Server 2003" + }, + { + "Accuracy": "100", + "Line": "83194", + "Name": "Microsoft Windows XP SP2 or Windows Server 2003 SP2" + } + ], + "OSPortUsed": [ + { + "PortID": 135, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 37332, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 135, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows_xp" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows XP microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows_xp" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-wbt-server", + "Product": "Microsoft Terminal Services", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 8081, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-title", + "Output": "Site doesn't have a title (application/json)." + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "257", + "Values": "8A87435E,5C67E8A1,81817F8B,D2301408,AE41DCB9,120ECAB8" + }, + "TCPTSSequence": { + "Class": "zero timestamp", + "Values": "0,0,0,0,0,0" + }, + "Trace": { + "Hops": [ + { + "Host": "MESD1BIORAD4.ifxcep.net", + "IPAddr": "10.95.154.10", + "RTT": 1.03, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.12", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:10:6F:00:D7:4E", + "AddressType": "mac", + "Vendor": "Trenton Technology" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "SP1-1097-0156.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Broken little-endian incremental", + "Values": "3787,3887,3987,3A87,3B87,3C87" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "79041", + "Name": "Microsoft Windows NT 4.0 SP5 - SP6a" + } + ], + "OSPortUsed": [ + { + "PortID": 135, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 36856, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 135, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "msrpc", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 1027, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "IIS", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 1029, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "ms-lsa", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 1433, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-sql-s", + "Product": "Microsoft SQL Server 2000", + "Version": "8.00.194.00; RTM" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 6001, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "fastobjects-db", + "Product": "Versant FastObjects database", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "42", + "Values": "482DD,482E8,482F1,48300,48305,48310" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "SP1-1097-0156.mes.infineon.com", + "IPAddr": "10.95.154.12", + "RTT": 0.51, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.14", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:01:29:A1:F1:45", + "AddressType": "mac", + "Vendor": "DFI" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "frederic-PC.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "5E5F,5E60,5E61,5E62,5E63,5E64" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "96", + "Line": "79354", + "Name": "Microsoft Windows Phone 7.5 or 8.0" + }, + { + "Accuracy": "94", + "Line": "78218", + "Name": "Microsoft Windows 8.1 R1" + }, + { + "Accuracy": "94", + "Line": "77958", + "Name": "Microsoft Windows Embedded Standard 7" + }, + { + "Accuracy": "92", + "Line": "74548", + "Name": "Microsoft Windows Server 2008 or 2008 Beta 3" + }, + { + "Accuracy": "92", + "Line": "74947", + "Name": "Microsoft Windows Server 2008 R2 or Windows 8.1" + }, + { + "Accuracy": "92", + "Line": "77028", + "Name": "Microsoft Windows 7 Professional or Windows 8" + }, + { + "Accuracy": "92", + "Line": "80060", + "Name": "Microsoft Windows Vista SP0 or SP1, Windows Server 2008 SP1, or Windows 7" + }, + { + "Accuracy": "92", + "Line": "80332", + "Name": "Microsoft Windows Vista SP2, Windows 7 SP1, or Windows Server 2008" + }, + { + "Accuracy": "90", + "Line": "74967", + "Name": "Microsoft Windows Server 2008 R2 SP1" + }, + { + "Accuracy": "89", + "Line": "75151", + "Name": "Microsoft Windows Server 2008 SP1" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (application/json)." + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "257", + "Values": "1CB3119C,53740226,701020D5,C2BF4C5F,93FBA9FC,9A5524DA" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "2305BF8C,2305BF96,2305BFA0,2305BFAA,2305BFB4,2305BFBE" + }, + "Trace": { + "Hops": [ + { + "Host": "frederic-PC.mes.infineon.com", + "IPAddr": "10.95.154.14", + "RTT": 2.72, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Thu Dec 28 10:09:11 2023", + "Seconds": 5875918 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.17", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:35", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "HGCV2.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "3DC3,3DC4,3DC5,3DC6,3DC7,3DC8" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 40856, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:35; serial number 3177; uptime 66 days, 03h:23m:46s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "259", + "Values": "D1CE1B0B,89FAE936,15F9741B,BC59327A,14A37B11,F8D8FBCB" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "HGCV2.mes.infineon.com", + "IPAddr": "10.95.154.17", + "RTT": 6.38, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.18", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "6C:0B:84:E3:AD:7E", + "AddressType": "mac", + "Vendor": "Universal Global Scientific Industrial" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "unity5", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "All zeros", + "Values": "0,0,0,0,0,0" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "67250", + "Name": "Linux 4.15 - 5.8" + } + ], + "OSPortUsed": [ + { + "PortID": 22, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 38019, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 22, + "Protocol": "tcp", + "Script": [ + { + "ID": "ssh-hostkey", + "Output": "\n 3072 72:47:30:df:55:fe:16:f8:a1:66:61:37:97:3e:d3:50 (RSA)\n 256 e8:d7:38:18:31:81:48:2d:91:b1:12:55:cf:2d:8e:f5 (ECDSA)\n 256 59:f4:73:c8:59:81:0e:88:59:be:79:7f:f2:b3:af:7c (ED25519)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:openbsd:openssh:8.2p1", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu Linux; protocol 2.0", + "Method": "probed", + "Name": "ssh", + "Product": "OpenSSH", + "Version": "8.2p1 Ubuntu 4ubuntu0.9" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Welcome to nginx!" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.18.0 (Ubuntu)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.18.0", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.18.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 443, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title." + }, + { + "ID": "ssl-date", + "Output": "TLS randomness does not represent time" + }, + { + "ID": "tls-alpn", + "Output": "\n h2\n http/1.1" + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=unity4/organizationName=Infineon Technologies Americas Corp./stateOrProvinceName=Arizona/countryName=US\nSubject Alternative Name: DNS:unity4, DNS:localhost, DNS:127.0.0.1\nNot valid before: 2023-06-04T01:59:38\nNot valid after: 2024-06-03T01:59:38" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.18.0 (Ubuntu)" + }, + { + "ID": "tls-nextprotoneg", + "Output": "\n h2\n http/1.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.18.0", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.18.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "BDA4DE33,25145365,194C9BC4,29805B0,925FB4C,F582D499" + }, + "TCPTSSequence": { + "Class": "1000HZ", + "Values": "40C0865D,40C086C2,40C08726,40C0878B,40C087F1,40C08856" + }, + "Trace": { + "Hops": [ + { + "Host": "unity5", + "IPAddr": "10.95.154.18", + "RTT": 0.8, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Wed Feb 21 20:32:58 2024", + "Seconds": 1086491 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.20", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "C4:00:AD:23:90:F5", + "AddressType": "mac", + "Vendor": "Advantech Technology (China)" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "INFINEONEPI230.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "1774,1775,1776,1777,1778,1779" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "77205", + "Name": "Microsoft Windows 7 SP0 - SP1, Windows Server 2008 SP1, Windows Server 2008 R2, Windows 8, or Windows 8.1 Update 1" + } + ], + "OSPortUsed": [ + { + "PortID": 135, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 39950, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 135, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "workgroup: WORKGROUP", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows 7 - 10 microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ssl-date", + "Output": "2024-03-05T17:46:56+00:00; +26m18s from scanner time." + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=INFINEONEPI230\nNot valid before: 2023-11-07T06:23:23\nNot valid after: 2024-05-08T06:23:23" + } + ], + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "ms-wbt-server", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 8000, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "mc-nmf", + "Product": ".NET Message Framing", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 8080, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Not Found" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "Embedthis-http" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "Embedthis HTTP lib httpd", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 49152, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 49153, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 49154, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "246", + "Values": "BC274BED,E2AC55C8,EF887B24,DA1F34F,37CA6364,51CD458F" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "95707C9,95707DD,95707E7,95707F1,95707FB,9570806" + }, + "Trace": { + "Hops": [ + { + "Host": "INFINEONEPI230.mes.infineon.com", + "IPAddr": "10.95.154.20", + "RTT": 1.52, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Fri Feb 16 07:02:32 2024", + "Seconds": 1567117 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.27", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:D8:61:01:BC:66", + "AddressType": "mac", + "Vendor": "Micro-Star Intl" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "cde-resmap", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "A32,A33,A34,A35,A36,A37" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "94", + "Line": "82138", + "Name": "Microsoft Windows XP SP2" + }, + { + "Accuracy": "93", + "Line": "82821", + "Name": "Microsoft Windows XP SP2 or SP3" + }, + { + "Accuracy": "91", + "Line": "72053", + "Name": "Microsoft Windows Server 2003" + }, + { + "Accuracy": "91", + "Line": "83894", + "Name": "Microsoft Windows XP SP3" + }, + { + "Accuracy": "91", + "Line": "71364", + "Name": "Microsoft Windows 2000 SP4" + }, + { + "Accuracy": "91", + "Line": "81304", + "Name": "Microsoft Windows XP Professional SP3" + }, + { + "Accuracy": "89", + "Line": "73425", + "Name": "Microsoft Windows Server 2003 SP2" + }, + { + "Accuracy": "89", + "Line": "83080", + "Name": "Microsoft Windows XP SP2 or SP3, or Windows Embedded Standard 2009" + }, + { + "Accuracy": "88", + "Line": "30414", + "Name": "General Dynamics R8000B Comm Systems Analyzer" + }, + { + "Accuracy": "87", + "Line": "82608", + "Name": "Microsoft Windows XP SP2 (firewall disabled)" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (application/json)." + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows_xp" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows XP microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "265", + "Values": "41E610BF,C014A37E,B2AF218A,CB0B1486,4233324B,B59C3B9C" + }, + "TCPTSSequence": { + "Class": "zero timestamp", + "Values": "0,0,0,0,0,0" + }, + "Trace": { + "Hops": [ + { + "Host": "cde-resmap", + "IPAddr": "10.95.154.27", + "RTT": 1.77, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.29", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:01:29:6A:8F:AB", + "AddressType": "mac", + "Vendor": "DFI" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "frederic-PC.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "74BD,74BE,74BF,74C0,74C1,74C2" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "96", + "Line": "78218", + "Name": "Microsoft Windows 8.1 R1" + }, + { + "Accuracy": "96", + "Line": "79354", + "Name": "Microsoft Windows Phone 7.5 or 8.0" + }, + { + "Accuracy": "96", + "Line": "77958", + "Name": "Microsoft Windows Embedded Standard 7" + }, + { + "Accuracy": "92", + "Line": "74548", + "Name": "Microsoft Windows Server 2008 or 2008 Beta 3" + }, + { + "Accuracy": "92", + "Line": "74947", + "Name": "Microsoft Windows Server 2008 R2 or Windows 8.1" + }, + { + "Accuracy": "92", + "Line": "77028", + "Name": "Microsoft Windows 7 Professional or Windows 8" + }, + { + "Accuracy": "92", + "Line": "80060", + "Name": "Microsoft Windows Vista SP0 or SP1, Windows Server 2008 SP1, or Windows 7" + }, + { + "Accuracy": "92", + "Line": "80332", + "Name": "Microsoft Windows Vista SP2, Windows 7 SP1, or Windows Server 2008" + }, + { + "Accuracy": "90", + "Line": "76693", + "Name": "Microsoft Windows 7" + }, + { + "Accuracy": "90", + "Line": "74967", + "Name": "Microsoft Windows Server 2008 R2 SP1" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (application/json)." + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "259", + "Values": "21106600,50EE14E1,647B372B,A514E850,802F82AE,19524E89" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "2305F8F2,2305F8FC,2305F906,2305F910,2305F91A,2305F924" + }, + "Trace": { + "Hops": [ + { + "Host": "frederic-PC.mes.infineon.com", + "IPAddr": "10.95.154.29", + "RTT": 2.93, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Thu Dec 28 10:06:44 2023", + "Seconds": 5876065 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.31", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:13:14:02:BD:67", + "AddressType": "mac", + "Vendor": "Asiamajor" + } + ], + "HostNames": { + "HostName": null + }, + "IPIDSequence": { + "Class": "All zeros", + "Values": "0,0,0,0,0,0" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "65323", + "Name": "Linux 3.2 - 4.9" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 31465, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "many brands", + "Method": "probed", + "Name": "telnet", + "Product": "security DVR telnetd", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-auth", + "Output": "\nHTTP/1.1 401 UNAUTHORIZED\r\n Digest qop=auth realm=pbox nonce=tick\n" + } + ], + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "http", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 554, + "Protocol": "tcp", + "Script": [ + { + "ID": "rtsp-methods", + "Output": "OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + }, + { + "ID": "fingerprint-strings", + "Output": "\n HTTPOptions, RTSPRequest: \n RTSP/1.0 200 OK\n CSeq: 0\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN\n SIPOptions: \n RTSP/1.0 200 OK\n CSeq: 42 OPTIONS\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "rtsp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + } + ], + "StartTime": 1709658958, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "260", + "Values": "1897E210,436455A8,4B618D1D,23D601E0,DA1D5C8F,4333B85A" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "2213F43B,2213F445,2213F44F,2213F459,2213F463,2213F46D" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.31", + "RTT": 1.54, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Sat Dec 30 06:10:07 2023", + "Seconds": 5717462 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.32", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:13:14:02:B8:B7", + "AddressType": "mac", + "Vendor": "Asiamajor" + } + ], + "HostNames": { + "HostName": null + }, + "IPIDSequence": { + "Class": "All zeros", + "Values": "0,0,0,0,0,0" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "65323", + "Name": "Linux 3.2 - 4.9" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 36239, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "many brands", + "Method": "probed", + "Name": "telnet", + "Product": "security DVR telnetd", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-auth", + "Output": "\nHTTP/1.1 401 UNAUTHORIZED\r\n Digest qop=auth realm=pbox nonce=tick\n" + }, + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + } + ], + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "http", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 554, + "Protocol": "tcp", + "Script": [ + { + "ID": "rtsp-methods", + "Output": "OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + }, + { + "ID": "fingerprint-strings", + "Output": "\n HTTPOptions, RTSPRequest: \n RTSP/1.0 200 OK\n CSeq: 0\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN\n SIPOptions: \n RTSP/1.0 200 OK\n CSeq: 42 OPTIONS\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "rtsp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + } + ], + "StartTime": 1709658958, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "7FAB413B,BC92095E,D6A2FCB6,B602A619,2E55763E,56E74D40" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "2213EF6D,2213EF77,2213EF81,2213EF8B,2213EF95,2213EF9F" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.32", + "RTT": 1.93, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Sat Dec 30 06:10:19 2023", + "Seconds": 5717450 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.36", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:65:1F:2B", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "TENCOR1.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "2F9A,2F9B,2F9C,2F9D,2F9E,2F9F" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 39931, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:65:1F:2B; serial number 7555; uptime 68 days, 00h:53m:38s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "237", + "Values": "2D0650AA,61E14186,9EB72A91,6619F240,25E1C84D,5ADA6FDC" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "TENCOR1.mes.infineon.com", + "IPAddr": "10.95.154.36", + "RTT": 6.62, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.37", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:24", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "TENCOR2.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "4DD3,4DD4,4DD5,4DD6,4DD7,4DD8" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 34904, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:24; serial number 3160; uptime 42 days, 19h:27m:20s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "4401E9FD,A690B6A6,670F1A2,5975CE0,D302D218,FAE09343" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "TENCOR2.mes.infineon.com", + "IPAddr": "10.95.154.37", + "RTT": 19.23, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.38", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:1E", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "TENCOR3.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "43B2,43B3,43B4,43B5,43B6,43B7" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 39949, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:1E; serial number 3154; uptime 19 days, 23h:28m:36s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "47FA6E99,CA7B6EE8,ECDD0DE0,BB10F6E6,4A381817,BB260073" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "TENCOR3.mes.infineon.com", + "IPAddr": "10.95.154.38", + "RTT": 17.85, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.39", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:26", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "HGCV1.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "E1C8,E1C9,E1CA,E1CB,E1CC,E1CD" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 40672, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:26; serial number 3162; uptime 64 days, 02h:06m:02s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "262", + "Values": "2E1081A,E9ACCD8A,C5FDFA36,75809F95,F2A9AD50,8C3AD416" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "HGCV1.mes.infineon.com", + "IPAddr": "10.95.154.39", + "RTT": 21.55, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.40", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:23", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "HGCV3.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "FFCF,FFD0,FFD1,FFD2,FFD3,FFD4" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 37224, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:23; serial number 3159; uptime 64 days, 02h:06m:48s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "257", + "Values": "E2C4EA53,FB0504FC,AB4452D,BB1D772F,7D89624C,C31A0213" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "HGCV3.mes.infineon.com", + "IPAddr": "10.95.154.40", + "RTT": 22.97, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.41", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:18", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "BIORAD2.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "15D9,15DA,15DB,15DC,15DD,15DE" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 39182, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:18; serial number 3148; uptime 48 days, 01h:38m:51s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "258", + "Values": "E97EBCA5,12F065A8,97145D1C,36DE4A78,DE3F23DC,48D6AFEA" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "BIORAD2.mes.infineon.com", + "IPAddr": "10.95.154.41", + "RTT": 11.15, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.42", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:22", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "BIORAD3.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "BB76,BB77,BB78,BB79,BB7A,BB7B" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 31568, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:22; serial number 3158; uptime 67 days, 22h:13m:43s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "251", + "Values": "1B29E383,FA411950,6A8F888F,547056CD,4A97DCD3,6638FE79" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "BIORAD3.mes.infineon.com", + "IPAddr": "10.95.154.42", + "RTT": 5.26, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.43", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3B:F0", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "WC6INCH1-EQPT.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "A4D3,A4D4,A4D5,A4D6,A4D7,A4D8" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 40719, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3B:F0; serial number 3108; uptime 0 days, 19h:46m:56s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "253", + "Values": "F9C92B4C,4E941C36,73469542,410F4BD1,F810BB96,E7050DD3" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "WC6INCH1-EQPT.mes.infineon.com", + "IPAddr": "10.95.154.43", + "RTT": 7.18, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.44", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:30", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "CDE5.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "9FC2,9FC3,9FC4,9FC5,9FC6,9FC7" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 30041, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:30; serial number 3172; uptime 20 days, 22h:55m:31s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn't have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "CPE": null, + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1709658958, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "258", + "Values": "B600755D,1C6D4578,3010EEA8,7EDDD74F,AFA973DF,AF451E8A" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "CDE5.mes.infineon.com", + "IPAddr": "10.95.154.44", + "RTT": 4.93, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.52", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:C0:E5:00:02:ED", + "AddressType": "mac", + "Vendor": "Gespac" + } + ], + "HostNames": { + "HostName": null + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "5362,5363,5364,5365,5366,5367" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "90", + "Line": "21389", + "Name": "DEC Ultrix 4.5" + }, + { + "Accuracy": "90", + "Line": "12778", + "Name": "Canon imageRUNNER C3100 or C6800 printer" + }, + { + "Accuracy": "88", + "Line": "1395", + "Name": "Adaptec Snap Server 100 NAS device" + }, + { + "Accuracy": "88", + "Line": "1378", + "Name": "Adaptec RAID 4000 I/O controller" + }, + { + "Accuracy": "88", + "Line": "20985", + "Name": "Data General DG/UX 4.11MU06" + }, + { + "Accuracy": "88", + "Line": "768", + "Name": "3Com SuperStack 3 Switch 4500 or Huawei Quidway AR 18-32 ADSL router" + }, + { + "Accuracy": "87", + "Line": "95670", + "Name": "Roku SoundBridge M500 or M1000 music player" + }, + { + "Accuracy": "87", + "Line": "88753", + "Name": "Network Systems BorderGuard 1000 firewall" + }, + { + "Accuracy": "87", + "Line": "39564", + "Name": "IBM OS/2 Warp 4" + }, + { + "Accuracy": "87", + "Line": "330", + "Name": "3Com 4200G or Huawei Quidway S5600 switch" + } + ], + "OSPortUsed": [ + { + "PortID": 5000, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 5000, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "upnp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "255", + "State": "open" + } + } + ], + "StartTime": 1709658958, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "25", + "Values": "9294EE01,9295E801,9296E201,92984001,92993A01,929A3401" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.52", + "RTT": 9.73, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 1 + }, + "EndTime": 1709659269, + "HostAddress": [ + { + "Address": "10.95.154.53", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:C0:E5:00:05:D0", + "AddressType": "mac", + "Vendor": "Gespac" + } + ], + "HostNames": { + "HostName": null + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "F20,F21,F22,F23,F24,F25" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "90", + "Line": "21389", + "Name": "DEC Ultrix 4.5" + }, + { + "Accuracy": "90", + "Line": "12778", + "Name": "Canon imageRUNNER C3100 or C6800 printer" + }, + { + "Accuracy": "88", + "Line": "1395", + "Name": "Adaptec Snap Server 100 NAS device" + }, + { + "Accuracy": "88", + "Line": "1378", + "Name": "Adaptec RAID 4000 I/O controller" + }, + { + "Accuracy": "88", + "Line": "20985", + "Name": "Data General DG/UX 4.11MU06" + }, + { + "Accuracy": "88", + "Line": "768", + "Name": "3Com SuperStack 3 Switch 4500 or Huawei Quidway AR 18-32 ADSL router" + }, + { + "Accuracy": "87", + "Line": "95670", + "Name": "Roku SoundBridge M500 or M1000 music player" + }, + { + "Accuracy": "87", + "Line": "88753", + "Name": "Network Systems BorderGuard 1000 firewall" + }, + { + "Accuracy": "87", + "Line": "39564", + "Name": "IBM OS/2 Warp 4" + }, + { + "Accuracy": "87", + "Line": "330", + "Name": "3Com 4200G or Huawei Quidway S5600 switch" + } + ], + "OSPortUsed": [ + { + "PortID": 5000, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 5000, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "upnp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "255", + "State": "open" + } + } + ], + "StartTime": 1709658957, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "25", + "Values": "88FF3801,89003201,89012C01,89022601,89032001,89047E01" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.53", + "RTT": 7.96, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + }, + { + "Distance": { + "Value": 0 + }, + "EndTime": 1709659295, + "HostAddress": [ + { + "Address": "10.95.154.30", + "AddressType": "ipv4", + "Vendor": "" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "K200001783-01.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "DA6,DA8,DAA,DAC,DAE,DB0" + }, + "OS": { + "OSClass": null, + "OSMatch": [ + { + "Accuracy": "100", + "Line": "69954", + "Name": "Microsoft Windows 10 1809 - 2004" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 43488, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Error" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 135, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": null, + "Service": { + "Conf": "3", + "CPE": null, + "ExtraInfo": "", + "Method": "table", + "Name": "microsoft-ds", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "rdp-ntlm-info", + "Output": "\n Target_Name: K200001783-01\n NetBIOS_Domain_Name: K200001783-01\n NetBIOS_Computer_Name: K200001783-01\n DNS_Domain_Name: K200001783-01\n DNS_Computer_Name: K200001783-01\n Product_Version: 10.0.17763\n System_Time: 2024-03-05T17:21:21+00:00" + }, + { + "ID": "ssl-date", + "Output": "2024-03-05T17:21:33+00:00; 0s from scanner time." + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=K200001783-01\nNot valid before: 2023-10-26T21:00:10\nNot valid after: 2024-04-26T21:00:10" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-wbt-server", + "Product": "Microsoft Terminal Services", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 5051, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "403 Forbidden" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1709659269, + "Status": { + "Reason": "localhost-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "257", + "Values": "B33E261B,C3BA6C6B,8D5A3FCC,3DFA691E,E2CB0B10,AA5B1B90" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": null, + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } + } + ], + "RunStats": { + "Finished": { + "Elapsed": 339.89, + "Exit": "success", + "Summary": "Nmap done at Tue Mar 5 10:21:35 2024; 128 IP addresses (25 hosts up) scanned in 339.89 seconds", + "Time": 1709659295, + "TimeStr": "Tue Mar 5 10:21:35 2024" + }, + "Hosts": { + "Down": 103, + "Total": 128, + "Up": 25 + } + }, + "ScanInfo": { + "NumServices": 100, + "Protocol": "tcp", + "Services": "7,9,13,21-23,25-26,37,53,79-81,88,106,110-111,113,119,135,139,143-144,179,199,389,427,443-445,465,513-515,543-544,548,554,587,631,646,873,990,993,995,1025-1029,1110,1433,1720,1723,1755,1900,2000-2001,2049,2121,2717,3000,3128,3306,3389,3986,4899,5000,5009,5051,5060,5101,5190,5357,5432,5631,5666,5800,5900,6000-6001,6646,7070,8000,8008-8009,8080-8081,8443,8888,9100,9999-10000,32768,49152-49157", + "Type": "syn" + }, + "Scanner": "nmap", + "Start": 1709658956, + "StartStr": "Tue Mar 5 10:15:56 2024", + "Verbose": { + "Level": 0 + }, + "Version": "7.94" +} \ No newline at end of file diff --git a/nmap/10.95.154.0/10.95.154.0.xml b/nmap/10.95.154.0/10.95.154.0.xml new file mode 100644 index 0000000..5249eeb --- /dev/null +++ b/nmap/10.95.154.0/10.95.154.0.xml @@ -0,0 +1,2480 @@ + + + + + + + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/a:openbsd:openssh:8.9p1 + cpe:/o:linux:linux_kernel + + + + + + + cpe:/a:igor_sysoev:nginx:1.18.0 + cpe:/o:linux:linux_kernel + + + + + + + + cpe:/a:igor_sysoev:nginx:1.18.0 + cpe:/o:linux:linux_kernel + + + + + + + + + + + + + + + + cpe:/o:linux:linux_kernel:4 + + + cpe:/o:linux:linux_kernel:5 + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + cpe:/o:microsoft:windows + + + + + + cpe:/o:microsoft:windows + + + + + + cpe:/o:microsoft:windows + + + + + + + + + + + + + + + + cpe:/o:microsoft:windows_8.1:r1 + + + + + cpe:/o:microsoft:windows + + + + + cpe:/o:microsoft:windows_7 + + + + + cpe:/o:microsoft:windows_7::-:professional + + + cpe:/o:microsoft:windows_8 + + + + + cpe:/o:microsoft:windows_vista::- + cpe:/o:microsoft:windows_vista::sp1 + + + cpe:/o:microsoft:windows_server_2008::sp1 + + + cpe:/o:microsoft:windows_7 + + + + + cpe:/o:microsoft:windows_vista::sp2 + + + cpe:/o:microsoft:windows_7::sp1 + + + cpe:/o:microsoft:windows_server_2008 + + + + + cpe:/o:microsoft:windows_server_2008::beta3 + cpe:/o:microsoft:windows_server_2008 + + + + + cpe:/o:microsoft:windows_server_2008:r2 + + + cpe:/o:microsoft:windows_8.1 + + + + + cpe:/o:microsoft:windows_7 + + + + + cpe:/o:microsoft:windows_server_2008:r2:sp1 + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/a:openbsd:openssh:8.2p1 + cpe:/o:linux:linux_kernel + + + + + + + cpe:/a:igor_sysoev:nginx:1.18.0 + cpe:/o:linux:linux_kernel + + + + + + + + cpe:/a:igor_sysoev:nginx:1.18.0 + cpe:/o:linux:linux_kernel + + + + + + + + + + + + + + + + cpe:/o:linux:linux_kernel:4 + + + cpe:/o:linux:linux_kernel:5 + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/o:microsoft:windows + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/a:igor_sysoev:nginx:1.20.1 + + + + + + + + + + cpe:/o:microsoft:windows_8.1:r1 + + + + + cpe:/o:microsoft:windows + + + + + cpe:/o:microsoft:windows_7 + + + + + cpe:/o:microsoft:windows_server_2008::beta3 + cpe:/o:microsoft:windows_server_2008 + + + + + cpe:/o:microsoft:windows_server_2008:r2 + + + cpe:/o:microsoft:windows_8.1 + + + + + cpe:/o:microsoft:windows_vista::- + cpe:/o:microsoft:windows_vista::sp1 + + + cpe:/o:microsoft:windows_server_2008::sp1 + + + cpe:/o:microsoft:windows_7 + + + + + cpe:/o:microsoft:windows_vista::sp2 + + + cpe:/o:microsoft:windows_7::sp1 + + + cpe:/o:microsoft:windows_server_2008 + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cpe:/o:linux:linux_kernel:3 + + + cpe:/o:linux:linux_kernel:4 + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cpe:/o:linux:linux_kernel:3 + + + cpe:/o:linux:linux_kernel:4 + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cpe:/o:linux:linux_kernel:3 + + + cpe:/o:linux:linux_kernel:4 + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/o:microsoft:windows + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + cpe:/h:moxa:nport_5110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + cpe:/o:dec:ultrix:4.5 + + + + + cpe:/h:canon:imagerunner_c3100 + cpe:/h:canon:imagerunner_c6800 + + + + + cpe:/h:adaptec:snap_server_100 + + + + + + + + cpe:/o:data_general:dg%2fux:4.11mu06 + + + + + + cpe:/o:huawei:vrp:3 + + + + + cpe:/h:roku:soundbridge_m500 + cpe:/h:roku:soundbridge_m1000 + + + + + cpe:/h:networksystems:borderguard_1000 + + + + + cpe:/o:ibm:os2:4 + + + + + + cpe:/o:huawei:vrp:3 + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + cpe:/o:dec:ultrix:4.5 + + + + + cpe:/h:canon:imagerunner_c3100 + cpe:/h:canon:imagerunner_c6800 + + + + + cpe:/h:adaptec:snap_server_100 + + + + + + + + cpe:/o:data_general:dg%2fux:4.11mu06 + + + + + + cpe:/o:huawei:vrp:3 + + + + + cpe:/h:roku:soundbridge_m500 + cpe:/h:roku:soundbridge_m1000 + + + + + cpe:/h:networksystems:borderguard_1000 + + + + + cpe:/o:ibm:os2:4 + + + + + + cpe:/o:huawei:vrp:3 + + + + + + + + + + + + + + +
+ + + + + + + + + + + cpe:/a:igor_sysoev:nginx:1.20.1 + + + + + + + + cpe:/o:microsoft:windows + + + + + + cpe:/o:microsoft:windows + + + + + + + + + + cpe:/o:microsoft:windows + + + + + + + + + cpe:/a:igor_sysoev:nginx:1.20.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/nmap/10.95.154.0/ipv4-109515430.md b/nmap/10.95.154.0/ipv4-109515430.md new file mode 100644 index 0000000..cfd6e0b --- /dev/null +++ b/nmap/10.95.154.0/ipv4-109515430.md @@ -0,0 +1,246 @@ +--- +type: "note" +--- + +# 10.95.154.30 - K200001783-01.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 80 | tcp | open | http | +| 135 | tcp | open | msrpc | +| 139 | tcp | open | netbios-ssn | +| 445 | tcp | open | microsoft-ds | +| 3389 | tcp | open | ms-wbt-server | +| 5051 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 0 + }, + "EndTime": 1701810230, + "HostAddress": [ + { + "Address": "10.95.154.30", + "AddressType": "ipv4", + "Vendor": "" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "K200001783-01.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "8F88,8F8A,8F8C,8F8E,8F90,8F92" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "69972", + "Name": "Microsoft Windows 10 2004" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 37370, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Error" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 135, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "microsoft-ds", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "rdp-ntlm-info", + "Output": "\n Target_Name: K200001783-01\n NetBIOS_Domain_Name: K200001783-01\n NetBIOS_Computer_Name: K200001783-01\n DNS_Domain_Name: K200001783-01\n DNS_Computer_Name: K200001783-01\n Product_Version: 10.0.17763\n System_Time: 2023-12-05T21:03:36\u002B00:00" + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=K200001783-01\nNot valid before: 2023-10-26T21:00:10\nNot valid after: 2024-04-26T21:00:10" + }, + { + "ID": "ssl-date", + "Output": "2023-12-05T21:03:48\u002B00:00; 0s from scanner time." + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-wbt-server", + "Product": "Microsoft Terminal Services", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 5051, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "403 Forbidden" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701810203, + "Status": { + "Reason": "localhost-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "255", + "Values": "86827D94,6D46EC37,ADCE7266,B1A57CFC,B86ABB32,9D44ED82" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0001296a8fab.md b/nmap/10.95.154.0/mac-0001296a8fab.md new file mode 100644 index 0000000..fdef8ec --- /dev/null +++ b/nmap/10.95.154.0/mac-0001296a8fab.md @@ -0,0 +1,168 @@ +--- +type: "note" +--- + +# 10.95.154.29 - 00:01:29:6A:8F:AB - frederic-PC.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.29", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:01:29:6A:8F:AB", + "AddressType": "mac", + "Vendor": "DFI" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "frederic-PC.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "6343,6344,6345,6346,6347,6348" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "96", + "Line": "78218", + "Name": "Microsoft Windows 8.1 R1" + }, + { + "Accuracy": "96", + "Line": "79354", + "Name": "Microsoft Windows Phone 7.5 or 8.0" + }, + { + "Accuracy": "96", + "Line": "77958", + "Name": "Microsoft Windows Embedded Standard 7" + }, + { + "Accuracy": "92", + "Line": "74548", + "Name": "Microsoft Windows Server 2008 or 2008 Beta 3" + }, + { + "Accuracy": "92", + "Line": "74947", + "Name": "Microsoft Windows Server 2008 R2 or Windows 8.1" + }, + { + "Accuracy": "92", + "Line": "77028", + "Name": "Microsoft Windows 7 Professional or Windows 8" + }, + { + "Accuracy": "92", + "Line": "80060", + "Name": "Microsoft Windows Vista SP0 or SP1, Windows Server 2008 SP1, or Windows 7" + }, + { + "Accuracy": "92", + "Line": "80332", + "Name": "Microsoft Windows Vista SP2, Windows 7 SP1, or Windows Server 2008" + }, + { + "Accuracy": "90", + "Line": "76693", + "Name": "Microsoft Windows 7" + }, + { + "Accuracy": "89", + "Line": "75151", + "Name": "Microsoft Windows Server 2008 SP1" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (application/json)." + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "258", + "Values": "941773E3,130A3C0E,558EE3BD,8694135C,1A4BFFC4,B8F32782" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "1D3E1ED,1D3E1F7,1D3E201,1D3E20B,1D3E215,1D3E21F" + }, + "Trace": { + "Hops": [ + { + "Host": "frederic-PC.mes.infineon.com", + "IPAddr": "10.95.154.29", + "RTT": 1.07, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Sat Dec 2 00:50:44 2023", + "Seconds": 306759 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-000129a1f145.md b/nmap/10.95.154.0/mac-000129a1f145.md new file mode 100644 index 0000000..422c1bf --- /dev/null +++ b/nmap/10.95.154.0/mac-000129a1f145.md @@ -0,0 +1,257 @@ +--- +type: "note" +--- + +# 10.95.154.14 - 00:01:29:A1:F1:45 - frederic-PC.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 80 | tcp | open | http | +| 135 | tcp | open | msrpc | +| 139 | tcp | open | netbios-ssn | +| 445 | tcp | open | microsoft-ds | +| 554 | tcp | open | rtsp | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.14", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:01:29:A1:F1:45", + "AddressType": "mac", + "Vendor": "DFI" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "frederic-PC.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "33ED,33EE,33EF,33F0,33F1,33F2" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "77958", + "Name": "Microsoft Windows Embedded Standard 7" + }, + { + "Accuracy": "100", + "Line": "79354", + "Name": "Microsoft Windows Phone 7.5 or 8.0" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (application/json)." + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 135, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "workgroup: WORKGROUP", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows 7 - 10 microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 554, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "rtsp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "260", + "Values": "93E3EB58,2EBD0C14,91370FE3,9C25DAF4,6373D235,922D2FD5" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "27A30250,27A3025A,27A30264,27A3026E,27A30278,27A30283" + }, + "Trace": { + "Hops": [ + { + "Host": "frederic-PC.mes.infineon.com", + "IPAddr": "10.95.154.14", + "RTT": 3.29, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Tue Sep 19 14:48:46 2023", + "Seconds": 6650077 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-00105acbc65b.md b/nmap/10.95.154.0/mac-00105acbc65b.md new file mode 100644 index 0000000..ea1c9bb --- /dev/null +++ b/nmap/10.95.154.0/mac-00105acbc65b.md @@ -0,0 +1,113 @@ +# ipv4-109515430.md + + +## 10.95.154.30 / K200001783-01.mes.infineon.com (up) +### Info: + +| Name | Value | +| ---- | ----- | +| Address(es) | 10.95.154.30 | +| Hostnames | ` / K200001783-01.mes.infineon.com (PTR)` | +| Used port | **80/tcp (open)** | +| Used port | **7/tcp (closed)** | +| Used port | **37370/udp (closed)** | +| OS | **Microsoft Windows 10 2004 (100%)** | + + +### Ports: + +| Port | Protocol | State | Service | Reason | Product | Version | Extra Info | +| ---- | -------- | ----- | ------- | ------ | ------- | ------- | ---------- | +| 80 | tcp | open | http | syn-ack | nginx | 1.20.1 | | +| 135 | tcp | open | msrpc | syn-ack | Microsoft Windows RPC | | | +| 139 | tcp | open | netbios-ssn | syn-ack | Microsoft Windows netbios-ssn | | | +| 445 | tcp | open | microsoft-ds | syn-ack | | | | +| 3389 | tcp | open | ms-wbt-server | syn-ack | Microsoft Terminal Services | | | +| 5051 | tcp | open | http | syn-ack | nginx | 1.20.1 | | + + + + +### Traceroute information: + +`No traceroute information` + + + + +### Misc Metrics + +| Metric | Value | +| ------ | ----- | +| Ping Results | localhost-response | +| System Uptime | N/A | +| Network Distance | N/A | +| TCP Sequence Prediction | Good luck! ```86827D94,6D46EC37,ADCE7266,B1A57CFC,B86ABB32,9D44ED82``` | +| IP ID Sequence Generation | Incremental ```8F88,8F8A,8F8C,8F8E,8F90,8F92``` | +| TCP TS Sequence | none returned (unsupported) `````` | + + +### Scripts: +#### PORT 80 + +**Script ID:** `http-title` + +``` +Error +``` +**Script ID:** `http-server-header` + +``` +nginx/1.20.1 +``` + + + +#### PORT 3389 + +**Script ID:** `rdp-ntlm-info` + +``` + + Target_Name: K200001783-01 + NetBIOS_Domain_Name: K200001783-01 + NetBIOS_Computer_Name: K200001783-01 + DNS_Domain_Name: K200001783-01 + DNS_Computer_Name: K200001783-01 + Product_Version: 10.0.17763 + System_Time: 2023-12-05T21:03:36+00:00 +``` +**Script ID:** `ssl-cert` + +``` +Subject: commonName=K200001783-01 +Not valid before: 2023-10-26T21:00:10 +Not valid after: 2024-04-26T21:00:10 +``` +**Script ID:** `ssl-date` + +``` +2023-12-05T21:03:48+00:00; 0s from scanner time. +``` +#### PORT 5051 + +**Script ID:** `http-title` + +``` +403 Forbidden +``` +**Script ID:** `http-server-header` + +``` +nginx/1.20.1 +``` + + + +created: "2023-12-05T21:12:33.850Z" +updated: "2023-12-05T21:12:33.863Z" +type: "note" +---- + +# mac-00105acbc65b + diff --git a/nmap/10.95.154.0/mac-00106f00d74e.md b/nmap/10.95.154.0/mac-00106f00d74e.md new file mode 100644 index 0000000..ac6d9be --- /dev/null +++ b/nmap/10.95.154.0/mac-00106f00d74e.md @@ -0,0 +1,223 @@ +--- +type: "note" +--- + +# 10.95.154.12 - 00:10:6F:00:D7:4E - SP1-1097-0156.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 135 | tcp | open | msrpc | +| 139 | tcp | open | netbios-ssn | +| 1027 | tcp | open | IIS | +| 1029 | tcp | open | ms-lsa | +| 1433 | tcp | open | ms-sql-s | +| 6001 | tcp | open | fastobjects-db | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.12", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:10:6F:00:D7:4E", + "AddressType": "mac", + "Vendor": "Trenton Technology" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "SP1-1097-0156.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Broken little-endian incremental", + "Values": "930C,940C,950C,960C,970C,980C" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "79041", + "Name": "Microsoft Windows NT 4.0 SP5 - SP6a" + } + ], + "OSPortUsed": [ + { + "PortID": 135, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 41337, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 135, + "Protocol": "tcp", + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "msrpc", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 1027, + "Protocol": "tcp", + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "IIS", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 1029, + "Protocol": "tcp", + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "ms-lsa", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 1433, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-sql-s", + "Product": "Microsoft SQL Server 2000", + "Version": "8.00.194.00; RTM" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 6001, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "fastobjects-db", + "Product": "Versant FastObjects database", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "51", + "Values": "4FA222,4FA237,4FA23A,4FA243,4FA253,4FA269" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "SP1-1097-0156.mes.infineon.com", + "IPAddr": "10.95.154.12", + "RTT": 0.64, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-00131402b8b7.md b/nmap/10.95.154.0/mac-00131402b8b7.md new file mode 100644 index 0000000..dcfd41a --- /dev/null +++ b/nmap/10.95.154.0/mac-00131402b8b7.md @@ -0,0 +1,169 @@ +--- +type: "note" +--- + +# 10.95.154.32 - 00:13:14:02:B8:B7 + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | +| 554 | tcp | open | rtsp | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.32", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:13:14:02:B8:B7", + "AddressType": "mac", + "Vendor": "Asiamajor" + } + ], + "HostNames": {}, + "IPIDSequence": { + "Class": "All zeros", + "Values": "0,0,0,0,0,0" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "65323", + "Name": "Linux 3.2 - 4.9" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 37770, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "ExtraInfo": "many brands", + "Method": "probed", + "Name": "telnet", + "Product": "security DVR telnetd", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-auth", + "Output": "\nHTTP/1.1 401 UNAUTHORIZED\r\n Digest realm=pbox qop=auth nonce=tick\n" + }, + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + } + ], + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "http", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 554, + "Protocol": "tcp", + "Script": [ + { + "ID": "fingerprint-strings", + "Output": "\n HTTPOptions, RTSPRequest: \n RTSP/1.0 200 OK\n CSeq: 0\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN\n SIPOptions: \n RTSP/1.0 200 OK\n CSeq: 42 OPTIONS\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + }, + { + "ID": "rtsp-methods", + "Output": "OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "rtsp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "263", + "Values": "C76FC5C7,D79A31F6,67A369EC,D3A1EE40,E9FF6A30,43E0948B" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "356BEC4C,356BEC56,356BEC60,356BEC6B,356BEC75,356BEC7F" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.32", + "RTT": 1.62, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Wed Aug 23 20:23:37 2023", + "Seconds": 8962786 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-00131402bd67.md b/nmap/10.95.154.0/mac-00131402bd67.md new file mode 100644 index 0000000..93821cf --- /dev/null +++ b/nmap/10.95.154.0/mac-00131402bd67.md @@ -0,0 +1,169 @@ +--- +type: "note" +--- + +# 10.95.154.31 - 00:13:14:02:BD:67 + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | +| 554 | tcp | open | rtsp | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.31", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:13:14:02:BD:67", + "AddressType": "mac", + "Vendor": "Asiamajor" + } + ], + "HostNames": {}, + "IPIDSequence": { + "Class": "All zeros", + "Values": "0,0,0,0,0,0" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "65323", + "Name": "Linux 3.2 - 4.9" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 36037, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "ExtraInfo": "many brands", + "Method": "probed", + "Name": "telnet", + "Product": "security DVR telnetd", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-auth", + "Output": "\nHTTP/1.1 401 UNAUTHORIZED\r\n Digest realm=pbox qop=auth nonce=tick\n" + }, + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + } + ], + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "http", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 554, + "Protocol": "tcp", + "Script": [ + { + "ID": "fingerprint-strings", + "Output": "\n HTTPOptions, RTSPRequest: \n RTSP/1.0 200 OK\n CSeq: 0\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN\n SIPOptions: \n RTSP/1.0 200 OK\n CSeq: 42 OPTIONS\n Server: Server Version 9.0.6\n Public: OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + }, + { + "ID": "rtsp-methods", + "Output": "OPTIONS, DESCRIBE, PLAY, SETUP, SET_PARAMETER, GET_PARAMETER, TEARDOWN" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "rtsp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "21A43C7C,3AA01F1A,62B79AFF,4A1270B5,7251CF80,338DF6E" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "1213CAFC,1213CB10,1213CB1A,1213CB24,1213CB2E,1213CB38" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.31", + "RTT": 1.38, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Tue Oct 31 11:33:19 2023", + "Seconds": 3033004 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0050568e38c2.md b/nmap/10.95.154.0/mac-0050568e38c2.md new file mode 100644 index 0000000..2e45101 --- /dev/null +++ b/nmap/10.95.154.0/mac-0050568e38c2.md @@ -0,0 +1,63 @@ +--- +type: "note" +--- + +# 10.95.154.1 - 00:50:56:8E:38:C2 + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.1", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:50:56:8E:38:C2", + "AddressType": "mac", + "Vendor": "VMware" + } + ], + "HostNames": {}, + "IPIDSequence": { + "Class": "", + "Values": "" + }, + "OS": {}, + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "", + "Index": "", + "Values": "" + }, + "TCPTSSequence": { + "Class": "", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.1", + "RTT": 9, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0050568e821e.md b/nmap/10.95.154.0/mac-0050568e821e.md new file mode 100644 index 0000000..69492e0 --- /dev/null +++ b/nmap/10.95.154.0/mac-0050568e821e.md @@ -0,0 +1,237 @@ +--- +type: "note" +--- + +# 10.95.154.7 - 00:50:56:8E:82:1E + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 135 | tcp | open | msrpc | +| 139 | tcp | open | netbios-ssn | +| 445 | tcp | open | microsoft-ds | +| 3389 | tcp | open | ms-wbt-server | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.7", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:50:56:8E:82:1E", + "AddressType": "mac", + "Vendor": "VMware" + } + ], + "HostNames": {}, + "IPIDSequence": { + "Class": "Incremental", + "Values": "5D86,5D87,5D88,5D89,5D8A,5D8B" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "97", + "Line": "76213", + "Name": "Microsoft Windows Server 2016" + }, + { + "Accuracy": "91", + "Line": "75690", + "Name": "Microsoft Windows Server 2012 or Windows Server 2012 R2" + }, + { + "Accuracy": "89", + "Line": "108094", + "Name": "Microsoft Windows Server 2022" + }, + { + "Accuracy": "87", + "Line": "75746", + "Name": "Microsoft Windows Server 2012 R2" + }, + { + "Accuracy": "87", + "Line": "79354", + "Name": "Microsoft Windows Phone 7.5 or 8.0" + } + ], + "OSPortUsed": [ + { + "PortID": 135, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 135, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows Server 2008 R2 - 2012 microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "ssl-date", + "Output": "2023-12-05T21:02:09\u002B00:00; -44s from scanner time." + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=messtec102.EC.local\nNot valid before: 2023-07-07T16:32:23\nNot valid after: 2024-01-06T16:32:23" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-wbt-server", + "Product": "Microsoft Terminal Services", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "256", + "Values": "73824A7,63395C55,37D1FE27,A977F0A0,2E29F,5D9F14B3" + }, + "TCPTSSequence": { + "Class": "1000HZ", + "Values": "3C1D7519,3C1D757D,3C1D75E2,3C1D7648,3C1D76AC,3C1D7711" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.7", + "RTT": 1.34, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Thu Nov 23 21:51:52 2023", + "Seconds": 1008691 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e8651f2b.md b/nmap/10.95.154.0/mac-0090e8651f2b.md new file mode 100644 index 0000000..4142e99 --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e8651f2b.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.36 - 00:90:E8:65:1F:2B - TENCOR1.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.36", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:65:1F:2B", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "TENCOR1.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "6EFB,6EFC,6EFD,6EFE,6EFF,6F00" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 42000, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:65:1F:2B; serial number 7555; uptime 38 days, 16h:31m:25s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "262", + "Values": "BB4E5F39,2D07F6D8,BFE0732A,84F71568,7424881C,982D09C8" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "TENCOR1.mes.infineon.com", + "IPAddr": "10.95.154.36", + "RTT": 20.31, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3bf0.md b/nmap/10.95.154.0/mac-0090e86e3bf0.md new file mode 100644 index 0000000..776a2fd --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3bf0.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.43 - 00:90:E8:6E:3B:F0 - CDE2.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.43", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3B:F0", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "CDE2.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "B74D,B74E,B74F,B750,B751,B752" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 33657, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3B:F0; serial number 3108; uptime 38 days, 16h:34m:30s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + }, + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "F426E925,EB46EC38,9A9F2C22,109491B9,C01D7F78,6F8C4C46" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "CDE2.mes.infineon.com", + "IPAddr": "10.95.154.43", + "RTT": 8.43, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3c18.md b/nmap/10.95.154.0/mac-0090e86e3c18.md new file mode 100644 index 0000000..d83fdb6 --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3c18.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.41 - 00:90:E8:6E:3C:18 - BIORAD2.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.41", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:18", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "BIORAD2.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "C9A1,C9A2,C9A3,C9A4,C9A5,C9A6" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 35597, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:18; serial number 3148; uptime 38 days, 16h:34m:46s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "254", + "Values": "E6F6CA16,EE1A014F,63ED6F4,1A9F52C3,37AD1BAB,F8FF8389" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "BIORAD2.mes.infineon.com", + "IPAddr": "10.95.154.41", + "RTT": 3.55, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3c1e.md b/nmap/10.95.154.0/mac-0090e86e3c1e.md new file mode 100644 index 0000000..e7e3cc9 --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3c1e.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.38 - 00:90:E8:6E:3C:1E - TENCOR3.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.38", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:1E", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "TENCOR3.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "F1F,F20,F21,F22,F23,F24" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 40621, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:1E; serial number 3154; uptime 30 days, 02h:33m:55s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "6D813E3A,E2FFDB5D,344923A6,4D9AC3C8,CF06A128,6C6C8665" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "TENCOR3.mes.infineon.com", + "IPAddr": "10.95.154.38", + "RTT": 3.65, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3c22.md b/nmap/10.95.154.0/mac-0090e86e3c22.md new file mode 100644 index 0000000..a3df016 --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3c22.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.42 - 00:90:E8:6E:3C:22 - BIORAD3.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.42", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:22", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "BIORAD3.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "D1E8,D1E9,D1EA,D1EB,D1EC,D1ED" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 41196, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:22; serial number 3158; uptime 38 days, 16h:34m:14s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "258", + "Values": "82C3078,EA097DC7,8330884C,318C58FB,F521D609,8EBAF110" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "BIORAD3.mes.infineon.com", + "IPAddr": "10.95.154.42", + "RTT": 7.9, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3c23.md b/nmap/10.95.154.0/mac-0090e86e3c23.md new file mode 100644 index 0000000..d827463 --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3c23.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.40 - 00:90:E8:6E:3C:23 - HGCV3.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.40", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:23", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "HGCV3.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "E7A9,E7AA,E7AB,E7AC,E7AD,E7AE" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 37265, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:23; serial number 3159; uptime 38 days, 16h:33m:38s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "C6C379E1,7F504AE4,A41A8630,E9087EB6,5C86BBC6,4F164265" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "HGCV3.mes.infineon.com", + "IPAddr": "10.95.154.40", + "RTT": 3.92, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3c24.md b/nmap/10.95.154.0/mac-0090e86e3c24.md new file mode 100644 index 0000000..57c5d56 --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3c24.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.37 - 00:90:E8:6E:3C:24 - TENCOR2.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.37", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:24", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "TENCOR2.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "6A75,6A76,6A77,6A78,6A79,6A7A" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 35754, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:24; serial number 3160; uptime 38 days, 16h:31m:27s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "262", + "Values": "9A4F1E12,EE8C5B0,B3441051,93A72A06,3F474C8F,30D9DFF4" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "TENCOR2.mes.infineon.com", + "IPAddr": "10.95.154.37", + "RTT": 20.16, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3c26.md b/nmap/10.95.154.0/mac-0090e86e3c26.md new file mode 100644 index 0000000..026e4b5 --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3c26.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.39 - 00:90:E8:6E:3C:26 - HGCV1.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.39", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:26", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "HGCV1.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "3401,3402,3403,3404,3405,3406" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 31022, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:26; serial number 3162; uptime 38 days, 16h:33m:37s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + }, + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "262", + "Values": "C76303DF,59FEA1BA,2EA7DF2C,B9189A5B,2E9F80B6,4E0664AA" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "HGCV1.mes.infineon.com", + "IPAddr": "10.95.154.39", + "RTT": 8.91, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-0090e86e3c35.md b/nmap/10.95.154.0/mac-0090e86e3c35.md new file mode 100644 index 0000000..e804d5b --- /dev/null +++ b/nmap/10.95.154.0/mac-0090e86e3c35.md @@ -0,0 +1,171 @@ +--- +type: "note" +--- + +# 10.95.154.17 - 00:90:E8:6E:3C:35 - HGCV2.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 23 | tcp | open | telnet | +| 80 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.17", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:90:E8:6E:3C:35", + "AddressType": "mac", + "Vendor": "Moxa Technologies" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "HGCV2.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "60AA,60AB,60AC,60AD,60AE,60AF" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "98", + "Line": "87003", + "Name": "MOXA NPort 5110 serial device server" + }, + { + "Accuracy": "96", + "Line": "86968", + "Name": "MOXA Ethernet-to-serial bridge" + }, + { + "Accuracy": "95", + "Line": "87037", + "Name": "MOXA NPort Express 2.5" + }, + { + "Accuracy": "92", + "Line": "87020", + "Name": "MOXA NPort 5210 serial device server" + }, + { + "Accuracy": "92", + "Line": "87054", + "Name": "MOXA NPort Express DE-211 serial device server" + } + ], + "OSPortUsed": [ + { + "PortID": 23, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 40975, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 23, + "Protocol": "tcp", + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/h:moxa:nport_5110" + ], + "ExtraInfo": "MAC 00:90:E8:6E:3C:35; serial number 3177; uptime 39 days, 20h:05m:22s", + "Method": "probed", + "Name": "telnet", + "Product": "Moxa NPort 5110 serial-to-IP converter telnetd", + "Version": "2.9 Build 17103018" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (text/html)." + }, + { + "ID": "http-server-header", + "Output": "MoxaHttp/1.0" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "MoxaHttp", + "Version": "1.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "60", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "3F7AD2B5,FD1D3494,F960962E,9EA74070,8CC48DAC,31C38962" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "HGCV2.mes.infineon.com", + "IPAddr": "10.95.154.17", + "RTT": 7.99, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-00c0e50002ed.md b/nmap/10.95.154.0/mac-00c0e50002ed.md new file mode 100644 index 0000000..b079ef1 --- /dev/null +++ b/nmap/10.95.154.0/mac-00c0e50002ed.md @@ -0,0 +1,153 @@ +--- +type: "note" +--- + +# 10.95.154.52 - 00:C0:E5:00:02:ED + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 5000 | tcp | open | upnp | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.52", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:C0:E5:00:02:ED", + "AddressType": "mac", + "Vendor": "Gespac" + } + ], + "HostNames": {}, + "IPIDSequence": { + "Class": "Incremental", + "Values": "25D0,25D1,25D2,25D3,25D4,25D5" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "90", + "Line": "21389", + "Name": "DEC Ultrix 4.5" + }, + { + "Accuracy": "90", + "Line": "12778", + "Name": "Canon imageRUNNER C3100 or C6800 printer" + }, + { + "Accuracy": "88", + "Line": "1395", + "Name": "Adaptec Snap Server 100 NAS device" + }, + { + "Accuracy": "88", + "Line": "1378", + "Name": "Adaptec RAID 4000 I/O controller" + }, + { + "Accuracy": "88", + "Line": "20985", + "Name": "Data General DG/UX 4.11MU06" + }, + { + "Accuracy": "88", + "Line": "768", + "Name": "3Com SuperStack 3 Switch 4500 or Huawei Quidway AR 18-32 ADSL router" + }, + { + "Accuracy": "87", + "Line": "95670", + "Name": "Roku SoundBridge M500 or M1000 music player" + }, + { + "Accuracy": "87", + "Line": "88753", + "Name": "Network Systems BorderGuard 1000 firewall" + }, + { + "Accuracy": "87", + "Line": "39564", + "Name": "IBM OS/2 Warp 4" + }, + { + "Accuracy": "87", + "Line": "330", + "Name": "3Com 4200G or Huawei Quidway S5600 switch" + } + ], + "OSPortUsed": [ + { + "PortID": 5000, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 5000, + "Protocol": "tcp", + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "upnp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "255", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "25", + "Values": "7BF1BA01,7BF2B401,7BF41201,7BF50C01,7BF60601,7BF70001" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.52", + "RTT": 8.64, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-00c0e50005d0.md b/nmap/10.95.154.0/mac-00c0e50005d0.md new file mode 100644 index 0000000..80145cd --- /dev/null +++ b/nmap/10.95.154.0/mac-00c0e50005d0.md @@ -0,0 +1,153 @@ +--- +type: "note" +--- + +# 10.95.154.53 - 00:C0:E5:00:05:D0 + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 5000 | tcp | open | upnp | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.53", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:C0:E5:00:05:D0", + "AddressType": "mac", + "Vendor": "Gespac" + } + ], + "HostNames": {}, + "IPIDSequence": { + "Class": "Incremental", + "Values": "EB1,EB2,EB3,EB4,EB5,EB6" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "90", + "Line": "21389", + "Name": "DEC Ultrix 4.5" + }, + { + "Accuracy": "90", + "Line": "12778", + "Name": "Canon imageRUNNER C3100 or C6800 printer" + }, + { + "Accuracy": "88", + "Line": "1395", + "Name": "Adaptec Snap Server 100 NAS device" + }, + { + "Accuracy": "88", + "Line": "1378", + "Name": "Adaptec RAID 4000 I/O controller" + }, + { + "Accuracy": "88", + "Line": "20985", + "Name": "Data General DG/UX 4.11MU06" + }, + { + "Accuracy": "88", + "Line": "768", + "Name": "3Com SuperStack 3 Switch 4500 or Huawei Quidway AR 18-32 ADSL router" + }, + { + "Accuracy": "87", + "Line": "95670", + "Name": "Roku SoundBridge M500 or M1000 music player" + }, + { + "Accuracy": "87", + "Line": "88753", + "Name": "Network Systems BorderGuard 1000 firewall" + }, + { + "Accuracy": "87", + "Line": "39564", + "Name": "IBM OS/2 Warp 4" + }, + { + "Accuracy": "87", + "Line": "330", + "Name": "3Com 4200G or Huawei Quidway S5600 switch" + } + ], + "OSPortUsed": [ + { + "PortID": 5000, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 5000, + "Protocol": "tcp", + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "upnp", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "255", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "25", + "Values": "9CE41A01,9CE57801,9CE67201,9CE76C01,9CE86601,9CE96001" + }, + "TCPTSSequence": { + "Class": "none returned (unsupported)", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "", + "IPAddr": "10.95.154.53", + "RTT": 10.26, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-00d86101bc66.md b/nmap/10.95.154.0/mac-00d86101bc66.md new file mode 100644 index 0000000..b6b901c --- /dev/null +++ b/nmap/10.95.154.0/mac-00d86101bc66.md @@ -0,0 +1,238 @@ +--- +type: "note" +--- + +# 10.95.154.27 - 00:D8:61:01:BC:66 - cde-resmap + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 80 | tcp | open | http | +| 139 | tcp | open | netbios-ssn | +| 445 | tcp | open | microsoft-ds | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.27", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "00:D8:61:01:BC:66", + "AddressType": "mac", + "Vendor": "Micro-Star Intl" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "cde-resmap", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "F106,F107,F108,F109,F10A,F10B" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "94", + "Line": "82821", + "Name": "Microsoft Windows XP SP2 or SP3" + }, + { + "Accuracy": "94", + "Line": "82138", + "Name": "Microsoft Windows XP SP2" + }, + { + "Accuracy": "93", + "Line": "72053", + "Name": "Microsoft Windows Server 2003" + }, + { + "Accuracy": "93", + "Line": "83894", + "Name": "Microsoft Windows XP SP3" + }, + { + "Accuracy": "91", + "Line": "81304", + "Name": "Microsoft Windows XP Professional SP3" + }, + { + "Accuracy": "90", + "Line": "71364", + "Name": "Microsoft Windows 2000 SP4" + }, + { + "Accuracy": "89", + "Line": "30414", + "Name": "General Dynamics R8000B Comm Systems Analyzer" + }, + { + "Accuracy": "89", + "Line": "83080", + "Name": "Microsoft Windows XP SP2 or SP3, or Windows Embedded Standard 2009" + }, + { + "Accuracy": "88", + "Line": "73425", + "Name": "Microsoft Windows Server 2003 SP2" + }, + { + "Accuracy": "87", + "Line": "82608", + "Name": "Microsoft Windows XP SP2 (firewall disabled)" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (application/json)." + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows_xp" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows XP microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "257", + "Values": "2266F692,5ADA9BF4,1B5DF959,92E72F2C,E21DBA42,B0FFE1A1" + }, + "TCPTSSequence": { + "Class": "zero timestamp", + "Values": "0,0,0,0,0,0" + }, + "Trace": { + "Hops": [ + { + "Host": "cde-resmap", + "IPAddr": "10.95.154.27", + "RTT": 1.04, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-1c6f65c351db.md b/nmap/10.95.154.0/mac-1c6f65c351db.md new file mode 100644 index 0000000..468785c --- /dev/null +++ b/nmap/10.95.154.0/mac-1c6f65c351db.md @@ -0,0 +1,343 @@ +--- +type: "note" +--- + +# 10.95.154.10 - 1C:6F:65:C3:51:DB - MESD1BIORAD4.ifxcep.net + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 80 | tcp | open | http | +| 135 | tcp | open | msrpc | +| 139 | tcp | open | netbios-ssn | +| 445 | tcp | open | microsoft-ds | +| 3389 | tcp | open | ms-wbt-server | +| 8080 | tcp | open | http | +| 8081 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.10", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "1C:6F:65:C3:51:DB", + "AddressType": "mac", + "Vendor": "Giga-byte Technology" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "MESD1BIORAD4.ifxcep.net", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "5E7,5E8,5E9,5EA,5EB,5EC" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "83119", + "Name": "Microsoft Windows XP SP2 or SP3, or Windows Server 2003" + } + ], + "OSPortUsed": [ + { + "PortID": 80, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 40858, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "403 Forbidden" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 135, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows_xp" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows XP microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows_xp" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "ms-wbt-server", + "Product": "Microsoft Terminal Services", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 8080, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "403 Forbidden" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 8081, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title (application/json)." + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.20.1" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.20.1" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.20.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "253", + "Values": "98BD45EB,4EE97BBC,83EEDF2B,3B537D49,93639571,6C234182" + }, + "TCPTSSequence": { + "Class": "zero timestamp", + "Values": "0,0,0,0,0,0" + }, + "Trace": { + "Hops": [ + { + "Host": "MESD1BIORAD4.ifxcep.net", + "IPAddr": "10.95.154.10", + "RTT": 0.89, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-6c0b84e39411.md b/nmap/10.95.154.0/mac-6c0b84e39411.md new file mode 100644 index 0000000..5029695 --- /dev/null +++ b/nmap/10.95.154.0/mac-6c0b84e39411.md @@ -0,0 +1,210 @@ +--- +type: "note" +--- + +# 10.95.154.18 - 6C:0B:84:E3:94:11 - unity5 + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 22 | tcp | open | ssh | +| 80 | tcp | open | http | +| 443 | tcp | open | http | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.18", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "6C:0B:84:E3:94:11", + "AddressType": "mac", + "Vendor": "Universal Global Scientific Industrial" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "unity5", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "All zeros", + "Values": "0,0,0,0,0,0" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "67250", + "Name": "Linux 4.15 - 5.8" + } + ], + "OSPortUsed": [ + { + "PortID": 22, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 42173, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 22, + "Protocol": "tcp", + "Script": [ + { + "ID": "ssh-hostkey", + "Output": "\n 256 42:e0:3b:ed:fa:d3:45:d1:c1:84:aa:17:3e:d8:ea:ee (ECDSA)\n 256 b7:c9:c0:2d:30:e3:7c:05:7f:3c:c3:75:ec:45:7e:8a (ED25519)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:openbsd:openssh:8.9p1", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu Linux; protocol 2.0", + "Method": "probed", + "Name": "ssh", + "Product": "OpenSSH", + "Version": "8.9p1 Ubuntu 3ubuntu0.1" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 80, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Welcome to nginx!" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.18.0 (Ubuntu)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.18.0", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.18.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + }, + { + "PortID": 443, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Site doesn\u0027t have a title." + }, + { + "ID": "tls-alpn", + "Output": "\n h2\n http/1.1" + }, + { + "ID": "tls-nextprotoneg", + "Output": "\n h2\n http/1.1" + }, + { + "ID": "http-server-header", + "Output": "nginx/1.18.0 (Ubuntu)" + }, + { + "ID": "ssl-date", + "Output": "TLS randomness does not represent time" + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=unity5/organizationName=Infineon Technologies Americas Corp./stateOrProvinceName=Arizona/countryName=US\nSubject Alternative Name: DNS:unity5, DNS:localhost, DNS:127.0.0.1\nNot valid before: 2023-06-04T00:03:26\nNot valid after: 2024-06-03T00:03:26" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/a:igor_sysoev:nginx:1.18.0", + "cpe:/o:linux:linux_kernel" + ], + "ExtraInfo": "Ubuntu", + "Method": "probed", + "Name": "http", + "Product": "nginx", + "Version": "1.18.0" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "64", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "264", + "Values": "1AE5394F,83DFE258,72D1EF81,71DE6ED6,8E767FA9,1D4B322E" + }, + "TCPTSSequence": { + "Class": "1000HZ", + "Values": "F758348F,F75834F5,F7583559,F75835BD,F7583622,F7583688" + }, + "Trace": { + "Hops": [ + { + "Host": "unity5", + "IPAddr": "10.95.154.18", + "RTT": 0.56, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Wed Oct 18 13:18:37 2023", + "Seconds": 4149886 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-7c575863ba9e.md b/nmap/10.95.154.0/mac-7c575863ba9e.md new file mode 100644 index 0000000..3f65f98 --- /dev/null +++ b/nmap/10.95.154.0/mac-7c575863ba9e.md @@ -0,0 +1,70 @@ +--- +type: "note" +--- + +# 10.95.154.34 - 7C:57:58:63:BA:9E - ISCFMXL2472FTD.infineon.com + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.34", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "7C:57:58:63:BA:9E", + "AddressType": "mac", + "Vendor": "" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "ISCFMXL2472FTD.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "", + "Values": "" + }, + "OS": {}, + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "", + "Index": "", + "Values": "" + }, + "TCPTSSequence": { + "Class": "", + "Values": "" + }, + "Trace": { + "Hops": [ + { + "Host": "ISCFMXL2472FTD.infineon.com", + "IPAddr": "10.95.154.34", + "RTT": 49, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "", + "Seconds": 0 + } +} +``` + diff --git a/nmap/10.95.154.0/mac-c400ad2390f5.md b/nmap/10.95.154.0/mac-c400ad2390f5.md new file mode 100644 index 0000000..960f20b --- /dev/null +++ b/nmap/10.95.154.0/mac-c400ad2390f5.md @@ -0,0 +1,391 @@ +--- +type: "note" +--- + +# 10.95.154.20 - C4:00:AD:23:90:F5 - INFINEONEPI230.mes.infineon.com + +## Port(s) + +| Id | Protocol | State | Service | +| - | - | - | - | +| 135 | tcp | open | msrpc | +| 139 | tcp | open | netbios-ssn | +| 445 | tcp | open | microsoft-ds | +| 3389 | tcp | open | ms-wbt-server | +| 8000 | tcp | open | mc-nmf | +| 8080 | tcp | open | http | +| 49152 | tcp | open | msrpc | +| 49153 | tcp | open | msrpc | +| 49154 | tcp | open | msrpc | + +```json +{ + "Distance": { + "Value": 1 + }, + "EndTime": 1701810203, + "HostAddress": [ + { + "Address": "10.95.154.20", + "AddressType": "ipv4", + "Vendor": "" + }, + { + "Address": "C4:00:AD:23:90:F5", + "AddressType": "mac", + "Vendor": "Advantech Technology (China)" + } + ], + "HostNames": { + "HostName": [ + { + "Name": "INFINEONEPI230.mes.infineon.com", + "Type": "PTR" + } + ] + }, + "IPIDSequence": { + "Class": "Incremental", + "Values": "7FDD,7FDE,7FDF,7FE0,7FE1,7FE2" + }, + "OS": { + "OSMatch": [ + { + "Accuracy": "100", + "Line": "77205", + "Name": "Microsoft Windows 7 SP0 - SP1, Windows Server 2008 SP1, Windows Server 2008 R2, Windows 8, or Windows 8.1 Update 1" + } + ], + "OSPortUsed": [ + { + "PortID": 135, + "Protocol": "tcp", + "State": "open" + }, + { + "PortID": 7, + "Protocol": "tcp", + "State": "closed" + }, + { + "PortID": 32012, + "Protocol": "udp", + "State": "closed" + } + ] + }, + "Port": [ + { + "PortID": 135, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 139, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "netbios-ssn", + "Product": "Microsoft Windows netbios-ssn", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 445, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "workgroup: WORKGROUP", + "Method": "probed", + "Name": "microsoft-ds", + "Product": "Microsoft Windows 7 - 10 microsoft-ds", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 3389, + "Protocol": "tcp", + "Script": [ + { + "ID": "ssl-date", + "Output": "2023-12-05T21:27:49\u002B00:00; \u002B24m56s from scanner time." + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ssl-cert", + "Output": "Subject: commonName=INFINEONEPI230\nNot valid before: 2023-11-07T06:23:23\nNot valid after: 2024-05-08T06:23:23" + } + ], + "Service": { + "Conf": "3", + "ExtraInfo": "", + "Method": "table", + "Name": "ms-wbt-server", + "Product": "", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 8000, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "mc-nmf", + "Product": ".NET Message Framing", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 8080, + "Protocol": "tcp", + "Script": [ + { + "ID": "http-title", + "Output": "Not Found" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "http-server-header", + "Output": "Embedthis-http" + } + ], + "Service": { + "Conf": "10", + "ExtraInfo": "", + "Method": "probed", + "Name": "http", + "Product": "Embedthis HTTP lib httpd", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 49152, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 49153, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + }, + { + "PortID": 49154, + "Protocol": "tcp", + "Script": [ + { + "ID": "ms-sql-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + }, + { + "ID": "ms-sql-ntlm-info", + "Output": "ERROR: Script execution failed (use -d to debug)" + } + ], + "Service": { + "Conf": "10", + "CPE": [ + "cpe:/o:microsoft:windows" + ], + "ExtraInfo": "", + "Method": "probed", + "Name": "msrpc", + "Product": "Microsoft Windows RPC", + "Version": "" + }, + "State": { + "Reason": "syn-ack", + "ReasonTTL": "128", + "State": "open" + } + } + ], + "StartTime": 1701809885, + "Status": { + "Reason": "arp-response", + "State": "up" + }, + "TCPSequence": { + "Difficulty": "Good luck!", + "Index": "261", + "Values": "C17C2449,5A4A8B6F,EA7B03FA,9C1CA9B7,8F0A3BAE,464AEA10" + }, + "TCPTSSequence": { + "Class": "100HZ", + "Values": "2B3B10C,2B3B116,2B3B120,2B3B12A,2B3B134,2B3B13E" + }, + "Trace": { + "Hops": [ + { + "Host": "INFINEONEPI230.mes.infineon.com", + "IPAddr": "10.95.154.20", + "RTT": 0.51, + "TTL": 1 + } + ], + "Port": 0, + "Protocol": "" + }, + "Uptime": { + "LastBoot": "Thu Nov 30 08:06:02 2023", + "Seconds": 453441 + } +} +``` + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..3b41ece --- /dev/null +++ b/package-lock.json @@ -0,0 +1,35 @@ +{ + "name": "EC-Documentation", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "devDependencies": { + "prettier": "3.0.0" + } + }, + "node_modules/prettier": { + "version": "3.0.0", + "resolved": "http://localhost:4873/prettier/-/prettier-3.0.0.tgz", + "integrity": "sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + } + }, + "dependencies": { + "prettier": { + "version": "3.0.0", + "resolved": "http://localhost:4873/prettier/-/prettier-3.0.0.tgz", + "integrity": "sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..eedaa60 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "scripts": { + "prettier.check": "prettier . --check", + "prettier.write": "prettier . --write", + "kanbn.board": "kanbn board", + "kanbn.board.json": "kanbn board -j > .kanbn/board.json", + "kanbn.manual": "kanbn board -j | L:/Git/kanbn2md/kanbn2md.exe >.kanbn/board.md", + "file-helper.manual": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net7.0/win-x64/publish/File-Folder-Helper.exe s M D:/Documents/Projects/EC-Documentation", + "garbage-collect": "git gc" + }, + "devDependencies": { + "prettier": "3.0.0" + } +} diff --git a/port/dameware-spv-6129.md b/port/dameware-spv-6129.md new file mode 100644 index 0000000..a037ecd --- /dev/null +++ b/port/dameware-spv-6129.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# DameWare-SPV-6129 diff --git a/port/dameware-srp-6129.md b/port/dameware-srp-6129.md new file mode 100644 index 0000000..3308e2c --- /dev/null +++ b/port/dameware-srp-6129.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.250Z" +updated: "2024-01-06T01:25:36.250Z" +--- + +# DameWare-SRP-6129 diff --git a/port/eaf-management-server-9003.md b/port/eaf-management-server-9003.md new file mode 100644 index 0000000..f116872 --- /dev/null +++ b/port/eaf-management-server-9003.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# eaf-management-server-9003 diff --git a/port/eaf-sp101-8080.md b/port/eaf-sp101-8080.md new file mode 100644 index 0000000..b6585f1 --- /dev/null +++ b/port/eaf-sp101-8080.md @@ -0,0 +1,16 @@ +--- +type: "port" +assigned: "" +physical-address: "00:10:6F:00:D7:4E" +namespace: "MET08DDUPSP1TBI" +created: "2024-01-06T01:25:36.251Z" +updated: "2024-01-06T01:25:36.251Z" +--- + +# eaf-sp101-8080 + +- [ ] [http](http://eaf-staging.mes.infineon.com:8080/api/Barcode/BIORAD#) + +```c# +HttpSelfHostConfiguration config = new("http://localhost:8080/"); +``` diff --git a/port/file-bio-rad-stratus-4-445.md b/port/file-bio-rad-stratus-4-445.md new file mode 100644 index 0000000..747f340 --- /dev/null +++ b/port/file-bio-rad-stratus-4-445.md @@ -0,0 +1,13 @@ +--- +type: "port" +assigned: "" +physical-address: "1C:6F:65:C3:51:DB" +ip: "10.95.154.10" +namespace: "MET08THFTIRSTRATUS" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# file-bio-rad-stratus-4-445 + +- [ ] [2003](../fileshare/2003.md) diff --git a/port/file-bio-rad-stratus-5-445.md b/port/file-bio-rad-stratus-5-445.md new file mode 100644 index 0000000..482b0de --- /dev/null +++ b/port/file-bio-rad-stratus-5-445.md @@ -0,0 +1,13 @@ +--- +type: "port" +assigned: "" +physical-address: "00:30:48:43:DE:97" +ip: "10.95.154.11" +namespace: "MET08THFTIRSTRATUS" +created: "2024-01-06T01:25:36.252Z" +updated: "2024-01-06T01:25:36.252Z" +--- + +# file-bio-rad-stratus-5-445 + +- [ ] [2003](../fileshare/2003.md) diff --git a/port/file-sp101-139.md b/port/file-sp101-139.md new file mode 100644 index 0000000..a385519 --- /dev/null +++ b/port/file-sp101-139.md @@ -0,0 +1,93 @@ +--- +type: "port" +assigned: "" +physical-address: "00:10:6F:00:D7:4E" +namespace: "MET08DDUPSP1TBI" +created: "2024-01-06T01:25:36.253Z" +updated: "2024-01-06T01:25:36.253Z" +--- + +# file-sp101-139 + +- [ ] [file](\\10.95.154.12\Testdata) + +```bat +@ECHO ON + +:start + +xcopy z:\*.txt y:\RawData\SP1 +xcopy z:\*.prn y:\RawData\SP1 +del z:\*.txt +del z:\*.prn + +ping /n 1 /w 2000 localhost >nul + +goto start +``` + +```vba +Option Explicit + +Const sLocal = "C:\Tmp\SP1" +Const sWin2008 = "\\10.95.1.211\Share" +Const sSource = "\\10.95.154.12\testdata" + +Dim oFile +Dim oFileLog +Dim oFiles +Dim oFolder +Dim oFSO +Dim sErrMsg + +Set oFSO = CreateObject("Scripting.FileSystemObject") + +sErrMsg = "" + +On Error Resume Next + +Set oFiles = oFSO.GetFolder(sSource).Files + +If Err.Number <> 0 Then + sErrMsg = Err.Description +Else + For Each oFile In oFiles + If LCase(Right(oFile.Name, 4)) = ".txt" OR LCase(Right(oFile.Name, 4)) = ".prn" Then + Call oFSO.MoveFile(sSource & "\" & oFile.Name, sLocal & "\" & oFile.Name) + If Err.Number <> 0 Then + sErrMsg = Err.Description + Exit For + End If + Set oFile = Nothing + End If + Next +End If +Set oFiles = Nothing +Set oFolder = oFSO.GetFolder(sLocal) +For Each oFile In oFolder.Files + If LCase(Right(oFile.Name, 4)) = ".txt" OR LCase(Right(oFile.Name, 4)) = ".prn" Then + Call oFSO.CopyFile(sLocal & "\" & oFile.Name, sWin2008 & "\" & oFile.Name, True) + Call oFSO.DeleteFile(sLocal & "\" & oFile.Name) + End If +Next +If Len(sErrMsg) = 0 Then + sErrMsg = "Move OK" +Else + sErrMsg = "Error moving file: Err.Number = " & Err.Number & " ; Err.Description = " & Err.Description + Call MsgBox(sErrMsg) + Call MsgBox("Suggestion: Click on the MOCVD drive and make sure it does not prompt for Labman password") +End If +If Len(sErrMsg) > 0 Then + Set oFileLog = oFSO.OpenTextFile("C:\Log_File_Copy\SP1.txt", 8, True) + Call oFileLog.WriteLine(CStr(Now) & " " & sErrMsg) + Call oFileLog.Close() + Set oFileLog = Nothing +End If + +Call MsgBox("Exit") + +Set oFile = Nothing +Set oFolder = Nothing +Set oFSO = Nothing +WScript.quit() +``` diff --git a/port/iis-mesa-reporting-services-50200.md b/port/iis-mesa-reporting-services-50200.md new file mode 100644 index 0000000..478d7b5 --- /dev/null +++ b/port/iis-mesa-reporting-services-50200.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# iis-mesa-reporting-services-50200 + +``` +[x] http://localhost:50200/ProductionReport +``` diff --git a/port/iis-mesa-reporting-services-api-50201.md b/port/iis-mesa-reporting-services-api-50201.md new file mode 100644 index 0000000..5f58dd9 --- /dev/null +++ b/port/iis-mesa-reporting-services-api-50201.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.253Z" +updated: "2024-01-06T01:25:36.253Z" +--- + +# iis-mesa-reporting-services-api-50201 diff --git a/port/iis-mesareportingservices-443.md b/port/iis-mesareportingservices-443.md new file mode 100644 index 0000000..4ee2400 --- /dev/null +++ b/port/iis-mesareportingservices-443.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# IIS-MesaReportingServices-443 diff --git a/port/iis-mesareportingservices-50200.md b/port/iis-mesareportingservices-50200.md new file mode 100644 index 0000000..6e071cd --- /dev/null +++ b/port/iis-mesareportingservices-50200.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.255Z" +updated: "2024-01-06T01:25:36.255Z" +--- + +# IIS-MesaReportingServices-50200 diff --git a/port/iis-mesareportingservices-50205.md b/port/iis-mesareportingservices-50205.md new file mode 100644 index 0000000..ef35e51 --- /dev/null +++ b/port/iis-mesareportingservices-50205.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.255Z" +updated: "2024-01-06T01:25:36.255Z" +--- + +# IIS-MesaReportingServices-50205 diff --git a/port/iis-mesareportingservices-80.md b/port/iis-mesareportingservices-80.md new file mode 100644 index 0000000..0b70212 --- /dev/null +++ b/port/iis-mesareportingservices-80.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.256Z" +updated: "2024-01-06T01:25:36.256Z" +--- + +# IIS-MesaReportingServices-80 diff --git a/port/iis-mesareportingservicesapi-50201.md b/port/iis-mesareportingservicesapi-50201.md new file mode 100644 index 0000000..d123924 --- /dev/null +++ b/port/iis-mesareportingservicesapi-50201.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# IIS-MesaReportingServicesAPI-50201 diff --git a/port/iis-metrology-443.md b/port/iis-metrology-443.md new file mode 100644 index 0000000..f8146f4 --- /dev/null +++ b/port/iis-metrology-443.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.259Z" +updated: "2024-01-06T01:25:36.259Z" +--- + +# iis-metrology-443 diff --git a/port/iis-metrology-80.md b/port/iis-metrology-80.md new file mode 100644 index 0000000..ad360d5 --- /dev/null +++ b/port/iis-metrology-80.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.260Z" +updated: "2024-01-06T01:25:36.260Z" +--- + +# iis-metrology-80 diff --git a/port/iis-oi-metrology-archive-443.md b/port/iis-oi-metrology-archive-443.md new file mode 100644 index 0000000..a685ba2 --- /dev/null +++ b/port/iis-oi-metrology-archive-443.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# iis-oi-metrology-archive-443 diff --git a/port/iis-oi-metrology-archive-80.md b/port/iis-oi-metrology-archive-80.md new file mode 100644 index 0000000..e1e2188 --- /dev/null +++ b/port/iis-oi-metrology-archive-80.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.260Z" +updated: "2024-01-06T01:25:36.260Z" +--- + +# iis-oi-metrology-archive-80 diff --git a/port/iis-oi-metrology-viewer-4432.md b/port/iis-oi-metrology-viewer-4432.md new file mode 100644 index 0000000..8e8d801 --- /dev/null +++ b/port/iis-oi-metrology-viewer-4432.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.264Z" +updated: "2024-01-06T01:25:36.264Z" +--- + +# iis-oi-metrology-viewer-4432 diff --git a/port/iis-oi-metrology-viewer-802.md b/port/iis-oi-metrology-viewer-802.md new file mode 100644 index 0000000..29fc94f --- /dev/null +++ b/port/iis-oi-metrology-viewer-802.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.338Z" +updated: "2024-01-06T01:25:36.338Z" +--- + +# iis-oi-metrology-viewer-802 diff --git a/port/iis-oi-metrology-viewer-server-443.md b/port/iis-oi-metrology-viewer-server-443.md new file mode 100644 index 0000000..4a1f939 --- /dev/null +++ b/port/iis-oi-metrology-viewer-server-443.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.266Z" +updated: "2024-01-06T01:25:36.266Z" +--- + +# iis-oi-metrology-viewer-server-443 diff --git a/port/iis-oi-metrology-viewer-server-50301.md b/port/iis-oi-metrology-viewer-server-50301.md new file mode 100644 index 0000000..a901872 --- /dev/null +++ b/port/iis-oi-metrology-viewer-server-50301.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.266Z" +updated: "2024-01-06T01:25:36.266Z" +--- + +# iis-oi-metrology-viewer-server-50301 + +```bash +# http://localhost:50301/api/tooltypes +``` diff --git a/port/iis-oi-metrology-viewer-server-80.md b/port/iis-oi-metrology-viewer-server-80.md new file mode 100644 index 0000000..ace06ee --- /dev/null +++ b/port/iis-oi-metrology-viewer-server-80.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.336Z" +updated: "2024-01-06T01:25:36.336Z" +--- + +# iis-oi-metrology-viewer-server-80 diff --git a/port/nginx-cde4-json-80.md b/port/nginx-cde4-json-80.md new file mode 100644 index 0000000..3f600fd --- /dev/null +++ b/port/nginx-cde4-json-80.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:D8:61:01:BC:66" +namespace: "MET08RESIMAPCDE" +created: "2024-01-06T01:25:36.267Z" +updated: "2024-01-06T01:25:36.267Z" +--- + +# nginx-cde4-json-80 + +- [ ] [json](http://10.95.154.27:80/) diff --git a/port/nginx-cde5-json-80.md b/port/nginx-cde5-json-80.md new file mode 100644 index 0000000..fe72211 --- /dev/null +++ b/port/nginx-cde5-json-80.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:01:29:6A:8F:AB" +namespace: "MET08RESIMAPCDE" +created: "2024-01-06T01:25:36.328Z" +updated: "2024-01-06T01:25:36.328Z" +--- + +# nginx-cde5-json-80 + +- [ ] [json](http://10.95.154.29:80/) diff --git a/port/nginx-cde6-json-80.md b/port/nginx-cde6-json-80.md new file mode 100644 index 0000000..e1e5668 --- /dev/null +++ b/port/nginx-cde6-json-80.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:01:29:A1:F1:45" +namespace: "MET08RESIMAPCDE" +created: "2024-01-06T01:25:36.269Z" +updated: "2024-01-06T01:25:36.269Z" +--- + +# nginx-cde6-json-80 + +- [ ] [json](http://10.95.154.14:80/) diff --git a/port/nginx-ecapcsvc-json-5052.md b/port/nginx-ecapcsvc-json-5052.md new file mode 100644 index 0000000..e993fc7 --- /dev/null +++ b/port/nginx-ecapcsvc-json-5052.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.326Z" +updated: "2024-01-06T01:25:36.326Z" +--- + +# nginx-ecapcsvc-json-5052 diff --git a/port/nginx-ecfisysadmin-archive-5001.md b/port/nginx-ecfisysadmin-archive-5001.md new file mode 100644 index 0000000..dfaa17e --- /dev/null +++ b/port/nginx-ecfisysadmin-archive-5001.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.269Z" +updated: "2024-01-06T01:25:36.269Z" +--- + +# nginx-ecfisysadmin-archive-5001 diff --git a/port/nginx-ecfisysadmin-archive-8080.md b/port/nginx-ecfisysadmin-archive-8080.md new file mode 100644 index 0000000..2e9b7e3 --- /dev/null +++ b/port/nginx-ecfisysadmin-archive-8080.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.270Z" +updated: "2024-01-06T01:25:36.270Z" +--- + +# nginx-ecfisysadmin-archive-8080 diff --git a/port/nginx-ecfisysadmin-viewer-5004.md b/port/nginx-ecfisysadmin-viewer-5004.md new file mode 100644 index 0000000..48ac3a0 --- /dev/null +++ b/port/nginx-ecfisysadmin-viewer-5004.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.272Z" +updated: "2024-01-06T01:25:36.272Z" +--- + +# nginx-ecfisysadmin-viewer-5004 diff --git a/port/nginx-ecfisysadmin-viewer-8080.md b/port/nginx-ecfisysadmin-viewer-8080.md new file mode 100644 index 0000000..69f461c --- /dev/null +++ b/port/nginx-ecfisysadmin-viewer-8080.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.272Z" +updated: "2024-01-06T01:25:36.272Z" +--- + +# nginx-ecfisysadmin-viewer-8080 diff --git a/port/nginx-srp-dex-5052.md b/port/nginx-srp-dex-5052.md new file mode 100644 index 0000000..704db90 --- /dev/null +++ b/port/nginx-srp-dex-5052.md @@ -0,0 +1,11 @@ +--- +type: "port" +assigned: "" +physical-address: "00:10:5A:CB:C6:5B" +created: "2024-01-06T01:25:36.272Z" +updated: "2024-01-06T01:25:36.272Z" +--- + +# nginx-srp-dex-5052 + +- [ ] [dex](http://10.95.154.30:5052/) diff --git a/port/nginx-srp-json-5054.md b/port/nginx-srp-json-5054.md new file mode 100644 index 0000000..4d40b11 --- /dev/null +++ b/port/nginx-srp-json-5054.md @@ -0,0 +1,11 @@ +--- +type: "port" +assigned: "" +physical-address: "00:10:5A:CB:C6:5B" +created: "2024-01-06T01:25:36.273Z" +updated: "2024-01-06T01:25:36.273Z" +--- + +# nginx-srp-json-5054 + +- [ ] [json](http://10.95.154.30:5054/) diff --git a/port/nport-bio-rad-2-950.md b/port/nport-bio-rad-2-950.md new file mode 100644 index 0000000..862cd49 --- /dev/null +++ b/port/nport-bio-rad-2-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:18" +namespace: "MET08THFTIRQS408M" +created: "2024-01-06T01:25:36.326Z" +updated: "2024-01-06T01:25:36.326Z" +--- + +# nPort-bio-rad-2-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.41/) +- [ ] [tcp](tcp://10.95.154.41:950/) diff --git a/port/nport-bio-rad-3-950.md b/port/nport-bio-rad-3-950.md new file mode 100644 index 0000000..5507c47 --- /dev/null +++ b/port/nport-bio-rad-3-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:22" +namespace: "MET08THFTIRQS408M" +created: "2024-01-06T01:25:36.275Z" +updated: "2024-01-06T01:25:36.275Z" +--- + +# nPort-bio-rad-3-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.42/) +- [ ] [tcp](tcp://10.95.154.42:950/) diff --git a/port/nport-hgcv1-950.md b/port/nport-hgcv1-950.md new file mode 100644 index 0000000..06559f7 --- /dev/null +++ b/port/nport-hgcv1-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:26" +namespace: "MET08RESIHGCV" +created: "2024-01-06T01:25:36.277Z" +updated: "2024-01-06T01:25:36.277Z" +--- + +# nPort-hgcv1-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.39/) +- [ ] [tcp](tcp://10.95.154.39:950/) diff --git a/port/nport-hgcv2-950.md b/port/nport-hgcv2-950.md new file mode 100644 index 0000000..b553ef2 --- /dev/null +++ b/port/nport-hgcv2-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:35" +namespace: "MET08RESIHGCV" +created: "2024-01-06T01:25:36.326Z" +updated: "2024-01-06T01:25:36.326Z" +--- + +# nPort-hgcv2-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.17/) +- [ ] [tcp](tcp://10.95.154.17:950/) diff --git a/port/nport-hgcv3-950.md b/port/nport-hgcv3-950.md new file mode 100644 index 0000000..35193dd --- /dev/null +++ b/port/nport-hgcv3-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:23" +namespace: "MET08RESIHGCV" +created: "2024-01-06T01:25:36.279Z" +updated: "2024-01-06T01:25:36.279Z" +--- + +# nPort-hgcv3-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.40/) +- [ ] [tcp](tcp://10.95.154.40:950/) diff --git a/port/nport-tencor1-950.md b/port/nport-tencor1-950.md new file mode 100644 index 0000000..f45c900 --- /dev/null +++ b/port/nport-tencor1-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:65:1F:2B" +namespace: "MET08DDUPSFS6420" +created: "2024-01-06T01:25:36.298Z" +updated: "2024-01-06T01:25:36.298Z" +--- + +# nPort-tencor1-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.36/) +- [ ] [tcp](tcp://10.95.154.36:950/) diff --git a/port/nport-tencor2-950.md b/port/nport-tencor2-950.md new file mode 100644 index 0000000..513c22e --- /dev/null +++ b/port/nport-tencor2-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:24" +namespace: "MET08DDUPSFS6420" +created: "2024-01-06T01:25:36.298Z" +updated: "2024-01-06T01:25:36.298Z" +--- + +# nPort-tencor2-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.37/) +- [ ] [tcp](tcp://10.95.154.37:950/) diff --git a/port/nport-tencor3-950.md b/port/nport-tencor3-950.md new file mode 100644 index 0000000..3a7f664 --- /dev/null +++ b/port/nport-tencor3-950.md @@ -0,0 +1,14 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:1E" +namespace: "MET08DDUPSFS6420" +created: "2024-01-06T01:25:36.318Z" +updated: "2024-01-06T01:25:36.318Z" +--- + +# nPort-tencor3-950 + +- [ ] [http](http://192.168.127.254/) +- [ ] [http](http://10.95.154.38/) +- [ ] [tcp](tcp://10.95.154.38:950/) diff --git a/port/nport-wc6inch1-950.md b/port/nport-wc6inch1-950.md new file mode 100644 index 0000000..38c315a --- /dev/null +++ b/port/nport-wc6inch1-950.md @@ -0,0 +1,19 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3B:F0" +created: "2024-01-06T01:25:36.326Z" +updated: "2024-01-06T01:25:36.326Z" +--- + +# nPort-wc6inch1-950 + +- [ ] [http](http://192.168.127.254/) +- [x] Server Name +- [x] DHCP +- [x] Serial - Port 1 +- [ ] [http](http://10.95.154.43/) +- [ ] [tcp](tcp://10.95.154.43:950/) +- [FQA-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\FQA\6INCH) + +## Was CDE2 -> See CDE2-EQPT diff --git a/port/nport-wc6inch2-950.md b/port/nport-wc6inch2-950.md new file mode 100644 index 0000000..ca87091 --- /dev/null +++ b/port/nport-wc6inch2-950.md @@ -0,0 +1,20 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:30" +created: "2024-01-14T02:17:45.912Z" +updated: "2024-03-06T16:18:10.225Z" +--- + +# nport-wc6inch2-950 + +- [ ] [http](http://192.168.127.254/) +- [x] Server Name +- [x] DHCP +- [x] Serial - Port 1 +- [ ] [http](http://10.95.154.44/) +- [ ] [tcp](tcp://10.95.154.44:950/) +- [MU-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\MU\6INCH) + +## Was CDE5 -> See CDE5-EQPT +## Was Spare1 diff --git a/port/nport-wc6inch3-950.md b/port/nport-wc6inch3-950.md new file mode 100644 index 0000000..cb12a51 --- /dev/null +++ b/port/nport-wc6inch3-950.md @@ -0,0 +1,23 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:37" +created: "2024-01-14T02:17:43.880Z" +updated: "2024-03-06T19:55:41.693Z" +--- + +# nport-wc6inch3-950 + +- [ ] [http](http://192.168.127.254/) +- [x] Server Name +- [x] DHCP +- [x] Serial - Port 1 +- [x] Re-request DHCP reservation because of typo 00:90:E8:6E:3C:31 to 00:90:E8:6E:3C:37 +- [ ] ~~[http](http://10.95.154.45/)~~ +- [ ] [http](http://10.95.154.19/) +- [ ] [tcp](tcp://10.95.154.19:950/) +- [EPP-West-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\EPP-East\6INCH) + +## Not 00:90:E8:6E:3C:31 + +## Was Spare2 diff --git a/port/nport-wc6inch4-950.md b/port/nport-wc6inch4-950.md new file mode 100644 index 0000000..84bc7fa --- /dev/null +++ b/port/nport-wc6inch4-950.md @@ -0,0 +1,19 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:1D" +created: "2024-03-05T01:23:57.081Z" +updated: "2024-03-06T16:20:13.077Z" +--- + +# nport-wc6inch4-950 + +- [ ] [http](http://192.168.127.254/) +- [x] Server Name +- [x] DHCP +- [x] Serial - Port 1 +- [ ] [http](http://10.95.154.46/) +- [ ] [tcp](tcp://10.95.154.46:950/) +- [EPP-East-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\EPP-West\6INCH) + +# was spare3 diff --git a/port/nport-wc8inch1-950.md b/port/nport-wc8inch1-950.md new file mode 100644 index 0000000..5486813 --- /dev/null +++ b/port/nport-wc8inch1-950.md @@ -0,0 +1,19 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:19" +created: "2024-03-05T01:23:57.082Z" +updated: "2024-03-06T16:18:10.225Z" +--- + +# nport-wc8inch1-950 + +- [ ] [http](http://192.168.127.254/) +- [x] Server Name +- [x] DHCP +- [x] Serial - Port 1 +- [ ] [http](http://10.95.154.47/) +- [ ] [tcp](tcp://10.95.154.47:950/) +- [FQA-8INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\FQA\8INCH) + +## was spare4 diff --git a/port/nport-wc8inch2-950.md b/port/nport-wc8inch2-950.md new file mode 100644 index 0000000..5a6d022 --- /dev/null +++ b/port/nport-wc8inch2-950.md @@ -0,0 +1,19 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:1A" +created: "2024-03-05T01:23:57.083Z" +updated: "2024-03-06T16:18:00.878Z" +--- + +# nport-wc8inch2-950 + +- [ ] [http](http://192.168.127.254/) +- [x] Server Name +- [x] DHCP +- [x] Serial - Port 1 +- [ ] [http](http://10.95.154.48/) +- [ ] [tcp](tcp://10.95.154.48:950/) +- [MU-8INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\MU\8INCH) + +## was spare5 diff --git a/port/nport-wc8inch3-950.md b/port/nport-wc8inch3-950.md new file mode 100644 index 0000000..860ebfa --- /dev/null +++ b/port/nport-wc8inch3-950.md @@ -0,0 +1,19 @@ +--- +type: "port" +assigned: "" +physical-address: "00:90:E8:6E:3C:36" +created: "2024-03-05T01:23:57.084Z" +updated: "2024-03-06T16:18:10.225Z" +--- + +# nport-wc8inch3-950 + +- [ ] [http](http://192.168.127.254/) +- [x] Server Name +- [x] DHCP +- [x] Serial - Port 1 +- [ ] [http](http://10.95.154.49/) +- [ ] [tcp](tcp://10.95.154.49:950/) +- [EPP-West-8INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\EPP-East\8INCH) + +## was spare6 diff --git a/port/oi-metrology-archive-5001.md b/port/oi-metrology-archive-5001.md new file mode 100644 index 0000000..03b5726 --- /dev/null +++ b/port/oi-metrology-archive-5001.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.298Z" +updated: "2024-01-06T01:25:36.298Z" +--- + +# oi-metrology-archive-5001 + +``` +[x] http://localhost:5001/api/tooltypes +``` diff --git a/port/oi-metrology-viewer-5004.md b/port/oi-metrology-viewer-5004.md new file mode 100644 index 0000000..e707247 --- /dev/null +++ b/port/oi-metrology-viewer-5004.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.318Z" +updated: "2024-01-06T01:25:36.318Z" +--- + +# oi-metrology-viewer-5004 + +``` +[x] http://localhost:5004/api/tooltypes +``` diff --git a/port/plc-r47-102.md b/port/plc-r47-102.md new file mode 100644 index 0000000..37c3b42 --- /dev/null +++ b/port/plc-r47-102.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:0E:8C:C9:C7:E5" +namespace: "DEP08SIHTRPLC" +created: "2024-01-06T01:25:36.298Z" +updated: "2024-01-06T01:25:36.298Z" +--- + +# plc-r47-102 + +- [ ] [tcp](tcp://10.95.1.195:102/) diff --git a/port/plc-r70-102.md b/port/plc-r70-102.md new file mode 100644 index 0000000..683c853 --- /dev/null +++ b/port/plc-r70-102.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "28:63:36:64:11:11" +namespace: "DEP08SIHTRPLC" +created: "2024-01-06T01:25:36.298Z" +updated: "2024-01-06T01:25:36.298Z" +--- + +# plc-r70-102 + +- [ ] [tcp](tcp://10.95.1.191:102/) diff --git a/port/plc-r72-102.md b/port/plc-r72-102.md new file mode 100644 index 0000000..7abb2e2 --- /dev/null +++ b/port/plc-r72-102.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:0E:8C:C9:C7:CD" +namespace: "DEP08SIHTRPLC" +created: "2024-01-06T01:25:36.318Z" +updated: "2024-01-06T01:25:36.318Z" +--- + +# plc-r72-102 + +- [ ] [tcp](tcp://10.95.1.183:102/) diff --git a/port/plc-r73-102.md b/port/plc-r73-102.md new file mode 100644 index 0000000..26a9835 --- /dev/null +++ b/port/plc-r73-102.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:0E:8C:AF:4D:A8" +namespace: "DEP08SIHTRPLC" +created: "2024-01-06T01:25:36.303Z" +updated: "2024-01-06T01:25:36.303Z" +--- + +# plc-r73-102 + +- [ ] [tcp](tcp://10.95.1.192:102/) diff --git a/port/plc-r74-102.md b/port/plc-r74-102.md new file mode 100644 index 0000000..c401770 --- /dev/null +++ b/port/plc-r74-102.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:0E:8C:C9:C9:5C" +namespace: "DEP08SIHTRPLC" +created: "2024-01-06T01:25:36.303Z" +updated: "2024-01-06T01:25:36.303Z" +--- + +# plc-r74-102 + +- [ ] [tcp](tcp://10.95.1.180:102/) diff --git a/port/rdv-http-8801.md b/port/rdv-http-8801.md new file mode 100644 index 0000000..cad345f --- /dev/null +++ b/port/rdv-http-8801.md @@ -0,0 +1,12 @@ +--- +type: "port" +tags: ["Prod"] +created: "2024-01-06T01:25:36.304Z" +updated: "2024-01-06T01:25:36.304Z" +--- + +# rdv-http-8801 + +- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml + +## TIBRVD_8801 diff --git a/port/rdv-http-8802.md b/port/rdv-http-8802.md new file mode 100644 index 0000000..1fbe5f9 --- /dev/null +++ b/port/rdv-http-8802.md @@ -0,0 +1,12 @@ +--- +type: "port" +tags: ["Dev"] +created: "2024-01-06T01:25:36.303Z" +updated: "2024-01-06T01:25:36.303Z" +--- + +# rdv-http-8802 + +- file://messdv003.infineon.com/yodaconfig/MC2UC/Centralized_Configuration_4.xml + +## MESXS015_8802 diff --git a/port/rdv-http-8803.md b/port/rdv-http-8803.md new file mode 100644 index 0000000..dad2c62 --- /dev/null +++ b/port/rdv-http-8803.md @@ -0,0 +1,12 @@ +--- +type: "port" +tags: ["Prod"] +created: "2024-01-06T01:25:36.304Z" +updated: "2024-01-06T01:25:36.304Z" +--- + +# rdv-http-8803 + +- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml + +## TIBRVD_8803 diff --git a/port/rdv-http-8804.md b/port/rdv-http-8804.md new file mode 100644 index 0000000..48d2c41 --- /dev/null +++ b/port/rdv-http-8804.md @@ -0,0 +1,12 @@ +--- +type: "port" +tags: ["Stage"] +created: "2024-01-06T01:25:36.308Z" +updated: "2024-01-06T01:25:36.308Z" +--- + +# rdv-http-8804 + +- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml + +## TIBRVD_8804 diff --git a/port/rtsp-r34-554.md b/port/rtsp-r34-554.md new file mode 100644 index 0000000..7b0468e --- /dev/null +++ b/port/rtsp-r34-554.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:13:14:02:BB:F7" +namespace: "DEP08SIASM" +created: "2024-01-06T01:25:36.308Z" +updated: "2024-01-06T01:25:36.308Z" +--- + +# rtsp-r34-554 + +- [ ] [rtsp](http://10.95.154.28:554/) diff --git a/port/rtsp-r53-554.md b/port/rtsp-r53-554.md new file mode 100644 index 0000000..011d7da --- /dev/null +++ b/port/rtsp-r53-554.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:13:14:02:BD:67" +namespace: "DEP08SIASM" +created: "2024-01-06T01:25:36.318Z" +updated: "2024-01-06T01:25:36.318Z" +--- + +# rtsp-r53-554 + +- [ ] [rtsp](http://10.95.154.31:554/) diff --git a/port/rtsp-r55-554.md b/port/rtsp-r55-554.md new file mode 100644 index 0000000..8ed1cd0 --- /dev/null +++ b/port/rtsp-r55-554.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +physical-address: "00:13:14:02:B8:B7" +namespace: "DEP08SIASM" +created: "2024-01-06T01:25:36.308Z" +updated: "2024-01-06T01:25:36.308Z" +--- + +# rtsp-r55-554 + +- [ ] [rtsp](http://10.95.154.32:554/) diff --git a/port/secs-gem-spv-5004.md b/port/secs-gem-spv-5004.md new file mode 100644 index 0000000..0c7c5c8 --- /dev/null +++ b/port/secs-gem-spv-5004.md @@ -0,0 +1,11 @@ +--- +type: "port" +assigned: "" +physical-address: "C4:00:AD:23:90:F5" +created: "2024-01-06T01:25:36.310Z" +updated: "2024-01-06T01:25:36.310Z" +--- + +# SECS/GEM-SPV-5004 + +- [ ] [SECS/GEM](http://10.95.154.20:5004/) diff --git a/port/secs-gem-t21-5010.md b/port/secs-gem-t21-5010.md new file mode 100644 index 0000000..3d45349 --- /dev/null +++ b/port/secs-gem-t21-5010.md @@ -0,0 +1,10 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.310Z" +updated: "2024-01-06T01:25:36.310Z" +--- + +# SECS/GEM-T21-5010 + +- [ ] [SECS/GEM](http://10.95.154.###:5010/) diff --git a/port/secs-gem-t27-5010.md b/port/secs-gem-t27-5010.md new file mode 100644 index 0000000..331056f --- /dev/null +++ b/port/secs-gem-t27-5010.md @@ -0,0 +1,10 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.318Z" +updated: "2024-01-06T01:25:36.318Z" +--- + +# SECS/GEM-T27-5010 + +- [ ] [SECS/GEM](http://10.95.154.###:5010/) diff --git a/port/smtp-25.md b/port/smtp-25.md new file mode 100644 index 0000000..bf5e45f --- /dev/null +++ b/port/smtp-25.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.310Z" +updated: "2024-01-06T01:25:36.310Z" +--- + +# smtp-25 + +## Info + +mailrelay-internal.infineon.com diff --git a/port/tibco-7701.md b/port/tibco-7701.md new file mode 100644 index 0000000..d9d5138 --- /dev/null +++ b/port/tibco-7701.md @@ -0,0 +1,14 @@ +--- +type: "port" +tags: ["Prod"] +created: "2024-01-06T01:25:36.310Z" +updated: "2024-01-06T01:25:36.310Z" +--- + +# tibco-7701 + +- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml + +## MES_P_PROD + +## MES_P_MES diff --git a/port/tibco-7702.md b/port/tibco-7702.md new file mode 100644 index 0000000..c5158f9 --- /dev/null +++ b/port/tibco-7702.md @@ -0,0 +1,12 @@ +--- +type: "port" +tags: ["Dev"] +created: "2024-01-06T01:25:36.310Z" +updated: "2024-01-06T01:25:36.310Z" +--- + +# tibco-7702 + +- file://messdv003.infineon.com/yodaconfig/MC2UC/Centralized_Configuration_4.xml + +## MES_T_TEST diff --git a/port/tibco-7703.md b/port/tibco-7703.md new file mode 100644 index 0000000..60e1438 --- /dev/null +++ b/port/tibco-7703.md @@ -0,0 +1,12 @@ +--- +type: "port" +tags: ["Prod"] +created: "2024-01-06T01:25:36.310Z" +updated: "2024-01-06T01:25:36.310Z" +--- + +# tibco-7703 + +- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml + +## MES_P_MEI diff --git a/port/tibco-7704.md b/port/tibco-7704.md new file mode 100644 index 0000000..ce14e60 --- /dev/null +++ b/port/tibco-7704.md @@ -0,0 +1,16 @@ +--- +type: "port" +tags: ["Stage"] +created: "2024-01-06T01:25:36.310Z" +updated: "2024-01-06T01:25:36.310Z" +--- + +# tibco-7704 + +- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml + +## MES_S_STAGE + +## MES_S_MES + +## MES_S_MEI diff --git a/port/trdprvd64-listen-8801.md b/port/trdprvd64-listen-8801.md new file mode 100644 index 0000000..cb47367 --- /dev/null +++ b/port/trdprvd64-listen-8801.md @@ -0,0 +1,12 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.314Z" +updated: "2024-01-06T01:25:36.314Z" +--- + +# trdprvd64-listen-8801 + +```bash +ps -ef | grep tibco +``` diff --git a/port/trdprvd64-listen-8803.md b/port/trdprvd64-listen-8803.md new file mode 100644 index 0000000..7563db3 --- /dev/null +++ b/port/trdprvd64-listen-8803.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.314Z" +updated: "2024-01-06T01:25:36.314Z" +--- + +# trdprvd64-listen-8803 diff --git a/port/trdprvd64-listen-8804.md b/port/trdprvd64-listen-8804.md new file mode 100644 index 0000000..e6b0349 --- /dev/null +++ b/port/trdprvd64-listen-8804.md @@ -0,0 +1,8 @@ +--- +type: "port" +assigned: "" +created: "2024-01-06T01:25:36.316Z" +updated: "2024-01-06T01:25:36.316Z" +--- + +# trdprvd64-listen-8804 diff --git a/port/ubuntu-unity4-9400.md b/port/ubuntu-unity4-9400.md new file mode 100644 index 0000000..dac6207 --- /dev/null +++ b/port/ubuntu-unity4-9400.md @@ -0,0 +1,17 @@ +--- +type: "port" +assigned: "" +ip: "10.95.154.9" +physical-address: "6C:0B:84:E3:AD:7E" +os: "Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-152-generic x86_64)" +created: "2024-01-06T01:25:36.318Z" +updated: "2024-01-06T01:25:36.318Z" +--- + +# ubuntu-unity4-9400 + +- [ ] [http](http://eaf-staging.mes.infineon.com:8080/api/Barcode/BIORAD#) + +```c# +HttpSelfHostConfiguration config = new("http://localhost:8080/"); +``` diff --git a/port/ubuntu-unity5-9400.md b/port/ubuntu-unity5-9400.md new file mode 100644 index 0000000..56dbe96 --- /dev/null +++ b/port/ubuntu-unity5-9400.md @@ -0,0 +1,17 @@ +--- +type: "port" +assigned: "" +ip: "10.95.154.18" +physical-address: "6C:0B:84:E3:94:11" +os: "Ubuntu 22.04.2 LTS (GNU/Linux 5.15.0-73-generic x86_64)" +created: "2024-01-06T01:25:36.316Z" +updated: "2024-01-06T01:25:36.316Z" +--- + +# ubuntu-unity5-9400 + +- [ ] [http](http://eaf-staging.mes.infineon.com:8080/api/Barcode/BIORAD#) + +```c# +HttpSelfHostConfiguration config = new("http://localhost:8080/"); +``` diff --git a/process/apc_fdc-extractor-service-0001.md b/process/apc_fdc-extractor-service-0001.md new file mode 100644 index 0000000..6089ada --- /dev/null +++ b/process/apc_fdc-extractor-service-0001.md @@ -0,0 +1,21 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.513Z" +updated: "2023-09-25T16:09:52.513Z" +assigned: "" +--- + +# APC FDC Extractor Service 0001 + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/apc_fdc-extractor-service-0002.md b/process/apc_fdc-extractor-service-0002.md new file mode 100644 index 0000000..78cba4c --- /dev/null +++ b/process/apc_fdc-extractor-service-0002.md @@ -0,0 +1,21 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.515Z" +updated: "2023-09-25T16:09:52.515Z" +assigned: "" +--- + +# APC FDC Extractor Service 0002 + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/apc_fdc-extractor-service-0003.md b/process/apc_fdc-extractor-service-0003.md new file mode 100644 index 0000000..600809c --- /dev/null +++ b/process/apc_fdc-extractor-service-0003.md @@ -0,0 +1,21 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.516Z" +updated: "2023-09-25T16:09:52.516Z" +assigned: "" +--- + +# APC FDC Extractor Service 0003 + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/apc_fdc-extractor-service-0004.md b/process/apc_fdc-extractor-service-0004.md new file mode 100644 index 0000000..0a50512 --- /dev/null +++ b/process/apc_fdc-extractor-service-0004.md @@ -0,0 +1,21 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.518Z" +updated: "2023-09-25T16:09:52.519Z" +assigned: "" +--- + +# APC FDC Extractor Service 0004 + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/apc_fdc-extractor-service-0005.md b/process/apc_fdc-extractor-service-0005.md new file mode 100644 index 0000000..3ed7279 --- /dev/null +++ b/process/apc_fdc-extractor-service-0005.md @@ -0,0 +1,21 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.520Z" +updated: "2023-09-25T16:09:52.520Z" +assigned: "" +--- + +# APC FDC Extractor Service 0005 + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/apc_fdc-mastercontrolservice.md b/process/apc_fdc-mastercontrolservice.md new file mode 100644 index 0000000..b3fff96 --- /dev/null +++ b/process/apc_fdc-mastercontrolservice.md @@ -0,0 +1,25 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.521Z" +updated: "2023-09-25T16:09:52.522Z" +assigned: "" +--- + +# APC FDC MasterControlService + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/apc_fdc-receiverservice-fsw.md b/process/apc_fdc-receiverservice-fsw.md new file mode 100644 index 0000000..35f4bb6 --- /dev/null +++ b/process/apc_fdc-receiverservice-fsw.md @@ -0,0 +1,21 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.523Z" +updated: "2023-09-25T16:09:52.523Z" +assigned: "" +--- + +# APC FDC ReceiverService FSW + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/apc_fdc-receiverservice_poll.md b/process/apc_fdc-receiverservice_poll.md new file mode 100644 index 0000000..a61ef38 --- /dev/null +++ b/process/apc_fdc-receiverservice_poll.md @@ -0,0 +1,21 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.525Z" +updated: "2023-09-25T16:09:52.525Z" +assigned: "" +--- + +# APC FDC ReceiverService POLL + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [apcmesp-db](../database/apcmesp-db.md) +- [ ] [apcmess-db](../database/apcmess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/azure-pipelines-agent-iis-messa08ec-ecedasvc.md b/process/azure-pipelines-agent-iis-messa08ec-ecedasvc.md new file mode 100644 index 0000000..333ff5c --- /dev/null +++ b/process/azure-pipelines-agent-iis-messa08ec-ecedasvc.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-25T22:18:23.737Z" +updated: "2023-08-05T00:41:37.391Z" +assigned: "" +--- + +# Azure Pipelines Agent IIS messa08ec ecedasvc diff --git a/process/azure-pipelines-agent-messa010ec-ecfisysadmin.md b/process/azure-pipelines-agent-messa010ec-ecfisysadmin.md new file mode 100644 index 0000000..03df1ca --- /dev/null +++ b/process/azure-pipelines-agent-messa010ec-ecfisysadmin.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-24T20:53:56.973Z" +updated: "2023-08-05T00:41:37.384Z" +assigned: "" +--- + +# Azure Pipelines Agent MESSA010EC ECFISysAdmin diff --git a/process/azure-pipelines-agent-mestsa02ec-ecapcsvc.md b/process/azure-pipelines-agent-mestsa02ec-ecapcsvc.md new file mode 100644 index 0000000..3882e04 --- /dev/null +++ b/process/azure-pipelines-agent-mestsa02ec-ecapcsvc.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-22T03:59:49.623Z" +updated: "2023-08-05T00:41:37.384Z" +assigned: "" +--- + +# Azure Pipelines Agent MESTSA02EC ECAPCSVC diff --git a/process/azure-pipelines-agent-windows-service-messa08ec-ecmeseaf.md b/process/azure-pipelines-agent-windows-service-messa08ec-ecmeseaf.md new file mode 100644 index 0000000..d137adb --- /dev/null +++ b/process/azure-pipelines-agent-windows-service-messa08ec-ecmeseaf.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-25T21:57:13.021Z" +updated: "2023-08-05T00:41:37.384Z" +assigned: "" +--- + +# Azure Pipelines Agent messa08ec ecmeseaf diff --git a/process/baget-server-release-772911f-867503.md b/process/baget-server-release-772911f-867503.md new file mode 100644 index 0000000..5263ed0 --- /dev/null +++ b/process/baget-server-release-772911f-867503.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-25T21:58:13.005Z" +updated: "2023-08-05T00:41:37.384Z" +assigned: "" +--- + +# BaGet server release 772911f 867503 diff --git a/process/baget-worker-release-772911f-867503.md b/process/baget-worker-release-772911f-867503.md new file mode 100644 index 0000000..91b8f21 --- /dev/null +++ b/process/baget-worker-release-772911f-867503.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-25T21:58:34.981Z" +updated: "2023-08-05T00:41:37.383Z" +assigned: "" +--- + +# BaGet worker release 772911f 867503 diff --git a/process/dataframework-unit-service.md b/process/dataframework-unit-service.md new file mode 100644 index 0000000..0d2e79f --- /dev/null +++ b/process/dataframework-unit-service.md @@ -0,0 +1,71 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.527Z" +updated: "2023-09-25T16:09:52.527Z" +assigned: "" +--- + +# DataFramework Unit Service + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [fimesp-db](../database/fimesp-db.md) +- [ ] [fimess-db](../database/fimess-db.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) + +## Internal Port(s) + +```bash +DEP08SIASM v2.43.0 8537 +R34 v2.43.4 8134 +R53 v2.43.4 8153 +R55 v2.43.4 8155 +R34-EQPT v2.43.4 8034 +R53-EQPT v2.43.4 8653 +R55-EQPT v2.43.4 8655 +DEP08SIHTRPLC v2.43.0 8538 +R47-PLC v2.19.0 553 +R70-PLC v2.19.0 8770 +R72-PLC v2.19.0 8772 +R73-PLC v2.19.0 8773 +R74-PLC v2.19.0 8774 +EC v2.43.0 8439 +BACKLOG v2.43.0 8775 +BACKLOG-EQPT v2.43.0 8528 +MET08ANLYSDIFAAST230 v2.43.0 8409 +SPV01 v2.43.0 8569 +MET08DDUPSFS6420 v2.43.0 8549 +TENCOR1 v2.47.0 8540 +TENCOR2 v2.47.0 8541 +TENCOR3 v2.47.0 8542 +MET08DDUPSP1TBI v2.47.1 8559 +SP101 v2.47.0 8551 +SP101-EQPT v2.47.0 8555 +MET08RESIHGCV v2.47.1 8539 +HGCV1 v2.43.0 8530 +HGCV2 v2.43.0 8531 +HGCV3 v2.43.0 8532 +MET08RESIMAPCDE v2.47.1 8529 +CDE3 v2.47.0 8524 +CDE4 v2.47.0 8524 +CDE5 v2.47.0 8521 +CDE6 v2.47.2 8522 +CDE3-EQPT v2.47.0 8526 +CDE4-EQPT v2.47.0 8526 +CDE5-EQPT v2.47.0 7589 +CDE6-EQPT v2.47.2 7590 +CDE2 v2.47.0 8520 +MET08THFTIRQS408M v2.47.0 8509 +BIORAD2 v2.47.0 8500 +BIORAD3 v2.47.0 8501 +MET08THFTIRSTRATUS v2.47.1 8519 +BIORAD4 v2.47.0 8510 +BIORAD5 v2.47.0 8511 +``` diff --git a/process/eaf-management-server.md b/process/eaf-management-server.md new file mode 100644 index 0000000..7b66acf --- /dev/null +++ b/process/eaf-management-server.md @@ -0,0 +1,25 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.528Z" +updated: "2023-09-25T16:09:52.528Z" +assigned: "" +--- + +# EAF Management Server + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [eafprod-db](../database/eafprod-db.md) +- [ ] [eafstag-db](../database/eafstag-db.md) + +## Incoming Port(s) + +- [ ] [eaf-management-server-9003](../incoming/eaf-management-server-9003.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/eaf-runtime-agent.md b/process/eaf-runtime-agent.md new file mode 100644 index 0000000..8c3456e --- /dev/null +++ b/process/eaf-runtime-agent.md @@ -0,0 +1,59 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.530Z" +updated: "2023-09-25T16:09:52.530Z" +assigned: "" +--- + +# EAF Runtime Agent + +## Fileshare(s) + +- [ ] [messa01ec](../fileshare/messa01ec.md) + - OI Import +- [ ] [messa04ec](../fileshare/messa04ec.md) + - IQS DMS/DCS +- [ ] [messdv002](../fileshare/messdv002.md) + - Candela +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + - EDA PDSF (Process Data Standard Format) + +## Database(s) + +- [ ] [eafprod-db](../database/eafprod-db.md) +- [ ] [eafstag-db](../database/eafstag-db.md) +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Incoming Port(s) + +- [ ] 9010-9013 + +## Outgoing Port(s) + +- [ ] [eaf-sp101-8080](../outgoing/eaf-sp101-8080.md) +- [ ] [file-bio-rad-stratus-4-445](../outgoing/file-bio-rad-stratus-4-445.md) +- [ ] [file-bio-rad-stratus-5-445](../outgoing/file-bio-rad-stratus-5-445.md) +- [ ] [file-sp101-139](../outgoing/file-sp101-139.md) +- [ ] [nginx-cde4-json-80](../outgoing/nginx-cde4-json-80.md) +- [ ] [nginx-cde5-json-80](../outgoing/nginx-cde5-json-80.md) +- [ ] [nginx-cde6-json-80](../outgoing/nginx-cde6-json-80.md) +- [ ] [nPort-bio-rad-2-950](../outgoing/nport-bio-rad-2-950.md) +- [ ] [nPort-bio-rad-3-950](../outgoing/nport-bio-rad-3-950.md) +- [ ] [nPort-hgcv1-950](../outgoing/nport-hgcv1-950.md) +- [ ] [nPort-hgcv2-950](../outgoing/nport-hgcv2-950.md) +- [ ] [nPort-hgcv3-950](../outgoing/nport-hgcv3-950.md) +- [ ] [nPort-tencor1-950](../outgoing/nport-tencor1-950.md) +- [ ] [nPort-tencor2-950](../outgoing/nport-tencor2-950.md) +- [ ] [nPort-tencor3-950](../outgoing/nport-tencor3-950.md) +- [ ] [plc-r47-102](../outgoing/plc-r47-102.md) +- [ ] [plc-r70-102](../outgoing/plc-r70-102.md) +- [ ] [plc-r72-102](../outgoing/plc-r72-102.md) +- [ ] [plc-r73-102](../outgoing/plc-r73-102.md) +- [ ] [plc-r74-102](../outgoing/plc-r74-102.md) +- [ ] [rtsp-r34-554](../outgoing/rtsp-r34-554.md) +- [ ] [rtsp-r53-554](../outgoing/rtsp-r53-554.md) +- [ ] [rtsp-r55-554](../outgoing/rtsp-r55-554.md) +- [ ] [SECS/GEM-SPV-5004](../outgoing/secs-gem-spv-5004.md) +- [ ] [SECS/GEM-T21-5010](../outgoing/secs-gem-t21-5010.md) +- [ ] [SECS/GEM-T27-5010](../outgoing/secs-gem-t27-5010.md) diff --git a/process/eaf-viewer-5010.md b/process/eaf-viewer-5010.md new file mode 100644 index 0000000..3054fdc --- /dev/null +++ b/process/eaf-viewer-5010.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-17T21:19:38.937Z" +updated: "2023-08-05T00:41:37.382Z" +assigned: "" +--- + +# EAF Viewer 5010 diff --git a/process/eaf-viewer-nginx.md b/process/eaf-viewer-nginx.md new file mode 100644 index 0000000..16070a0 --- /dev/null +++ b/process/eaf-viewer-nginx.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-17T21:18:18.548Z" +updated: "2023-08-05T00:41:37.380Z" +assigned: "" +--- + +# EAF Viewer nginx diff --git a/process/eda-viewer-5003.md b/process/eda-viewer-5003.md new file mode 100644 index 0000000..45e9f3d --- /dev/null +++ b/process/eda-viewer-5003.md @@ -0,0 +1,8 @@ +--- +type: "process" +created: "2023-07-17T21:20:06.292Z" +updated: "2023-08-05T00:41:37.379Z" +assigned: "" +--- + +# EDA Viewer 5003 diff --git a/process/ifx-api.md b/process/ifx-api.md new file mode 100644 index 0000000..6b4ac10 --- /dev/null +++ b/process/ifx-api.md @@ -0,0 +1,16 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.531Z" +updated: "2023-09-25T16:09:52.532Z" +assigned: "" +--- + +# IFX Api 5.1.0 7703 + +## Fileshare(s) + +- [ ] [messv02ecc1](../fileshare/messv02ecc1.md) + +## Database(s) + +- [ ] [fimesp-db](../database/fimesp-db.md) diff --git a/process/ifx-security.md b/process/ifx-security.md new file mode 100644 index 0000000..a54940b --- /dev/null +++ b/process/ifx-security.md @@ -0,0 +1,12 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.533Z" +updated: "2023-09-25T16:09:52.533Z" +assigned: "" +--- + +# IFX Security 5.1.0 7703 + +## Database(s) + +- [ ] [fimesp-db](../database/fimesp-db.md) diff --git a/process/iis-mesa-reporting-services-api.md b/process/iis-mesa-reporting-services-api.md new file mode 100644 index 0000000..35519c7 --- /dev/null +++ b/process/iis-mesa-reporting-services-api.md @@ -0,0 +1,12 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.535Z" +updated: "2023-09-25T16:09:52.536Z" +assigned: "" +--- + +# iis-mesa-reporting-services-api + +## Incoming Port(s) + +- [ ] [iis-mesa-reporting-services-api-50201](../incoming/iis-mesa-reporting-services-api-50201.md) diff --git a/process/iis-mesa-reporting-services.md b/process/iis-mesa-reporting-services.md new file mode 100644 index 0000000..a541f50 --- /dev/null +++ b/process/iis-mesa-reporting-services.md @@ -0,0 +1,14 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.537Z" +updated: "2023-09-25T16:09:52.537Z" +assigned: "" +--- + +# iis-mesa-reporting-services + +## Incoming Port(s) + +- [ ] [iis-mesa-reporting-services-50200](../incoming/iis-mesa-reporting-services-50200.md) + +## Outgoing Port(s) diff --git a/process/iis-mesareportingservices.md b/process/iis-mesareportingservices.md new file mode 100644 index 0000000..88cb20e --- /dev/null +++ b/process/iis-mesareportingservices.md @@ -0,0 +1,15 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.538Z" +updated: "2023-09-25T16:09:52.539Z" +assigned: "" +--- + +# IIS Mesa Reporting Services + +## Incoming Port(s) + +- [ ] [IIS-MesaReportingServices-443](../incoming/iis-mesareportingservices-443.md) +- [ ] [IIS-MesaReportingServices-50200](../incoming/iis-mesareportingservices-50200.md) +- [ ] [IIS-MesaReportingServices-50205](../incoming/iis-mesareportingservices-50205.md) +- [ ] [IIS-MesaReportingServices-80](../incoming/iis-mesareportingservices-80.md) diff --git a/process/iis-mesareportingservicesapi.md b/process/iis-mesareportingservicesapi.md new file mode 100644 index 0000000..e8a1edb --- /dev/null +++ b/process/iis-mesareportingservicesapi.md @@ -0,0 +1,15 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.540Z" +updated: "2023-09-25T16:09:52.540Z" +assigned: "" +--- + +# IIS Mesa Reporting Services API + +## Incoming Port(s) + +- [ ] [ +- [ ] [ +- [ ] [ +- [ ] [IIS-MesaReportingServicesAPI-50201](../incoming/iis-mesareportingservicesapi-50201.md) diff --git a/process/iis-metrology.md b/process/iis-metrology.md new file mode 100644 index 0000000..c4df23e --- /dev/null +++ b/process/iis-metrology.md @@ -0,0 +1,19 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.542Z" +updated: "2023-09-25T16:09:52.542Z" +assigned: "" +--- + +# IIS Metrology + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Incoming Port(s) + +- [ ] [iis-metrology-80](../incoming/iis-metrology-80.md) +- [ ] [iis-metrology-443](../incoming/iis-metrology-443.md) + - 2023-08-03 Currently not working diff --git a/process/iis-oi-metrology-archive.md b/process/iis-oi-metrology-archive.md new file mode 100644 index 0000000..ab9924c --- /dev/null +++ b/process/iis-oi-metrology-archive.md @@ -0,0 +1,18 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.543Z" +updated: "2023-09-25T16:09:52.543Z" +assigned: "" +--- + +# IIS OI Metrology Archive-80 + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Incoming Port(s) + +- [ ] [iis-oi-metrology-archive-443](../incoming/iis-oi-metrology-archive-443.md) +- [ ] [iis-oi-metrology-archive-80](../incoming/iis-oi-metrology-archive-80.md) diff --git a/process/iis-oi-metrology-viewer-server.md b/process/iis-oi-metrology-viewer-server.md new file mode 100644 index 0000000..d959c9e --- /dev/null +++ b/process/iis-oi-metrology-viewer-server.md @@ -0,0 +1,19 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.545Z" +updated: "2023-09-25T16:09:52.545Z" +assigned: "" +--- + +# IIS OI Metrology Viewer + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Incoming Port(s) + +- [ ] [iis-oi-metrology-viewer-server-50301](../incoming/iis-oi-metrology-viewer-server-50301.md) +- [ ] [iis-oi-metrology-viewer-server-80](../incoming/iis-oi-metrology-viewer-server-80.md) +- [ ] [iis-oi-metrology-viewer-server-443](../incoming/iis-oi-metrology-viewer-server-443.md) diff --git a/process/iis-oi-metrology-viewer.md b/process/iis-oi-metrology-viewer.md new file mode 100644 index 0000000..2b6bd1e --- /dev/null +++ b/process/iis-oi-metrology-viewer.md @@ -0,0 +1,18 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.547Z" +updated: "2023-09-25T16:09:52.547Z" +assigned: "" +--- + +# IIS OI Metrology Viewer + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Incoming Port(s) + +- [ ] [iis-oi-metrology-viewer-802](../incoming/iis-oi-metrology-viewer-802.md) +- [ ] [iis-oi-metrology-viewer-4432](../incoming/iis-oi-metrology-viewer-4432.md) diff --git a/process/infinity-qs-dms-service.md b/process/infinity-qs-dms-service.md new file mode 100644 index 0000000..488d3dd --- /dev/null +++ b/process/infinity-qs-dms-service.md @@ -0,0 +1,17 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.548Z" +updated: "2023-09-25T16:09:52.548Z" +assigned: "" +--- + +# InfinityQS DMS Service + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Sub-tasks + +- [x] Register eval key {ctr+shift+i} (C:\ProgramData\InfinityQS International\ProFicient\Public\License5-Eval\IIEVAL.key) diff --git a/process/infinity-qs-mail-service.md b/process/infinity-qs-mail-service.md new file mode 100644 index 0000000..d90d12f --- /dev/null +++ b/process/infinity-qs-mail-service.md @@ -0,0 +1,16 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.550Z" +updated: "2023-09-25T16:09:52.550Z" +assigned: "" +--- + +# InfinityQS Mail Service + +## E-mail(s) + +- [ ] [messpcadm](../email/messpcadm.md) + +## Outgoing Port(s) + +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/process/infinity-qs-proficient-alarm-monitoring-service.md b/process/infinity-qs-proficient-alarm-monitoring-service.md new file mode 100644 index 0000000..73d8d43 --- /dev/null +++ b/process/infinity-qs-proficient-alarm-monitoring-service.md @@ -0,0 +1,12 @@ +--- +type: "process" +created: "2023-07-24T23:16:43.408Z" +updated: "2023-09-25T16:09:22.684Z" +assigned: "" +--- + +# InfinityQS ProFicient Alarm Monitoring Service + +## Sub-tasks + +- [x] Register eval key {ctr+shift+i} (C:\ProgramData\InfinityQS International\ProFicient\Public\License5-Eval\IIEVAL.key) diff --git a/process/infinity-qs-proficient-data-collection-service.md b/process/infinity-qs-proficient-data-collection-service.md new file mode 100644 index 0000000..72cffc0 --- /dev/null +++ b/process/infinity-qs-proficient-data-collection-service.md @@ -0,0 +1,22 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.552Z" +updated: "2023-09-25T16:09:52.552Z" +assigned: "" +--- + +# InfinityQS ProFicient Data Collection Service + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## DCS + +- [ ] Lasair +- [ ] Solair + +## Sub-tasks + +- [x] Register eval key {ctr+shift+i} (C:\ProgramData\InfinityQS International\ProFicient\Public\License5-Eval\IIEVAL.key) diff --git a/process/nginx-ecapcsvc.md b/process/nginx-ecapcsvc.md new file mode 100644 index 0000000..3f40754 --- /dev/null +++ b/process/nginx-ecapcsvc.md @@ -0,0 +1,12 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.555Z" +updated: "2023-09-25T16:09:52.555Z" +assigned: "" +--- + +# nginx-ecapcsvc + +## Incoming Port(s) + +- [ ] [nginx-ecapcsvc-json-5052](../incoming/nginx-ecapcsvc-json-5052.md) diff --git a/process/nginx-ecfisysadmin.md b/process/nginx-ecfisysadmin.md new file mode 100644 index 0000000..c2477f2 --- /dev/null +++ b/process/nginx-ecfisysadmin.md @@ -0,0 +1,14 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.556Z" +updated: "2023-09-25T16:09:52.557Z" +assigned: "" +--- + +# nginx ecfisysadmin + +## Incoming Port(s) + +- [ ] [nginx-ecfisysadmin-archive-8080](../incoming/nginx-ecfisysadmin-archive-8080.md) +- [ ] [nginx-ecfisysadmin-viewer-8080](../incoming/nginx-ecfisysadmin-viewer-8080.md) +- ~~443~~ diff --git a/process/oi-metrology-archive-5001.md b/process/oi-metrology-archive-5001.md new file mode 100644 index 0000000..c240480 --- /dev/null +++ b/process/oi-metrology-archive-5001.md @@ -0,0 +1,17 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.558Z" +updated: "2023-09-25T16:09:52.558Z" +assigned: "" +--- + +# OI Metrology Archive 5001 + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Incoming Port(s) + +- [ ] [oi-metrology-archive-5001](../incoming/oi-metrology-archive-5001.md) diff --git a/process/oi-metrology-viewer-5004.md b/process/oi-metrology-viewer-5004.md new file mode 100644 index 0000000..ff98dc1 --- /dev/null +++ b/process/oi-metrology-viewer-5004.md @@ -0,0 +1,17 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.560Z" +updated: "2023-09-25T16:09:52.560Z" +assigned: "" +--- + +# OI Metrology Viewer 5004 + +## Database(s) + +- [ ] [messv01ec](../database/messv01ec.md) +- [ ] [messqlec1](../database/messqlec1.md) + +## Incoming Port(s) + +- [ ] [oi-metrology-viewer-5004](../incoming/oi-metrology-viewer-5004.md) diff --git a/process/remote-daemon-agent.md b/process/remote-daemon-agent.md new file mode 100644 index 0000000..b1a4afc --- /dev/null +++ b/process/remote-daemon-agent.md @@ -0,0 +1,35 @@ +--- +type: "process" +created: "2023-09-25T16:09:52.562Z" +updated: "2023-09-25T16:09:52.562Z" +assigned: "" +--- + +# Remote Daemon Agent + +## mesxs015 + +## Incoming Port(s) + +- [ ] [trdprvd64-listen-8801](../incoming/trdprvd64-listen-8801.md) +- [ ] [trdprvd64-listen-8803](../incoming/trdprvd64-listen-8803.md) +- [ ] [trdprvd64-listen-8804](../incoming/trdprvd64-listen-8804.md) +- [ ] [smtp-25](../outgoing/smtp-25.md) + +## mesxs013 + +## Incoming Port(s) + +- [ ] [trdprvd64-listen-8801](../incoming/trdprvd64-listen-8801.md) +- [ ] [trdprvd64-listen-8803](../incoming/trdprvd64-listen-8803.md) +- [ ] [trdprvd64-listen-8804](../incoming/trdprvd64-listen-8804.md) +- [ ] [smtp-25](../outgoing/smtp-25.md) + +## mesxs014 + +## Incoming Port(s) + +- [ ] [trdprvd64-listen-8801](../incoming/trdprvd64-listen-8801.md) +- [ ] [trdprvd64-listen-8803](../incoming/trdprvd64-listen-8803.md) +- [ ] [trdprvd64-listen-8804](../incoming/trdprvd64-listen-8804.md) +- [ ] [smtp-25](../outgoing/smtp-25.md) diff --git a/server/auclv0558.md b/server/auclv0558.md new file mode 100644 index 0000000..d1f3191 --- /dev/null +++ b/server/auclv0558.md @@ -0,0 +1,28 @@ +--- +type: "note" +created: "2024-03-05T21:33:17.567Z" +updated: "2024-03-05T21:33:23.429Z" +--- + +# auclv0558 + +## phares@auclv0558.auc.infineon.com + +### Info + +```yml +Asset ID: CMDB50000807015 +Name: AUCLV0558 +Serial Number: virtual +Type: Linux Server (virtual) +Status: Deployed +Tier1: Data Center Services +Tier2: Data Center Services +Tier3: Server Environment - Unix +Region: NA +Site: Austin +Primary Function: Data Center Services +OLA: Best Effort +UsageType: Development +Short Description: LUY test server +``` diff --git a/server/elsstec101.md b/server/elsstec101.md new file mode 100644 index 0000000..84bd00a --- /dev/null +++ b/server/elsstec101.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "TemeculaDataArchive" +created: "2023-09-25T16:09:52.564Z" +updated: "2023-09-25T16:09:52.564Z" +Server Type: "elsstec101" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.64.152.101" +--- + +# elsstec101 + +## Account(s) + +- [ ] [ecphares](../account/ecphares.md) + +## Comment 2023-07-17 diff --git a/server/imported/2023-07-10.tsv b/server/imported/2023-07-10.tsv new file mode 100644 index 0000000..9a62ab5 --- /dev/null +++ b/server/imported/2023-07-10.tsv @@ -0,0 +1,69 @@ +type title description links body +server messa012ec 10.95.128.39 ecAPCsvc C +server messa013ec 10.95.128.40 ecAPCsvc B-\*\*\* +server mestsa02ec 10.95.128.43 ecAPCsvc A +server messa04ec 10.95.128.31 ecFIsysadmin Si-IQS-\*\*\* +server messa06ec 10.95.128.33 ecFIsysadmin GaN-IQS +server messa010ec 10.95.128.37 ecFIsysadmin Metrology-\*\*\* +server mestsa06ec 10.95.128.57 ecFIsysadmin GaN-IQS +server mestsa07ec 10.95.128.34 ecmesEAF A-Both +server messa08ec 10.95.128.35 ecmesEAF D-Management +server messa09ec 10.95.128.36 ecmesEAF C-Runtime-Agent +server messa011ec 10.95.128.38 ecmesEAF B-Runtime-Agent +server messa014ec 10.95.128.41 ecYODAsvc C +server messa015ec 10.95.128.42 ecYODAsvc B +server mestsa03ec 10.95.128.44 ecYODAsvc A +server mestsa08ec 10.95.128.59 \_\_\_ OI +server messa020ec 10.95.128.122 ApplicationPoolIdentity API +server mestsa01ec 10.95.128.13 ecFIsysadmin OI-Database +server messa01ec 10.95.128.14 ecFIsysadmin OI-Database +server messa05ec 10.95.128.32 ecFIsysadmin OI-App +server messa016ec 10.95.128.50 ecFIsysadmin Approval-System +server messa019ec 10.95.128.58 ecFIsysadmin OI +server elsstec101 10.64.152.101 ecPhares TemeculaDataArchive +server messtec101 10.95.128.201 ecPhares JumpHost +server messtec102 10.95.128.202 ecPhares JumpHost-\*\*\* +server messa020ec 10.95.128.122 ECReportServicesAdmin Services +server messv01ec 10.95.128.28 LocalSystem ScrapData +server messa017ec 10.95.128.53 Unknown ISS +server messa018ec 10.95.128.54 Unknown Tableau +server messa03ec 10.95.128.30 ecFIsysadmin Sharepoint +server leosatec01 10.##.###.## Unknown ISS>Stealth +server leosatec04 10.##.###.## Unknown ISS>Stealth +server leosaec04 10.89.128.50 Unknown >Stealth +server mestsa005 10.95.176.60 mesAPCsvc +server mestsa003 10.95.176.46 mesEAFsvc Both-\*\*\* +server messa017 10.95.176.124 mesEAFsvc Reporting +server mestsa006 10.95.176.61 mesYODAsvc +server messa014 10.95.176.121 ApplicationPoolIdentity API +server messa009 10.95.104.24 mesFIsysadmin Metrology +server messa005 10.95.176.45 mesFIsysadmin OI-App +server messa012 10.95.176.50 mesFIsysadmin OI-App +server mestsa007 10.95.176.112 mesFIsysadmin IIS +server mestsa008 10.95.176.125 mesFIsysadmin IIS +server ISCCVMD0AF56899 10.187.35.93 Phares Win-11 +server messa1005 10.95.104.109 Unknown +server messa004 10.95.176.44 Unknown FabTime +server messt6501 10.95.176.62 Unknown iApps-B +server messt6502 10.95.176.62 Unknown iApps-A +server messa010 10.95.176.111 Unknown SQDS +server loesapaec21 10.89.140.61 ecusleoCamstarPsvc +server loesapaec22 10.89.140.62 ecusleoCamstarPsvc +server leosataec21 10.89.140.63 ecusleoCamstarTsvc +server leosaec04 10.89.140.50 ecusSerialLogsvc +server leosatec01 10.89.140.42 ecusXFracassvc IIS +server mestsa005 10.95.176.60 mesAPCsvc +server mestsa003 10.95.176.46 mesEAFsvc Both-\*\*\* +server messa017 10.95.176.124 mesEAFsvc Reporting +server mestsa004 10.95.176.47 mesganEAF Deprecated +server mestsa006 10.95.176.61 mesYODAsvc +server mesd1unity10 10.##.###.## ecFIsysadmin +server mesd1unity2 10.##.###.## Unknown +server mesd1unity3 10.##.###.## Unknown +server mesd1unity6 10.##.###.## Unknown +server mesd1biorad4 10.95.154.10 Unknown +server mesd1unity4 10.95.154.13 Unknown HgCV-#2 +server mesd1unity1 10.95.192.11 Unknown Stratus +server mesd1unity5 10.95.192.15 Unknown At-Desk +server mesd1unity7 10.95.192.16 Unknown At-Desk +server mesd1unity8 10.95.192.28 Unknown On diff --git a/server/imported/2023-07-17.tsv b/server/imported/2023-07-17.tsv new file mode 100644 index 0000000..6819c4c --- /dev/null +++ b/server/imported/2023-07-17.tsv @@ -0,0 +1,86 @@ +type title description tags links body Server Type Number of CPU Cores Total Physical Memory (MB) Total HD Capacity (GB) Owner Populated by Mike IP +server elsstec101 TemeculaDataArchive ecPhares 10.64.152.101 +server ISCCVMD0AF56899 Win-11 Phares 10.187.35.93 +server leosaec04 >Stealth Unknown 10.89.128.50 +server leosaec04 ecusSerialLogsvc 10.89.140.50 +server leosataec21 ecusleoCamstarTsvc 10.89.140.63 +server leosatec01 ISS>Stealth Unknown 10.##.###.## +server leosatec01 IIS ecusXFracassvc 10.89.140.42 +server leosatec04 ISS>Stealth Unknown 10.##.###.## +server loesapaec21 ecusleoCamstarPsvc 10.89.140.61 +server loesapaec22 ecusleoCamstarPsvc 10.89.140.62 +server mesd1biorad4 Unknown 10.95.154.10 +server mesd1unity1 Stratus Unknown 10.95.192.11 +server mesd1unity10 ecFIsysadmin 10.##.###.## +server mesd1unity2 Unknown 10.##.###.## +server mesd1unity3 Unknown 10.##.###.## +server mesd1unity4 HgCV-#2 Unknown 10.95.154.13 +server mesd1unity5 At-Desk Unknown 10.95.192.15 +server mesd1unity6 Unknown 10.##.###.## +server mesd1unity7 At-Desk Unknown 10.95.192.16 +server mesd1unity8 On Unknown 10.95.192.28 +server mesirwfp001 ecusmesirwfp001stl +server messa004 FabTime Unknown 10.95.176.44 +server messa005 OI-App mesFIsysadmin 10.95.176.45 +server messa009 Metrology mesFIsysadmin 10.95.104.24 +server messa010 SQDS Unknown 10.95.176.111 +server messa010ec Metrology GaN App Server Prod ecFIsysadmin Metrology-*** Windows Server (virtual) 2 8,191.00 84 Mike Phares 10.95.128.37 +server messa011ec EAF GaN Runtime Agent Server - Prod Prod ecmesEAF B-Runtime-Agent Windows Server (virtual) 4 16,383.00 79 Mike Phares 10.95.128.38 +server messa012 OI-App mesFIsysadmin 10.95.176.50 +server messa012ec APC Trend Prod App Server 1 Prod ecAPCsvc C Windows Server (virtual) 4 8,190.00 180 Mike Phares 10.95.128.39 +server messa013ec APC Trend Prod ecAPCsvc B-*** Windows Server (virtual) 4 8,190.00 179 Mike Phares 10.95.128.40 +server messa014 API ApplicationPoolIdentity 10.95.176.121 +server messa014ec YODA Prod App Server 1 Prod ecYODAsvc C Windows Server (virtual) 4 16,383.00 260 Mike Phares 10.95.128.41 +server messa015ec YODA Prod App Server 2 Prod ecYODAsvc B Windows Server (virtual) 4 16,383.00 259 Mike Phares 10.95.128.42 +server messa016ec FAB Approval System Web Server ecFIsysadmin Approval-System Windows Server (virtual) 2 8,190.00 599 Jonathan Ouellette 10.95.128.50 +server messa017 Reporting Dev mesEAFsvc 10.95.176.124 +server messa017ec EC Web Server Unknown ISS Windows Server (virtual) 4 8,190.00 600 Jonathan Ouellette 10.95.128.53 +server messa018ec EC Tableau Prod Prod Unknown Tableau Windows Server (virtual) 8 32,766.00 600 Jonathan Ouellette 10.95.128.54 +server messa019ec New OpenInsight Prod DB Prod ecFIsysadmin OIa Windows Server (virtual) 8 32,766.00 229 Jonathan Jonathan Ouellette 10.95.128.58 +server messa01ec OpenInsight EC Prod DB Prod ecFIsysadmin OI-Database Windows Server (virtual) 8 32,767.00 129 Jonathan Jonathan Ouellette 10.95.128.14 +server messa020ec Openinsight EC API ApplicationPoolIdentity API Windows Server (virtual) 2 16,382.00 350 Jonathan Jonathan Ouellette 10.95.128.122 +server messa02ec IT OS - Utility - MES EC Jump Host need to verify if needed Windows Server (virtual) 4 16,383.00 259 NA +server messa03ec Sharepoint ecFIsysadmin 10.95.128.30 +server messa04ec SPC (Si) App Server ecFIsysadmin Si-IQS-*** Windows Server (virtual) 4 16,383.00 199 Mike Phares 10.95.128.31 +server messa05ec EC Utility server - Francois Rivard ecFIsysadmin OI-App Windows Server (virtual) 2 8,191.00 139 Jonathan Ouellette 10.95.128.32 +server messa06ec Catalyst (si) App server - Francois Rivard ecFIsysadmin GaN-IQS Windows Server (virtual) 4 16,383.00 179 Mike Phares 10.95.128.33 +server messa08ec EAF Application Server - Prod - Francois Rivard Prod ecmesEAF D-Management Windows Server (virtual) 4 16,383.00 119 Mike Phares 10.95.128.35 +server messa09ec EAF Prod App Server 02 - Francois Rivard Prod ecmesEAF C-Runtime-Agent Windows Server (virtual) 4 16,383.00 99 Mike Phares 10.95.128.36 +server messa1005 Unknown 10.95.104.109 +server messbpec01 Veeam Proxy Server VM Backup Server Windows Server (virtual) 4 8,191.00 259 Peter Peter +server messcec01 Mesa EC Domain Controller To be removed Windows Server (virtual) 2 8,191.00 89 Travis Travis +server messd01ec EC File Server 2003 Windows Server (virtual) Surge Surge +server messnec01 EC DHCP 2012 Migrate DHCP to IFX DHCP Windows Server (virtual) 2 4,095.00 64 IT OS NPA ? +server messpec01 EC MES Ricoh iPrint Windows Server (virtual) 4 8,190.00 69 Joe Hackett +server messt6501 iApps-B Unknown 10.95.176.62 +server messt6502 iApps-A Unknown 10.95.176.62 +server messtec101 EC Jump Host for Admins Jump ecPhares JumpHost To be removed Windows Server (virtual) 2 8,191.00 129 NA 10.95.128.201 +server messtec102 EC Jump Host for Admins Jump ecPhares JumpHost-*** To be removed Windows Server (virtual) 2 8,191.00 170 NA 10.95.128.202 +server messv01ec MES SQL Prod - Virtual Prod LocalSystem ScrapData SQL Server - Prod Windows Server (virtual) 4 16,383.00 470 Surge Surge 10.95.128.28 +server messv02ech1 EC File server cluster - H1 To be removed Windows Server (virtual) 4 16,383.00 39 NA +server messv02ech2 EC File server cluster - H2 Single Windows File Server Windows Server (virtual) 4 16,383.00 11108 Kurt Kurt +server messv03ech1 ecusmessv03ech1stl +server messv03ech2 ecusmessv03ech2stl +server mestsa003 Both-*** mesEAFsvc 10.95.176.46 +server mestsa004 Deprecated Deprecated mesganEAF 10.95.176.47 +server mestsa005 Dev mesAPCsvc 10.95.176.60 +server mestsa006 Dev mesYODAsvc 10.95.176.61 +server mestsa007 IIS mesFIsysadmin 10.95.176.112 +server mestsa008 IIS mesFIsysadmin 10.95.176.125 +server mestsa01ec OpenInisght Dev Dev ecFIsysadmin OI-Database Windows Server (virtual) 8 16,383.00 229 Jonathan Jonathan Ouellette 10.95.128.13 +server mestsa02ec APC Trend Stage App server Stage ecAPCsvc A Windows Server (virtual) 2 6,143.00 109 Mike Phares 10.95.128.43 +server mestsa03ec YODA Test App server Stage ecYODAsvc A Windows Server (virtual) 4 16,383.00 259 Mike Phares 10.95.128.44 +server mestsa04ec EC Tableau Dev Dev Windows Server (virtual) 4 16,382.00 400 Jonathan Ouellette +server mestsa05ec EC Fab Approval Dev Dev Windows Server (virtual) 2 16,382.00 180 Jonathan Ouellette +server mestsa06ec GaN-IQS ecFIsysadmin 10.95.128.57 +server mestsa07ec EAF App Test Server Stage ecmesEAF A-Both Windows Server (virtual) 4 16,383.00 124 Mike Phares 10.95.128.34 +server mestsa08ec New OpenInsight Dev DB Dev OI Windows Server (virtual) 8 16,382.00 255 Jonathan Jonathan Ouellette 10.95.128.59 +server mestsv01ec MES SQL Dev Dev SQL Server - Dev Windows Server (virtual) 1 16,383.00 169 Surge Surge +server mestsv02ec ecusmestsv02ecstl +server mesxsec011 Server for APC production oracle Prod Oracle Cluster Node 1 Linux Server (physical) 16 515,692.00 Peter Peter +server mesxsec012 Server for APC production oracle Prod Oracle Cluster Node 2 Linux Server (physical) 10 257,663.00 Peter Peter +server mesxsec013 Yoda Production server Prod Yoda Application Cluster Node 2 Linux Server (physical) 20 63,934.00 Peter Peter +server mesxsec014 Yoda Production server Prod Yoda Application Cluster Node 1 Linux Server (physical) 20 63,934.00 Peter Peter +server mesxvec031 HPE SG Quorum EC Cluster Quorum Server Linux Server (virtual) 2 7,803.00 Peter Peter +server mesxvec034 Server for fistag Standalone Oracle DB - FI Staging Linux Server (virtual) 2 40,057.00 Peter Peter +server mesxvec035 Server for apcmess Standalone Oracle DB - APC Staging Linux Server (virtual) 2 40,057.00 Peter Peter diff --git a/server/isccvmd0af56899.md b/server/isccvmd0af56899.md new file mode 100644 index 0000000..339c309 --- /dev/null +++ b/server/isccvmd0af56899.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "Win-11" +created: "2023-09-25T16:09:52.565Z" +updated: "2023-09-25T16:09:52.565Z" +Server Type: "ISCCVMD0AF56899" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.187.35.93" +--- + +# ISCCVMD0AF56899 + +## Account(s) + +- [ ] [phares](../account/phares.md) + +## Comment 2023-07-17 diff --git a/server/leolsec0003.md b/server/leolsec0003.md new file mode 100644 index 0000000..9b34c6d --- /dev/null +++ b/server/leolsec0003.md @@ -0,0 +1,9 @@ +--- +type: "note" +created: "2024-03-05T21:37:38.908Z" +updated: "2024-03-05T21:37:45.011Z" +--- + +# leolsec0003 + +## leolsec0003.leo.infineon.com 10.89.140.242 diff --git a/server/leolsec0004.md b/server/leolsec0004.md new file mode 100644 index 0000000..40bd10b --- /dev/null +++ b/server/leolsec0004.md @@ -0,0 +1,9 @@ +--- +type: "note" +created: "2024-03-05T21:37:51.862Z" +updated: "2024-03-05T21:38:34.562Z" +--- + +# leolsec0004 + +## leolsec0004.leo.infineon.com 10.89.140.234 diff --git a/server/leolsec0005.md b/server/leolsec0005.md new file mode 100644 index 0000000..940291f --- /dev/null +++ b/server/leolsec0005.md @@ -0,0 +1,9 @@ +--- +type: "note" +created: "2024-03-05T21:38:03.206Z" +updated: "2024-03-05T21:38:30.640Z" +--- + +# leolsec0005 + +## leolsec0005.leo.infineon.com 10.89.140.213 diff --git a/server/leosaec04.md b/server/leosaec04.md new file mode 100644 index 0000000..afe6a17 --- /dev/null +++ b/server/leosaec04.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.567Z" +updated: "2023-09-25T16:09:52.567Z" +Server Type: "leosaec04" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.89.140.50" +--- + +# leosaec04 + +## Account(s) + +- [ ] [ecusseriallogsvc](../account/ecusseriallogsvc.md) + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/leosaec17.md b/server/leosaec17.md new file mode 100644 index 0000000..ba97ff2 --- /dev/null +++ b/server/leosaec17.md @@ -0,0 +1,72 @@ +--- +type: "server" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +IP: "10.89.140.11" +created: "2024-03-05T01:23:57.108Z" +updated: "2024-03-06T15:26:30.700Z" +--- + +# leosaec17 + +## Account(s) + +- [ ] [ec]() + +### Info + +```yml +Asset ID: CMDB50000808480 +Name: LEOSAEC17 +Serial Number: +Type: Windows Server (virtual) +Status: Deployed +Tier1: Data Center Services +Tier2: Data Center Services +Tier3: Server Environment - Windows +Region: NA +Site: Leominster +Primary Function: Manufacturing Services +OLA: Standard +UsageType: Production +Short Description: Stealth YODA +``` + +## Sub-tasks + +- [ ] Ask Travis to remove MES from stl account +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Uncheck "When I snap a window, show what I can snap next to it"- [x] MusNotificationUx +- [x] Install-WindowsUpdate -AcceptAll -IgnoreReboot +- [x] FTYPE and ASSOC +- [x] mkdir %localappdata%\IFXApps +- [x] Windows updates Tue Feb 20 2024 09:24:01 GMT-0700 (Mountain Standard Time) +- [x] Install FreeFileSync_13.3_Windows_Setup.exe +- [x] Install 001 Git-2.32.0-64-bit.exe +- [x] Install VSCode +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force "D:\Tmp\fs\VSCode Install\002\VSCodeUserSetup-x64-1.81.0-insider\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip" C:\Users\MESPhares\.vscode-insiders +``` + +- [ ] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [ ] Add ECUSMES%Stl to Administrators +- [ ] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [ ] Restart only `Unisys Stealth Protocol` service +- [ ] IP, accounts send to Jeremy L +- [ ] Green in Stealth +- [ ] Add service account to Administrators +- [ ] Change logon user for services +- [ ] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [ ] Add service account to app specific directories +- [ ] Copied nuget config +- [ ] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [ ] VSCode - Setting repo +- [ ] RDG - MesPhares Group + +- [x] Windows updates Thu Feb 01 2024 11:58:05 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:35:57 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Mon May 20 2024 09:22:46 GMT-0700 (Mountain Standard Time) diff --git a/server/leosaec18.md b/server/leosaec18.md new file mode 100644 index 0000000..919ff2f --- /dev/null +++ b/server/leosaec18.md @@ -0,0 +1,73 @@ +--- +type: "server" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +IP: "10.89.140.14" +created: "2024-03-05T01:23:57.108Z" +updated: "2024-03-06T15:25:53.269Z" +--- + +# leosaec18 + +## Account(s) + +- [ ] [ec]() + +### Info + +```yml +Asset ID: CMDB50000808481 +Name: LEOSAEC18 +Serial Number: +Type: Windows Server (virtual) +Status: Deployed +Tier1: Data Center Services +Tier2: Data Center Services +Tier3: Server Environment - Windows +Region: NA +Site: Leominster +Primary Function: Manufacturing Services +OLA: Standard +UsageType: Production +Short Description: Stealth Yoda +``` + +## Sub-tasks + +- [ ] Ask Travis to remove MES from stl account +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Uncheck "When I snap a window, show what I can snap next to it" +- [x] MusNotificationUx +- [x] Install-WindowsUpdate -AcceptAll -IgnoreReboot +- [x] FTYPE and ASSOC +- [x] mkdir %localappdata%\IFXApps +- [x] Windows updates Tue Feb 20 2024 09:24:01 GMT-0700 (Mountain Standard Time) +- [x] Install FreeFileSync_13.3_Windows_Setup.exe +- [x] Install 001 Git-2.32.0-64-bit.exe +- [x] Install VSCode +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force D:\Tmp\Phares\002\VSCodeUserSetup-x64-1.81.0-insider\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [ ] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [ ] Add ECUSMES%Stl to Administrators +- [ ] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [ ] Restart only `Unisys Stealth Protocol` service +- [ ] IP, accounts send to Jeremy L +- [ ] Green in Stealth +- [ ] Add service account to Administrators +- [ ] Change logon user for services +- [ ] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [ ] Add service account to app specific directories +- [ ] Copied nuget config +- [ ] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [ ] VSCode - Setting repo +- [ ] RDG - MesPhares Group + +- [x] Windows updates Thu Feb 01 2024 11:58:05 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:35:57 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Mon May 20 2024 09:22:11 GMT-0700 (Mountain Standard Time) diff --git a/server/leosaec19.md b/server/leosaec19.md new file mode 100644 index 0000000..802ba2d --- /dev/null +++ b/server/leosaec19.md @@ -0,0 +1,73 @@ +--- +type: "server" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +IP: "10.89.140.13" +created: "2024-03-05T01:23:57.109Z" +updated: "2024-03-06T15:25:06.501Z" +--- + +# leosaec19 + +## Account(s) + +- [ ] [ec]() + +### Info + +```yml +Asset ID: CMDB50000808686 +Name: LEOSAEC19 +Serial Number: +Type: Windows Server (virtual) +Status: Deployed +Tier1: Data Center Services +Tier2: Data Center Services +Tier3: Server Environment - Windows +Region: NA +Site: Leominster +Primary Function: Manufacturing Services +OLA: Standard +UsageType: Production +Short Description: Stealth Yoda +``` + +## Sub-tasks + +- [ ] Ask Travis to remove MES from stl account +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Uncheck "When I snap a window, show what I can snap next to it" +- [x] MusNotificationUx +- [x] Install-WindowsUpdate -AcceptAll -IgnoreReboot +- [x] FTYPE and ASSOC +- [x] mkdir %localappdata%\IFXApps +- [x] Windows updates Tue Feb 20 2024 09:24:01 GMT-0700 (Mountain Standard Time) +- [x] Install FreeFileSync_13.3_Windows_Setup.exe +- [x] Install 001 Git-2.32.0-64-bit.exe +- [x] Install VSCode +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force D:\Tmp\Phares\002\VSCodeUserSetup-x64-1.81.0-insider\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [ ] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [ ] Add ECUSMES%Stl to Administrators +- [ ] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [ ] Restart only `Unisys Stealth Protocol` service +- [ ] IP, accounts send to Jeremy L +- [ ] Green in Stealth +- [ ] Add service account to Administrators +- [ ] Change logon user for services +- [ ] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [ ] Add service account to app specific directories +- [ ] Copied nuget config +- [ ] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [ ] VSCode - Setting repo +- [ ] RDG - MesPhares Group + +- [x] Windows updates Thu Feb 01 2024 11:58:05 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:35:57 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Mon May 20 2024 09:22:26 GMT-0700 (Mountain Standard Time) diff --git a/server/leosataec21.md b/server/leosataec21.md new file mode 100644 index 0000000..e4d4b0b --- /dev/null +++ b/server/leosataec21.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.569Z" +updated: "2023-09-25T16:09:52.569Z" +Server Type: "leosataec21" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.89.140.63" +--- + +# leosataec21 + +## Account(s) + +- [ ] [ecusleocamstartsvc](../account/ecusleocamstartsvc.md) + +## Comment 2023-07-17 diff --git a/server/leosatec01.md b/server/leosatec01.md new file mode 100644 index 0000000..83c9023 --- /dev/null +++ b/server/leosatec01.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "IIS" +created: "2023-09-25T16:09:52.570Z" +updated: "2023-09-25T16:09:52.570Z" +Server Type: "leosatec01" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.89.140.42" +--- + +# leosatec01 + +## Account(s) + +- [ ] [ecusxfracassvc](../account/ecusxfracassvc.md) + +## Comment 2023-07-17 diff --git a/server/leosatec04.md b/server/leosatec04.md new file mode 100644 index 0000000..b5cdf0d --- /dev/null +++ b/server/leosatec04.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "ISS\u003EStealth" +created: "2023-09-25T16:09:52.572Z" +updated: "2023-09-25T16:09:52.572Z" +Server Type: "leosatec04" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.##.###.##" +--- + +# leosatec04 + +## Account(s) + +- [ ] [unknown](../account/unknown.md) + +## Comment 2023-07-17 diff --git a/server/loesapaec21.md b/server/loesapaec21.md new file mode 100644 index 0000000..d25b05f --- /dev/null +++ b/server/loesapaec21.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.573Z" +updated: "2023-09-25T16:09:52.573Z" +Server Type: "loesapaec21" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.89.140.61" +--- + +# loesapaec21 + +## Account(s) + +- [ ] [ecusleocamstarpsvc](../account/ecusleocamstarpsvc.md) + +## Comment 2023-07-17 diff --git a/server/loesapaec22.md b/server/loesapaec22.md new file mode 100644 index 0000000..5653a1c --- /dev/null +++ b/server/loesapaec22.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.574Z" +updated: "2023-09-25T16:09:52.575Z" +Server Type: "loesapaec22" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.89.140.62" +--- + +# loesapaec22 + +## Account(s) + +- [ ] [ecusleocamstarpsvc](../account/ecusleocamstarpsvc.md) + +## Comment 2023-07-17 diff --git a/server/mesirwfp001.md b/server/mesirwfp001.md new file mode 100644 index 0000000..ba01355 --- /dev/null +++ b/server/mesirwfp001.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.576Z" +updated: "2023-09-25T16:09:52.576Z" +Server Type: "" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "" +--- + +# mesirwfp001 + +- [ ] [[ecusmesirwfp001stl]] + +## Comment 2023-07-17 diff --git a/server/meslvec0004.md b/server/meslvec0004.md new file mode 100644 index 0000000..9deb321 --- /dev/null +++ b/server/meslvec0004.md @@ -0,0 +1,28 @@ +--- +type: "note" +created: "2024-03-05T21:32:30.048Z" +updated: "2024-03-05T21:32:47.194Z" +--- + +# meslvec0004 + +## metrologysvc@meslvec0004.mes.infineon.com + +### Info + +```yml +Asset ID: CMDB50000795689 +Name: MESLVEC0004 +Serial Number: +Type: Linux Server (virtual) +Status: Deployed +Tier1: Data Center Services +Tier2: Data Center Services +Tier3: Server Environment - Unix +Region: NA +Site: Mesa +Primary Function: Data Center Services +OLA: Standard +UsageType: Development +Short Description: LUY1 +``` diff --git a/server/meslvec0005.md b/server/meslvec0005.md new file mode 100644 index 0000000..8e85fa4 --- /dev/null +++ b/server/meslvec0005.md @@ -0,0 +1,28 @@ +--- +type: "note" +created: "2024-03-05T21:32:54.474Z" +updated: "2024-03-05T21:33:02.642Z" +--- + +# meslvec0005 + +## metrologysvc@meslvec0005.mes.infineon.com + +### Info + +```yml +Asset ID: CMDB50000795690 +Name: MESLVEC0005 +Serial Number: +Type: Linux Server (virtual) +Status: Deployed +Tier1: Data Center Services +Tier2: Data Center Services +Tier3: Server Environment - Unix +Region: NA +Site: Mesa +Primary Function: Data Center Services +OLA: Standard +UsageType: Development +Short Description: LUY 2 +``` diff --git a/server/messa004.md b/server/messa004.md new file mode 100644 index 0000000..e7ba233 --- /dev/null +++ b/server/messa004.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "FabTime" +created: "2023-09-25T16:09:52.578Z" +updated: "2023-09-25T16:09:52.578Z" +Server Type: "messa004" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.44" +--- + +# messa004 + +## Account(s) + +- [ ] [unknown](../account/unknown.md) + +## Comment 2023-07-17 diff --git a/server/messa005.md b/server/messa005.md new file mode 100644 index 0000000..fdcaf60 --- /dev/null +++ b/server/messa005.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "OI-App" +created: "2023-09-25T16:09:52.579Z" +updated: "2023-09-25T16:09:52.580Z" +Server Type: "messa005" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.45" +--- + +# messa005 + +## Account(s) + +- [ ] [mesfisysadmin](../account/mesfisysadmin.md) + +## Sub-tasks + +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa009.md b/server/messa009.md new file mode 100644 index 0000000..607051f --- /dev/null +++ b/server/messa009.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "Metrology" +created: "2023-09-25T16:09:52.582Z" +updated: "2023-09-25T16:09:52.583Z" +Server Type: "messa009" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.104.24" +--- + +# messa009 + +## Account(s) + +- [ ] [mesfisysadmin](../account/mesfisysadmin.md) + +## Comment 2023-07-17 diff --git a/server/messa010.md b/server/messa010.md new file mode 100644 index 0000000..3695d13 --- /dev/null +++ b/server/messa010.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "SQDS" +created: "2023-09-25T16:09:52.585Z" +updated: "2023-09-25T16:09:52.586Z" +Server Type: "messa010" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.111" +--- + +# messa010 + +## Account(s) + +- [ ] [unknown](../account/unknown.md) + +## Comment 2023-07-17 diff --git a/server/messa010ec.md b/server/messa010ec.md new file mode 100644 index 0000000..63b894d --- /dev/null +++ b/server/messa010ec.md @@ -0,0 +1,83 @@ +--- +type: "server" +description: "Metrology GaN App Server" +created: "2023-11-29T18:39:27.615Z" +updated: "2023-11-29T18:39:27.615Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "8,191.00" +Total HD Capacity (GB): "84" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.37" +--- + +# messa010ec + +## Account(s) + +- [x] [ecfisysadmin](../account/ecfisysadmin.md) + +## DNS(s) + +- [ ] [ecwebapps](../dns/ecwebapps.md) +- [ ] [oi-metrology-api-prod](../dns/oi-metrology-api-prod.md) +- [ ] [oi-metrology-viewer-prod](../dns/oi-metrology-viewer-prod.md) +- [ ] [oi-metrology-viewer-archive](../dns/oi-metrology-viewer-archive.md) + +## Process(es) + +- [ ] [Azure Pipelines Agent MESSA010EC ECFISysAdmin](../process/azure-pipelines-agent-messa010ec-ecfisysadmin.md) +- [ ] [nginx ecfisysadmin](../process/nginx-ecfisysadmin.md) +- [ ] [OI Metrology Archive 5001](../process/oi-metrology-archive-5001.md) +- [ ] [OI Metrology Viewer 5004](../process/oi-metrology-viewer-5004.md) +- [ ] [iis-mesa-reporting-services](../process/iis-mesa-reporting-services.md) +- [ ] [iis-mesa-reporting-services-api](../process/iis-mesa-reporting-services-api.md) +- [ ] [IIS Metrology](../process/iis-metrology.md) +- [ ] [IIS OI Metrology Archive-80](../process/iis-oi-metrology-archive.md) +- [ ] [IIS OI Metrology Viewer](../process/iis-oi-metrology-viewer.md) +- [ ] [IIS OI Metrology Viewer](../process/iis-oi-metrology-viewer-server.md) +- ~~OI-Metrology-Viewer-5002~~ + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Green in Stealth +- [x] ~~IP, accounts send to Jeremy L~~ +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Install VSCode +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force D:\ProgramData\messa010ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force D:\ProgramData\messa010ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group - Commit: eaaedd3d30779e04fd34d17dccfe3527d67192c3 +- [x] Windows updates Tue Feb 20 2024 10:00:38 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 11:13:59 GMT-0700 (Mountain Standard Time) diff --git a/server/messa011ec.md b/server/messa011ec.md new file mode 100644 index 0000000..94d52c5 --- /dev/null +++ b/server/messa011ec.md @@ -0,0 +1,79 @@ +--- +type: "server" +description: "EAF GaN Runtime Agent Server - Prod" +created: "2023-11-17T16:10:01.751Z" +updated: "2024-04-10T17:26:27.367Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "79" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.38" +--- + +# messa011ec + +## Account(s) + +- [x] [ecmeseaf](../account/ecmeseaf.md) + +## Process(es) + +- [ ] [EAF Runtime Agent](../process/eaf-runtime-agent.md) + - [ ] Config + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Install VSCode +- [x] tnsnames.ora +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Clean old logs +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\messa09ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\messa09ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group + +```bash +net use o: \\10.95.1.211\Share /Persistent:YES +``` + +- [ ] Set MaxAutoRestartRetryCount back to 3 or maybe 10 + +- [x] Windows updates Tue Feb 20 2024 11:18:07 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 09:48:29 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 10:26:26 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Thu Apr 18 2024 11:14:47 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 09:50:09 GMT-0700 (Mountain Standard Time) diff --git a/server/messa012.md b/server/messa012.md new file mode 100644 index 0000000..22b76f0 --- /dev/null +++ b/server/messa012.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "OI-App" +created: "2023-09-25T16:09:52.589Z" +updated: "2023-09-25T16:09:52.589Z" +Server Type: "messa012" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.50" +--- + +# messa012 + +## Account(s) + +- [ ] [mesfisysadmin](../account/mesfisysadmin.md) + +## Sub-tasks + +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa012ec.md b/server/messa012ec.md new file mode 100644 index 0000000..0eabe6f --- /dev/null +++ b/server/messa012ec.md @@ -0,0 +1,77 @@ +--- +type: "server" +description: "APC Trend Prod App Server 1" +created: "2024-01-14T02:17:45.870Z" +updated: "2024-04-10T16:07:31.392Z" +tags: ["Prod", "EC", "C"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "8,190.00" +Total HD Capacity (GB): "180" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.39" +--- + +# messa012ec + +## Account(s) + +- [x] [ecapcsvc](../account/ecapcsvc.md) + +## Process(es) + +- [ ] [APC FDC Extractor Service 0001](../process/apc_fdc-extractor-service-0001.md) +- [ ] [APC FDC Extractor Service 0002](../process/apc_fdc-extractor-service-0002.md) +- [ ] [APC FDC Extractor Service 0003](../process/apc_fdc-extractor-service-0003.md) +- [ ] [APC FDC Extractor Service 0004](../process/apc_fdc-extractor-service-0004.md) +- [ ] [APC FDC Extractor Service 0005](../process/apc_fdc-extractor-service-0005.md) +- [ ] [APC FDC MasterControlService](../process/apc_fdc-mastercontrolservice.md) +- [ ] [APC FDC ReceiverService POLL](../process/apc_fdc-receiverservice_poll.md) +- ~~EAF Runtime Agent~~ +- [x] nginx + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Install VSCode +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\mestsa02ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\mestsa02ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] tnsnames.ora +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Windows updates Thu Feb 01 2024 12:00:20 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:07:49 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 09:07:30 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 09:00:38 GMT-0700 (Mountain Standard Time) diff --git a/server/messa013ec.md b/server/messa013ec.md new file mode 100644 index 0000000..99dc90d --- /dev/null +++ b/server/messa013ec.md @@ -0,0 +1,77 @@ +--- +type: "server" +description: "APC Trend" +created: "2024-01-14T02:17:44.680Z" +updated: "2024-04-10T16:07:25.503Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "8,190.00" +Total HD Capacity (GB): "179" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.40" +--- + +# messa013ec + +## Account(s) + +- [x] [ecapcsvc](../account/ecapcsvc.md) + +## Process(es) + +- [ ] [APC FDC Extractor Service 0001](../process/apc_fdc-extractor-service-0001.md) +- [ ] [APC FDC Extractor Service 0002](../process/apc_fdc-extractor-service-0002.md) +- [ ] [APC FDC Extractor Service 0003](../process/apc_fdc-extractor-service-0003.md) +- [ ] [APC FDC Extractor Service 0004](../process/apc_fdc-extractor-service-0004.md) +- [ ] [APC FDC Extractor Service 0005](../process/apc_fdc-extractor-service-0005.md) +- [ ] [APC FDC MasterControlService](../process/apc_fdc-mastercontrolservice.md) +- [ ] [APC FDC ReceiverService POLL](../process/apc_fdc-receiverservice_poll.md) +- [x] [nginx-ecapcsvc](../process/nginx-ecapcsvc.md) + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Install VSCode +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\mestsa02ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\mestsa02ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] tnsnames.ora +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Oracle - connected to apc prod fdc_admin +- [x] Windows updates Thu Feb 01 2024 11:56:32 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:08:16 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 09:07:24 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 09:00:21 GMT-0700 (Mountain Standard Time) diff --git a/server/messa014.md b/server/messa014.md new file mode 100644 index 0000000..ecd4374 --- /dev/null +++ b/server/messa014.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "API" +created: "2023-09-25T16:09:52.595Z" +updated: "2023-09-25T16:09:52.595Z" +Server Type: "messa014" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.121" +--- + +# messa014 + +## Account(s) + +- [ ] [applicationpoolidentity](../account/applicationpoolidentity.md) + +## Sub-tasks + +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa014ec.md b/server/messa014ec.md new file mode 100644 index 0000000..ce60bf9 --- /dev/null +++ b/server/messa014ec.md @@ -0,0 +1,77 @@ +--- +type: "server" +description: "YODA Prod App Server 1" +created: "2023-10-20T04:22:50.373Z" +updated: "2024-04-10T16:33:57.817Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "260" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.41" +--- + +# messa014ec + +## Account(s) + +- [x] [ecyodasvc](../account/ecyodasvc.md) + +## Process(es) + +- [ ] [IFX Security 5.1.0 7703](../process/ifx-security.md) +- [ ] [IFX Api 5.1.0 7703](../process/ifx-api.md) + +## Incoming Port(s) + +- [ ] [rdv-http-8801](../incoming/rdv-http-8801.md) +- [ ] [rdv-http-8803](../incoming/rdv-http-8803.md) +- [ ] [tibco-7701](../incoming/tibco-7701.md) +- [ ] [tibco-7703](../incoming/tibco-7703.md) + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Set Taskbar order +- [x] Uncheck `Show desktop items` +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Install VSCode +- [x] tnsnames.ora +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Clean old logs +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\mestsa03ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\mestsa03ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] Windows updates Tue Feb 20 2024 10:01:11 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 09:33:57 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 11:01:01 GMT-0700 (Mountain Standard Time) diff --git a/server/messa015ec.md b/server/messa015ec.md new file mode 100644 index 0000000..310bdaf --- /dev/null +++ b/server/messa015ec.md @@ -0,0 +1,77 @@ +--- +type: "server" +description: "YODA Prod App Server 2" +created: "2023-10-20T04:22:50.374Z" +updated: "2024-04-10T16:34:04.218Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "259" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.42" +--- + +# messa015ec + +## Account(s) + +- [ ] [ecyodasvc](../account/ecyodasvc.md) + +## Process(es) + +- [ ] [IFX Security 5.1.0 7703](../process/ifx-security.md) +- [ ] [IFX Api 5.1.0 7703](../process/ifx-api.md) + +## Incoming Port(s) + +- [ ] [rdv-http-8801](../incoming/rdv-http-8801.md) +- [ ] [rdv-http-8803](../incoming/rdv-http-8803.md) +- [ ] [tibco-7701](../incoming/tibco-7701.md) +- [ ] [tibco-7703](../incoming/tibco-7703.md) + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Install VSCode +- [x] tnsnames.ora +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Clean old logs +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\mestsa03ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\mestsa03ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] Windows updates Tue Feb 20 2024 10:01:11 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 09:34:03 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 09:51:21 GMT-0700 (Mountain Standard Time) diff --git a/server/messa016ec.md b/server/messa016ec.md new file mode 100644 index 0000000..e878fc1 --- /dev/null +++ b/server/messa016ec.md @@ -0,0 +1,25 @@ +--- +type: "server" +description: "FAB Approval System Web Server" +created: "2023-09-25T16:09:52.602Z" +updated: "2023-09-25T16:09:52.602Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "8,190.00" +Total HD Capacity (GB): "599" +Owner: "" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.50" +--- + +# messa016ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa017.md b/server/messa017.md new file mode 100644 index 0000000..88acf1c --- /dev/null +++ b/server/messa017.md @@ -0,0 +1,38 @@ +--- +type: "server" +description: "Reporting" +created: "2024-01-14T02:17:43.707Z" +updated: "2024-02-01T18:59:54.376Z" +tags: ["Dev"] +Server Type: "messa017" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.124" +--- + +# messa017 + +## Account(s) + +- [ ] [meseafsvc](../account/meseafsvc.md) + +## DNS(s) + +- [ ] [eaf-dev-reporting](../dns/eaf-dev-reporting.md) + +## Sub-tasks + +- [x] Install VSCode +- [ ] Copied nuget config +- [ ] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] Windows updates Thu Feb 01 2024 11:59:53 GMT-0700 (Mountain Standard Time) +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [x] Windows updates Mon May 20 2024 09:13:28 GMT-0700 (Mountain Standard Time) \ No newline at end of file diff --git a/server/messa017ec.md b/server/messa017ec.md new file mode 100644 index 0000000..84404c1 --- /dev/null +++ b/server/messa017ec.md @@ -0,0 +1,25 @@ +--- +type: "server" +description: "EC Web Server" +created: "2023-09-25T16:09:52.606Z" +updated: "2024-04-09T16:48:52.434Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "8,190.00" +Total HD Capacity (GB): "600" +Owner: "" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.53" +--- + +# messa017ec + +## Account(s) + +- [ ] [unknown](../account/unknown.md) +- [x] C:\Program Files\Zabbix\conf ec.local to infineon.com + +## Comment 2023-07-17 + +ISS diff --git a/server/messa018ec.md b/server/messa018ec.md new file mode 100644 index 0000000..e1d702e --- /dev/null +++ b/server/messa018ec.md @@ -0,0 +1,25 @@ +--- +type: "server" +description: "EC Tableau Prod" +created: "2023-09-25T16:09:52.608Z" +updated: "2024-04-09T16:48:57.170Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "8" +Total Physical Memory (MB): "32,766.00" +Total HD Capacity (GB): "600" +Owner: "" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.54" +--- + +# messa018ec + +## Account(s) + +- [ ] [unknown](../account/unknown.md) +- [x] C:\Program Files\Zabbix\conf ec.local to infineon.com + +## Comment 2023-07-17 + +Tableau diff --git a/server/messa019ec.md b/server/messa019ec.md new file mode 100644 index 0000000..92f2c38 --- /dev/null +++ b/server/messa019ec.md @@ -0,0 +1,25 @@ +--- +type: "server" +description: "New OpenInsight Prod DB" +created: "2023-09-25T16:09:52.610Z" +updated: "2023-09-25T16:09:52.610Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "8" +Total Physical Memory (MB): "32,766.00" +Total HD Capacity (GB): "229" +Owner: "Jonathan" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.58" +--- + +# messa019ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa01ec.md b/server/messa01ec.md new file mode 100644 index 0000000..dba9e7c --- /dev/null +++ b/server/messa01ec.md @@ -0,0 +1,25 @@ +--- +type: "server" +description: "OpenInsight EC Prod DB" +created: "2023-09-25T16:09:52.612Z" +updated: "2023-09-25T16:09:52.612Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "8" +Total Physical Memory (MB): "32,767.00" +Total HD Capacity (GB): "129" +Owner: "Jonathan" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.14" +--- + +# messa01ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa020ec.md b/server/messa020ec.md new file mode 100644 index 0000000..b25c3f8 --- /dev/null +++ b/server/messa020ec.md @@ -0,0 +1,31 @@ +--- +type: "server" +description: "Openinsight EC API" +created: "2023-11-08T00:24:32.923Z" +updated: "2023-11-08T00:24:32.923Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "16,382.00" +Total HD Capacity (GB): "350" +Owner: "Jonathan" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.122" +--- + +# messa020ec + +## Account(s) + +- [ ] [ecreportservicesadmin](../account/ecreportservicesadmin.md) +- [ ] [applicationpoolidentity](../account/applicationpoolidentity.md) + +## DNS(s) + +- [ ] [oi-prod-ec-api](../dns/oi-prod-ec-api.md) +- [ ] [mesareportingservices-prod](../dns/mesareportingservices-prod.md) + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa022ec.md b/server/messa022ec.md new file mode 100644 index 0000000..d8d3b4e --- /dev/null +++ b/server/messa022ec.md @@ -0,0 +1,63 @@ +--- +type: "server" +description: "EAF Runtime Agent Server - Prod" +created: "2024-01-14T02:17:44.043Z" +updated: "2024-02-01T19:08:47.085Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "79" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.60" +--- + +# messa022ec + +## Account(s) + +- [x] [ecmeseaf](../account/ecmeseaf.md) + +## Process(es) + +- [ ] [EAF Runtime Agent](../process/eaf-runtime-agent.md) + - [ ] Config + +## Sub-tasks + +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Installed git +- [x] Installed dotnet-sdk-6.0.311-win-x64.exe +- [x] Installed node-v16.16.0-x64.msi +- [x] Installed accessdatabaseengine_X64.exe +- [x] Install VSCode +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Windows Updates via Install-WindowsUpdate –AcceptAll –IgnoreReboot +- [x] dotnet nuget locals all --clear +- [x] dotnet dev-certs https --trust +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [ ] Configure git +- [ ] Configure D:\vsts-agent-win-x64-2.210.1 +- [ ] Configure nginx +- [ ] Ask Travis to remove MES from stl account +- [ ] Clear Connection Security Rules +- [ ] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [ ] Add ECUSMES%Stl to Administrators +- [ ] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [ ] Restart only `Unisys Stealth Protocol` service +- [ ] IP, accounts send to Jeremy L +- [ ] Green in Stealth +- [ ] Add service account to Administrators +- [ ] Change logon user for services +- [ ] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [ ] Add service account to app specific directories +- [ ] Copied nuget config +- [x] Windows updates Thu Feb 01 2024 12:08:46 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:34:11 GMT-0700 (Mountain Standard Time) diff --git a/server/messa023ec.md b/server/messa023ec.md new file mode 100644 index 0000000..d76bdfe --- /dev/null +++ b/server/messa023ec.md @@ -0,0 +1,64 @@ +--- +type: "server" +description: "EAF Runtime Agent Server - Prod" +created: "2024-01-14T02:17:44.666Z" +updated: "2024-02-01T19:09:05.505Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "79" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.61" +--- + +# messa023ec + +## Account(s) + +- [x] [ecmeseaf](../account/ecmeseaf.md) + +## Process(es) + +- [ ] [EAF Runtime Agent](../process/eaf-runtime-agent.md) + - [ ] Config + +## Sub-tasks + +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Installed git +- [x] Installed dotnet-sdk-6.0.311-win-x64.exe +- [x] Installed node-v16.16.0-x64.msi +- [x] Installed accessdatabaseengine_X64.exe +- [x] Install VSCode +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Windows Updates via Install-WindowsUpdate –AcceptAll –IgnoreReboot +- [x] dotnet nuget locals all --clear +- [x] dotnet dev-certs https --trust +- [ ] Configure git +- [ ] Configure D:\vsts-agent-win-x64-2.210.1 +- [ ] Configure nginx +- [ ] Ask Travis to remove MES from stl account +- [ ] Clear Connection Security Rules +- [ ] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [ ] Add ECUSMES%Stl to Administrators +- [ ] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [ ] Restart only `Unisys Stealth Protocol` service +- [ ] IP, accounts send to Jeremy L +- [ ] Green in Stealth +- [ ] Add service account to Administrators +- [ ] Change logon user for services +- [ ] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [ ] Add service account to app specific directories +- [ ] Copied nuget config +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] Windows updates Thu Feb 01 2024 12:08:46 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:34:25 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Mon May 20 2024 09:48:01 GMT-0700 (Mountain Standard Time) diff --git a/server/messa02ec.md b/server/messa02ec.md new file mode 100644 index 0000000..00ed54a --- /dev/null +++ b/server/messa02ec.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "IT OS - Utility - MES EC Jump Host" +created: "2023-07-14T17:15:28.026Z" +updated: "2024-04-09T16:49:28.279Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "259" +Owner: "" +Populated by Mike: "NA" +IP: "" +--- + +# messa02ec + +- [x] C:\Program Files\Zabbix\conf ec.local to infineon.com + +## Comment 2023-07-17 + +need to verify if needed diff --git a/server/messa03ec.md b/server/messa03ec.md new file mode 100644 index 0000000..7b3fc7d --- /dev/null +++ b/server/messa03ec.md @@ -0,0 +1,22 @@ +--- +type: "server" +description: "Sharepoint" +created: "2023-09-25T16:09:52.621Z" +updated: "2023-09-25T16:09:52.621Z" +Server Type: "messa03ec" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.128.30" +--- + +# messa03ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) +- [ ] [ecmeseaf](../account/ecmeseaf.md) + +## Comment 2023-07-17 diff --git a/server/messa04ec.md b/server/messa04ec.md new file mode 100644 index 0000000..b75f5ca --- /dev/null +++ b/server/messa04ec.md @@ -0,0 +1,82 @@ +--- +type: "server" +description: "SPC (Si) App Server" +created: "2023-11-17T16:10:01.728Z" +updated: "2023-11-17T16:10:01.728Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "199" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.31" +--- + +# messa04ec + +## Account(s) + +- [x] [ecfisysadmin](../account/ecfisysadmin.md) + +## DNS(s) + +- [ ] [iqs-prod](../dns/iqs-prod.md) + +## Process(es) + +- [ ] InfinityQS Diagnostics Service Host +- [ ] [InfinityQS DMS Service](../process/infinity-qs-dms-service.md) +- [ ] InfinityQS Enterprise Integration Service +- [ ] [InfinityQS Mail Service](../process/infinity-qs-mail-service.md) +- [ ] InfinityQS Message Service +- [ ] [InfinityQS ProFicient Alarm Monitoring Service](../process/infinity-qs-proficient-alarm-monitoring-service.md) +- [ ] [InfinityQS ProFicient Data Collection Service](../process/infinity-qs-proficient-data-collection-service.md) + +C:\Program Files (x86)\InfinityQS International\ProFicient\Applications +1) InfinityQS Data Management System +2) InfinityQS Data Collection Service +3) SPC (Si) + +InfinityQS.ProFicient.DCS.GUI.exe +InfinityQS.DMS.GUI.exe + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] Green in Stealth +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Clear Windows Logs +- [x] ~~IP, accounts send to Jeremy L~~ +- [x] Windows Updates +- [x] Install VSCode +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\mestsa06ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\mestsa06ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [ ] Video diff EC Thick (00:02 => 00:47 = 45) EC iApps (00:51 => 1:24 = 33) diff --git a/server/messa05ec.md b/server/messa05ec.md new file mode 100644 index 0000000..7e5a389 --- /dev/null +++ b/server/messa05ec.md @@ -0,0 +1,26 @@ +--- +type: "server" +description: "EC Utility server - Francois Rivard" +created: "2023-09-25T16:09:52.624Z" +updated: "2024-04-09T16:49:17.070Z" +tags: ["EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "8,191.00" +Total HD Capacity (GB): "139" +Owner: "" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.32" +--- + +# messa05ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) + +## Sub-tasks + +- [x] C:\Program Files\Zabbix\conf ec.local to infineon.com +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa06ec.md b/server/messa06ec.md new file mode 100644 index 0000000..d166a2b --- /dev/null +++ b/server/messa06ec.md @@ -0,0 +1,64 @@ +--- +type: "server" +description: "Catalyst (si) App server - Francois Rivard" +created: "2024-01-14T02:17:45.919Z" +updated: "2024-04-10T16:08:04.436Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "179" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.33" +--- + +# messa06ec + +## Account(s) + +- [x] [ecfisysadmin](../account/ecfisysadmin.md) + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Install VSCode +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\mestsa06ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\mestsa06ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [ ] INVALID OR CORRUPT REGISTRATION! The license file could be locked, missing or unreadable. Please contact InfinityQS Technical Support at support@infinityqs.com or call toll free at 877.772.7978 for additional information. +- [x] Windows updates Thu Feb 01 2024 11:58:05 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:35:57 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 09:08:04 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/messa08ec.md b/server/messa08ec.md new file mode 100644 index 0000000..df59e89 --- /dev/null +++ b/server/messa08ec.md @@ -0,0 +1,85 @@ +--- +type: "server" +description: "EAF Application Server - Prod - Francois Rivard" +created: "2023-11-17T16:10:01.744Z" +updated: "2024-04-09T16:49:08.695Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "119" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.35" +--- + +# messa08ec + +## Account(s) + +- [x] [ecmeseaf](../account/ecmeseaf.md) + +## DNS(s) + +- [ ] [eaf-prod](../dns/eaf-prod.md) + +## Process(es) + +- [ ] [Azure Pipelines Agent IIS messa08ec ecedasvc](../process/azure-pipelines-agent-iis-messa08ec-ecedasvc.md) +- [ ] [Azure Pipelines Agent messa08ec ecmeseaf](../process/azure-pipelines-agent-windows-service-messa08ec-ecmeseaf.md) +- [ ] [BaGet server release 772911f 867503](../process/baget-server-release-772911f-867503.md) +- [ ] [BaGet worker release 772911f 867503](../process/baget-worker-release-772911f-867503.md) +- [ ] [DataFramework Unit Service](../process/dataframework-unit-service.md) + - [ ] Config +- [ ] [EAF Management Server](../process/eaf-management-server.md) + - [ ] Config + - [ ] In Mango Environment Settings for tibco and fileshare + - [ ] In Mango Logging Configuration (fileshare) +- [ ] [EAF Runtime Agent](../process/eaf-runtime-agent.md) + - [ ] Config + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Set Taskbar order +- [x] Uncheck `Show desktop items` +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Install VSCode +- [x] tnsnames.ora +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Clean old logs +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Oracle - connected to eaf production eafprod +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group - Commit: eaaedd3d30779e04fd34d17dccfe3527d67192c3 +- [x] C:\Program Files\Zabbix\conf ec.local to infineon.com + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\messa09ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\messa09ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [ ] Set MaxAutoRestartRetryCount back to 3 or maybe 10 +- [ ] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Wed May 22 2024 13:27:06 GMT-0700 (Mountain Standard Time) \ No newline at end of file diff --git a/server/messa09ec.md b/server/messa09ec.md new file mode 100644 index 0000000..534c354 --- /dev/null +++ b/server/messa09ec.md @@ -0,0 +1,73 @@ +--- +type: "server" +description: "EAF Prod App Server 02 - Francois Rivard" +created: "2024-01-14T02:17:43.763Z" +updated: "2024-04-16T15:28:12.348Z" +tags: ["Prod", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "99" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.36" +--- + +# messa09ec + +## Account(s) + +- [x] [ecmeseaf](../account/ecmeseaf.md) + +## Process(es) + +- [ ] [EAF Runtime Agent](../process/eaf-runtime-agent.md) + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Copied nuget config +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Install VSCode +- [x] tnsnames.ora +- [x] SFC /scannow +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force D:\ProgramData\messa09ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force D:\ProgramData\messa09ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [ ] Set MaxAutoRestartRetryCount back to 3 or maybe 10 +- [x] Windows updates Fri Feb 02 2024 12:12:24 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Fri Feb 02 2024 12:54:53 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Mon Feb 05 2024 09:13:06 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:37:56 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Apr 16 2024 08:28:11 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 10:39:20 GMT-0700 (Mountain Standard Time) diff --git a/server/messa1005.md b/server/messa1005.md new file mode 100644 index 0000000..4526526 --- /dev/null +++ b/server/messa1005.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.632Z" +updated: "2023-09-25T16:09:52.632Z" +Server Type: "messa1005" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.104.109" +--- + +# messa1005 + +## Account(s) + +- [ ] [unknown](../account/unknown.md) + +## Comment Fri Nov 17 2023 09:15:49 GMT-0700 (Mountain Standard Time) + +- Windows Server 2012/R2 +- [ ] INC000007213044 diff --git a/server/messbpec01.md b/server/messbpec01.md new file mode 100644 index 0000000..625d243 --- /dev/null +++ b/server/messbpec01.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "Veeam Proxy Server" +created: "2023-07-14T17:15:28.048Z" +updated: "2023-07-25T16:51:34.774Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "8,191.00" +Total HD Capacity (GB): "259" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# messbpec01 + +## Comment 2023-07-17 + +VM Backup Server diff --git a/server/messcec01.md b/server/messcec01.md new file mode 100644 index 0000000..c9ec5fd --- /dev/null +++ b/server/messcec01.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "Mesa EC Domain Controller" +created: "2023-07-14T17:15:28.051Z" +updated: "2023-07-25T16:51:35.472Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "8,191.00" +Total HD Capacity (GB): "89" +Owner: "Travis" +Populated by Mike: "Travis" +IP: "" +--- + +# messcec01 + +## Comment 2023-07-17 + +To be removed diff --git a/server/messd01ec.md b/server/messd01ec.md new file mode 100644 index 0000000..6fff4d4 --- /dev/null +++ b/server/messd01ec.md @@ -0,0 +1,17 @@ +--- +type: "server" +description: "EC File Server 2003" +created: "2023-07-14T17:15:28.057Z" +updated: "2023-07-25T16:51:36.056Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "Surge" +Populated by Mike: "Surge" +IP: "" +--- + +# messd01ec + +## Comment 2023-07-17 diff --git a/server/messnec01.md b/server/messnec01.md new file mode 100644 index 0000000..4533839 --- /dev/null +++ b/server/messnec01.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "EC DHCP 2012" +created: "2023-07-14T17:15:28.058Z" +updated: "2023-07-25T16:51:36.688Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "4,095.00" +Total HD Capacity (GB): "64" +Owner: "IT OS NPA" +Populated by Mike: "?" +IP: "" +--- + +# messnec01 + +## Comment 2023-07-17 + +Migrate DHCP to IFX DHCP diff --git a/server/messpec01.md b/server/messpec01.md new file mode 100644 index 0000000..141db3e --- /dev/null +++ b/server/messpec01.md @@ -0,0 +1,17 @@ +--- +type: "server" +description: "EC MES Ricoh iPrint" +created: "2023-07-14T17:15:28.060Z" +updated: "2023-07-25T16:51:37.368Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "8,190.00" +Total HD Capacity (GB): "69" +Owner: "" +Populated by Mike: "Joe Hackett" +IP: "" +--- + +# messpec01 + +## Comment 2023-07-17 diff --git a/server/messt6501.md b/server/messt6501.md new file mode 100644 index 0000000..d73b7dd --- /dev/null +++ b/server/messt6501.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "iApps-B" +created: "2023-09-25T16:09:52.635Z" +updated: "2023-09-25T16:09:52.636Z" +Server Type: "messt6501" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.62" +--- + +# messt6501 + +## Account(s) + +- [ ] [unknown](../account/unknown.md) + +## Comment 2023-07-17 diff --git a/server/messt6502.md b/server/messt6502.md new file mode 100644 index 0000000..982de6b --- /dev/null +++ b/server/messt6502.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "iApps-A" +created: "2023-09-25T16:09:52.637Z" +updated: "2023-09-25T16:09:52.638Z" +Server Type: "messt6502" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.62" +--- + +# messt6502 + +## Account(s) + +- [ ] [unknown](../account/unknown.md) + +## Comment 2023-07-17 diff --git a/server/messtec101.md b/server/messtec101.md new file mode 100644 index 0000000..f46a453 --- /dev/null +++ b/server/messtec101.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "EC Jump Host for Admins" +created: "2023-09-25T16:09:52.639Z" +updated: "2023-09-25T16:09:52.639Z" +tags: ["Jump"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "8,191.00" +Total HD Capacity (GB): "129" +Owner: "" +Populated by Mike: "NA" +IP: "10.95.128.201" +--- + +# messtec101 + +## Account(s) + +- [ ] [ecphares](../account/ecphares.md) + +## Comment 2023-07-17 + +JumpHost To be removed diff --git a/server/messtec102.md b/server/messtec102.md new file mode 100644 index 0000000..ca77990 --- /dev/null +++ b/server/messtec102.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "EC Jump Host for Admins" +created: "2023-09-25T16:09:52.642Z" +updated: "2023-09-25T16:09:52.643Z" +tags: ["Jump"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "8,191.00" +Total HD Capacity (GB): "170" +Owner: "" +Populated by Mike: "NA" +IP: "10.95.128.202" +--- + +# messtec102 + +## Account(s) + +- [ ] [ecphares](../account/ecphares.md) + +## Comment 2023-07-17 + +JumpHost-\*\*\* To be removed diff --git a/server/messv01ec.md b/server/messv01ec.md new file mode 100644 index 0000000..4f96e0d --- /dev/null +++ b/server/messv01ec.md @@ -0,0 +1,24 @@ +--- +type: "server" +description: "MES SQL Prod - Virtual" +created: "2023-09-25T16:09:52.644Z" +updated: "2023-09-25T16:09:52.645Z" +tags: ["Prod"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "470" +Owner: "Surge" +Populated by Mike: "Surge" +IP: "10.95.128.28" +--- + +# messv01ec + +## Account(s) + +- [ ] [localsystem](../account/localsystem.md) + +## Comment 2023-07-17 + +ScrapData SQL Server - Prod diff --git a/server/messv02ech1.md b/server/messv02ech1.md new file mode 100644 index 0000000..8d9753e --- /dev/null +++ b/server/messv02ech1.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "EC File server cluster - H1" +created: "2023-07-14T17:15:28.068Z" +updated: "2023-07-25T16:51:41.196Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "39" +Owner: "" +Populated by Mike: "NA" +IP: "" +--- + +# messv02ech1 + +## Comment 2023-07-17 + +To be removed diff --git a/server/messv02ech2.md b/server/messv02ech2.md new file mode 100644 index 0000000..24be11e --- /dev/null +++ b/server/messv02ech2.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "EC File server cluster - H2" +created: "2023-07-14T17:15:28.088Z" +updated: "2023-07-25T16:51:41.926Z" +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "11108" +Owner: "Kurt" +Populated by Mike: "Kurt" +IP: "" +--- + +# messv02ech2 + +## Comment 2023-07-17 + +Single Windows File Server diff --git a/server/messv03ech1.md b/server/messv03ech1.md new file mode 100644 index 0000000..515a6e2 --- /dev/null +++ b/server/messv03ech1.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.647Z" +updated: "2023-09-25T16:09:52.647Z" +Server Type: "" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "" +--- + +# messv03ech1 + +- [ ] [[ecusmessv03ech1stl]] + +## Comment 2023-07-17 diff --git a/server/messv03ech2.md b/server/messv03ech2.md new file mode 100644 index 0000000..8b22789 --- /dev/null +++ b/server/messv03ech2.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.649Z" +updated: "2023-09-25T16:09:52.650Z" +Server Type: "" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "" +--- + +# messv03ech2 + +- [ ] [[ecusmessv03ech2stl]] + +## Comment 2023-07-17 diff --git a/server/mestsa003.md b/server/mestsa003.md new file mode 100644 index 0000000..793ae01 --- /dev/null +++ b/server/mestsa003.md @@ -0,0 +1,36 @@ +--- +type: "server" +description: "Both-***" +created: "2023-11-29T18:39:45.089Z" +updated: "2023-11-29T18:39:45.089Z" +Server Type: "mestsa003" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.46" +--- + +# mestsa003 + +## Account(s) + +- [ ] [meseafsvc](../account/meseafsvc.md) + +## DNS(s) + +- [ ] [eaf-dev](../dns/eaf-dev.md) + +## Sub-tasks + +- [x] Install VSCode +- [ ] Copied nuget config +- [ ] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [ ] MusNotificationUx - ERROR: The system cannot find the file specified. +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [x] Windows updates Mon May 20 2024 09:13:01 GMT-0700 (Mountain Standard Time) diff --git a/server/mestsa004.md b/server/mestsa004.md new file mode 100644 index 0000000..4f4e4c8 --- /dev/null +++ b/server/mestsa004.md @@ -0,0 +1,22 @@ +--- +type: "server" +description: "Deprecated" +created: "2023-09-25T16:09:52.655Z" +updated: "2023-09-25T16:09:52.655Z" +tags: ["Deprecated", "Dev", "EC"] +Server Type: "mestsa004" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.47" +--- + +# mestsa004 + +## Account(s) + +- [ ] [mesganeaf](../account/mesganeaf.md) + +## Comment 2023-07-17 diff --git a/server/mestsa005.md b/server/mestsa005.md new file mode 100644 index 0000000..dbf6b6f --- /dev/null +++ b/server/mestsa005.md @@ -0,0 +1,34 @@ +--- +type: "server" +description: "" +created: "2024-01-14T02:17:45.642Z" +updated: "2024-02-01T18:59:28.922Z" +tags: ["Dev"] +Server Type: "mestsa005" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.60" +--- + +# mestsa005 + +## Account(s) + +- [ ] [mesapcsvc](../account/mesapcsvc.md) + +## Sub-tasks + +- [x] Install VSCode +- [ ] Copied nuget config +- [ ] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] Windows updates Thu Feb 01 2024 11:59:27 GMT-0700 (Mountain Standard Time) +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [x] Windows updates Mon May 20 2024 09:12:40 GMT-0700 (Mountain Standard Time) diff --git a/server/mestsa006.md b/server/mestsa006.md new file mode 100644 index 0000000..c935f91 --- /dev/null +++ b/server/mestsa006.md @@ -0,0 +1,43 @@ +--- +type: "server" +description: "" +created: "2023-10-20T04:22:50.375Z" +updated: "2023-10-20T04:22:50.375Z" +tags: ["Dev"] +Server Type: "mestsa006" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.61" +--- + +# mestsa006 + +## Account(s) + +- [ ] [mesyodasvc](../account/mesyodasvc.md) + +## DNS(s) + +- [ ] [goto-dev](../dns/goto-dev.md) +- [ ] [yoda-dev](../dns/yoda-dev.md) + +## Incoming Port(s) + +- [ ] [rdv-http-8802](../incoming/rdv-http-8802.md) +- [ ] [tibco-7702](../incoming/tibco-7702.md) + +## Sub-tasks + +- [x] Install VSCode +- [ ] Copied nuget config +- [ ] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [x] Windows updates Mon May 20 2024 10:05:03 GMT-0700 (Mountain Standard Time) diff --git a/server/mestsa007.md b/server/mestsa007.md new file mode 100644 index 0000000..1ddcaec --- /dev/null +++ b/server/mestsa007.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "IIS" +created: "2024-01-14T02:17:45.211Z" +updated: "2024-03-29T00:09:22.432Z" +Server Type: "mestsa007" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.112" +--- + +# mestsa007 + +## Account(s) + +- [ ] [mesfisysadmin](../account/mesfisysadmin.md) + +## Comment 2023-07-17 diff --git a/server/mestsa008.md b/server/mestsa008.md new file mode 100644 index 0000000..a734276 --- /dev/null +++ b/server/mestsa008.md @@ -0,0 +1,25 @@ +--- +type: "server" +description: "IIS" +created: "2023-09-25T16:09:52.661Z" +updated: "2023-09-25T16:09:52.662Z" +Server Type: "mestsa008" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.176.125" +--- + +# mestsa008 + +## Account(s) + +- [ ] [mesfisysadmin](../account/mesfisysadmin.md) + +## Sub-tasks + +- [x] [artifactory-ifx](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped + diff --git a/server/mestsa01ec.md b/server/mestsa01ec.md new file mode 100644 index 0000000..ab1e544 --- /dev/null +++ b/server/mestsa01ec.md @@ -0,0 +1,25 @@ +--- +type: "server" +description: "OpenInisght Dev" +created: "2023-09-25T16:09:52.663Z" +updated: "2023-09-25T16:09:52.663Z" +tags: ["Dev"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "8" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "229" +Owner: "Jonathan" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.13" +--- + +# mestsa01ec + +## Account(s) + +- [ ] [ecfisysadmin](../account/ecfisysadmin.md) + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/mestsa02ec.md b/server/mestsa02ec.md new file mode 100644 index 0000000..b460d98 --- /dev/null +++ b/server/mestsa02ec.md @@ -0,0 +1,82 @@ +--- +type: "server" +description: "APC Trend Stage App server" +created: "2024-01-14T02:17:43.971Z" +updated: "2024-02-01T18:57:31.266Z" +tags: ["Stage", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "6,143.00" +Total HD Capacity (GB): "109" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.43" +--- + +# mestsa02ec + +## Account(s) + +- [x] [ecapcsvc](../account/ecapcsvc.md) + +## Process(es) + +- [ ] [APC FDC Extractor Service 0001](../process/apc_fdc-extractor-service-0001.md) +- [ ] [APC FDC Extractor Service 0002](../process/apc_fdc-extractor-service-0002.md) +- [ ] [APC FDC Extractor Service 0003](../process/apc_fdc-extractor-service-0003.md) +- [ ] [APC FDC Extractor Service 0004](../process/apc_fdc-extractor-service-0004.md) +- [ ] [APC FDC Extractor Service 0005](../process/apc_fdc-extractor-service-0005.md) +- [ ] [APC FDC MasterControlService](../process/apc_fdc-mastercontrolservice.md) +- [ ] [APC FDC ReceiverService FSW](../process/apc_fdc-receiverservice-fsw.md) +- [ ] [nginx-ecapcsvc](../process/nginx-ecapcsvc.md) +- [ ] [Azure Pipelines Agent MESTSA02EC ECAPCSVC](../process/azure-pipelines-agent-mestsa02ec-ecapcsvc.md) +- [ ] [IIS Mesa Reporting Services API](../process/iis-mesareportingservicesapi.md) +- [ ] [IIS Mesa Reporting Services](../process/iis-mesareportingservices.md) +- ~~nginx-ecapcsvc~~ +- ~~APC Viewer~~ +- ~~APC-Viewer-Release~~ + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] IP, accounts send to Jeremy L +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Green in Stealth +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Copied nuget config +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Install VSCode + +``` PowerShell +Expand-Archive -Force D:\ProgramData\mestsa02ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force D:\ProgramData\mestsa02ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] tnsnames.ora +- [x] SFC /scannow +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions +- [x] VSCode - Setting repo +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [ ] MusNotificationUx - ERROR: The system cannot find the file specified. +- [x] Windows updates Thu Feb 01 2024 11:56:32 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:25:20 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 09:44:19 GMT-0700 (Mountain Standard Time) diff --git a/server/mestsa03ec.md b/server/mestsa03ec.md new file mode 100644 index 0000000..b8854ee --- /dev/null +++ b/server/mestsa03ec.md @@ -0,0 +1,88 @@ +--- +type: "server" +description: "YODA Test App server" +created: "2023-10-20T04:22:50.375Z" +updated: "2023-11-03T18:43:04.239Z" +tags: ["Stage"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "259" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.44" +--- + +# mestsa03ec + +## Account(s) + +- [x] [ecyodasvc](../account/ecyodasvc.md) + +## DNS(s) + +- [ ] [yoda-staging](../dns/yoda-staging.md) + +## Process(es) + +- [ ] [IFX Security 5.1.0 7703](../process/ifx-security.md) +- [ ] [IFX Api 5.1.0 7703](../process/ifx-api.md) + +## Incoming Port(s) + +- [ ] [rdv-http-8804](../incoming/rdv-http-8804.md) +- [ ] [tibco-7704](../incoming/tibco-7704.md) + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Copied nuget config +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Install VSCode +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] tnsnames.ora +- [x] Clean old logs +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force D:\ProgramData\mestsa03ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force D:\ProgramData\mestsa03ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group + +```bash +D: +cd D:/Tibco/tibrv/8.4/bin +tibrvlisten -service 7704 -network ;239.255.77.04 -daemon tibrvd.mes.infineon.com:8804 MES_S.GETJOBS +tibrvsend -service 7704 -network ;239.255.77.04 -daemon tibrvd.mes.infineon.com:8804 MES_S.GETJOBS +tibrvlisten -service 7704 -network ;239.255.77.04 -daemon tibrvd.mes.infineon.com:8804 MES_S.GETJOBS +``` + +- [x] Windows updates Tue Feb 20 2024 10:01:11 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Wed Apr 24 2024 12:53:58 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Mon May 20 2024 11:12:59 GMT-0700 (Mountain Standard Time) diff --git a/server/mestsa04ec.md b/server/mestsa04ec.md new file mode 100644 index 0000000..f87bdbb --- /dev/null +++ b/server/mestsa04ec.md @@ -0,0 +1,18 @@ +--- +type: "server" +description: "EC Tableau Dev" +created: "2023-07-14T17:15:28.109Z" +updated: "2023-07-25T16:51:46.151Z" +tags: ["Dev", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,382.00" +Total HD Capacity (GB): "400" +Owner: "" +Populated by Mike: "Jonathan Ouellette" +IP: "" +--- + +# mestsa04ec + +## Comment 2023-07-17 diff --git a/server/mestsa05ec.md b/server/mestsa05ec.md new file mode 100644 index 0000000..9530a8d --- /dev/null +++ b/server/mestsa05ec.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "EC Fab Approval Dev" +created: "2023-07-14T17:15:28.110Z" +updated: "2023-07-25T16:51:47.121Z" +tags: ["Dev", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "16,382.00" +Total HD Capacity (GB): "180" +Owner: "" +Populated by Mike: "Jonathan Ouellette" +IP: "" +--- + +# mestsa05ec + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/mestsa06ec.md b/server/mestsa06ec.md new file mode 100644 index 0000000..d5c687b --- /dev/null +++ b/server/mestsa06ec.md @@ -0,0 +1,63 @@ +--- +type: "server" +description: "GaN-IQS" +created: "2024-01-14T02:17:43.973Z" +updated: "2024-04-10T16:33:39.194Z" +Server Type: "mestsa06ec" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "10.95.140.57" +--- + +# mestsa06ec + +## Account(s) + +- [x] [ecfisysadmin](../account/ecfisysadmin.md) + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] IP, accounts send to Jeremy L +- [x] Green in Stealth +- [x] ~~Add service account to Administrators~~ +- [x] ~~Change logon user for services~~ +- [x] Install VSCode +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force D:\ProgramData\mestsa06ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force D:\ProgramData\mestsa06ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group +- [x] Windows updates Thu Feb 01 2024 11:58:35 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Tue Feb 20 2024 07:35:20 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Wed Apr 10 2024 09:33:35 GMT-0700 (Mountain Standard Time) +- [x] [artifactory-extra](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped +- [x] Windows updates Mon May 20 2024 09:11:20 GMT-0700 (Mountain Standard Time) diff --git a/server/mestsa07ec.md b/server/mestsa07ec.md new file mode 100644 index 0000000..b8a28f1 --- /dev/null +++ b/server/mestsa07ec.md @@ -0,0 +1,184 @@ +--- +type: "server" +description: "EAF App Test Server" +created: "2023-11-17T16:10:01.734Z" +updated: "2023-11-17T16:10:01.734Z" +tags: ["Stage"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "4" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "124" +Owner: "" +Populated by Mike: "Mike Phares" +IP: "10.95.140.34" +--- + +# mestsa07ec + +## Account(s) + +- [x] [ecedasvc](../account/ecedasvc.md) +- [x] [ecmeseaf](../account/ecmeseaf.md) + +## DNS(s) + +- [ ] [eaf-staging](../dns/eaf-staging.md) + +## Process(es) + +- [ ] [DataFramework Unit Service](../process/dataframework-unit-service.md) + - [ ] Config +- [ ] [EAF Management Server](../process/eaf-management-server.md) + - [ ] Config + - [ ] In Mango Environment Settings for tibco and fileshare + - [ ] In Mango Logging Configuration (fileshare) +- [ ] [EAF Runtime Agent](../process/eaf-runtime-agent.md) + - [ ] Config +- [ ] [EAF Viewer 5010](../process/eaf-viewer-5010.md) + - [ ] Config +- [ ] [EAF Viewer nginx](../process/eaf-viewer-nginx.md) + - [ ] Config +- [ ] [EDA Viewer 5003](../process/eda-viewer-5003.md) + - [ ] Config + +## Sub-tasks + +- [x] Ask Travis to remove MES from stl account +- [x] Clear Connection Security Rules +- [x] Open file explore to: This PC +- [x] Copy EC accounts to D Drive +- [x] Delete EC Profiles +- [x] Uncheck `Show desktop items` +- [x] Set Taskbar order +- [x] Clear Windows Logs +- [x] Install NRZ_SERVER_WIN_IWA_5.2.072.10_Package_v004.exe +- [x] Add ECUSMES%Stl to Administrators +- [x] Change `Unisys Stealth Logon` service logon to ECUSMES%Stl +- [x] Restart only `Unisys Stealth Protocol` service +- [x] Add service account to Administrators +- [x] Change logon user for services +- [x] IP, accounts send to Jeremy L +- [x] Windows Updates +- [x] Delete .dotnet, .nuget and .vscode from D Tmp EC Users +- [x] Green in Stealth +- [x] Install VSCode +- [x] tnsnames.ora +- [x] C: & D: Replace all child object permission entries with inheritable permission entries from this object +- [x] Add MESPhares as full control over D:\Tmp\phares and app specific directories +- [x] Add service account to app specific directories +- [x] Copied nuget config +- [x] tnsnames.ora - Physical server via File-Folder-Helper.exe s O C:/programs -t C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora - Wed Sep 06 2023 +- [x] Oracle - connected to eda staging edastag +- [x] Oracle - connected to eaf staging eafstag +- [x] Extra VSCode Extensions + +``` PowerShell +Expand-Archive -Force \\mesfs.infineon.com\messa09ec\vscode-1.80.1-74f6148eb9ea00507ec113ec51c489d6ffb4b771-extensions.zip C:\Users\MESPhares\.vscode +Expand-Archive -Force \\mesfs.infineon.com\messa09ec\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders +``` + +- [x] VSCode - Setting repo +- [x] MusNotificationUx +- [x] FTYPE and ASSOC +- [x] RDG - MesPhares Group + +- [ ] Set MaxAutoRestartRetryCount back to 3 or maybe 10 + +```config +\\messv02ecc1.ec.local\EC_Characterization_Si\RawData +D:\ProgramData\EC_Characterization_Si\RawData +``` + +```bash +\\mesfs.infineon.com\EC_Characterization_Si\RawData +D:\ProgramData\EC_Characterization_Si\RawData +``` + +```bash +\\mesfs.infineon.com\EC_Characterization_Si\RawData +\\eaf-prod.mes.infineon.com\EC_Characterization_Si\RawData +``` + +- [x] Windows updates Tue Feb 20 2024 10:49:50 GMT-0700 (Mountain Standard Time) +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [x] Windows updates Thu May 02 2024 08:40:32 GMT-0700 (Mountain Standard Time) +- [x] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped + +```bash +# +10.95.1.180 r74 # tcp://r74:102 +10.95.1.183 r72 # tcp://r72:102 +10.95.1.191 r70 # tcp://r70:102 +10.95.1.192 r73 # tcp://r73:102 +10.95.1.195 r47 # tcp://r47:102 +10.95.154.9 unity4 # http://unity4:9400/receiver +10.95.154.10 biorad4 # \\biorad4 +10.95.154.11 biorad5 # \\biorad5 +10.95.154.12 sp1 # \\sp1\testdata +10.95.154.13 a +10.95.154.14 cde6 # http:/cde6 +10.95.154.15 b +10.95.154.16 c +10.95.154.17 hgcv2 # http://hgcv2 +10.95.154.18 unity5 # http://unity5:9400/receiver +10.95.154.19 spare2 # http://spare2 +10.95.154.19 wc6inch3 # http://wc6inch3 +10.95.154.20 spv # tcp://srp:5004 +10.95.154.21 e +10.95.154.22 f +10.95.154.23 g +10.95.154.24 h +10.95.154.25 i +10.95.154.26 j +10.95.154.27 cde4 # http://cde4 +10.95.154.28 r34 # http://r34 +10.95.154.29 cde5 # http://cde5 +10.95.154.30 srp # http://srp:5054 +10.95.154.31 r53 # http://r53:554/ +10.95.154.32 r54 # http://r54:554/ +10.95.154.33 k +10.95.154.34 l +10.95.154.35 m +10.95.154.36 tencor1 # http://tencor1 +10.95.154.37 tencor2 # http://tencor2 +10.95.154.38 tencor3 # http://tencor3 +10.95.154.39 hgcv1 # http://hgcv1 +10.95.154.40 hgcv3 # http://hgcv3 +10.95.154.41 biorad2 # http://biorad2 +10.95.154.42 biorad3 # http://biorad3 +10.95.154.43 cde2 # http://cde2 +10.95.154.43 wc6inch1 # http://wc6inch1 +10.95.154.44 spare1 # http://spare1 +10.95.154.44 wc6inch2 # http://wc6inch2 +10.95.154.45 n +10.95.154.46 spare3 # http://spare3 +10.95.154.46 wc6inch4 # http://wc6inch4 +10.95.154.47 spare4 # http://spare4 +10.95.154.47 wc8inch1 # http://wc8inch1 +10.95.154.48 spare5 # http://spare5 +10.95.154.48 wc8inch2 # http://wc8inch2 +10.95.154.49 spare6 # http://spare6 +10.95.154.49 wc8inch3 # http://wc8inch3 +``` + +### Restart order + +- [ ] MET08DDUPSP1TBI +- [ ] BIORAD2 +- [ ] BIORAD3 +- [ ] BIORAD4 +- [ ] TENCOR1 +- [ ] TENCOR2 +- [ ] TENCOR3 +- [ ] CDE5 +- [ ] HGCV3 +- [ ] CDE4 +- [ ] CDE6 +- [ ] HGCV1 +- [ ] HGCV2 +- [ ] SPV +- [ ] SRP +- [ ] SRP + +- [x] Windows updates Mon May 20 2024 11:15:31 GMT-0700 (Mountain Standard Time) +- [x] Windows updates Thu May 23 2024 15:45:47 GMT-0700 (Mountain Standard Time) \ No newline at end of file diff --git a/server/mestsa08ec.md b/server/mestsa08ec.md new file mode 100644 index 0000000..56f123c --- /dev/null +++ b/server/mestsa08ec.md @@ -0,0 +1,21 @@ +--- +type: "server" +description: "New OpenInsight Dev DB" +created: "2023-07-14T16:49:17.971Z" +updated: "2023-07-25T16:51:50.014Z" +tags: ["Dev", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "8" +Total Physical Memory (MB): "16,382.00" +Total HD Capacity (GB): "255" +Owner: "Jonathan" +Populated by Mike: "Jonathan Ouellette" +IP: "10.95.128.59" +--- + +# mestsa08ec + +## Sub-tasks + +- [x] [artifactory](https://artifactory.intra.infineon.com) +- [ ] dotnet from messa022ec.infineon.com after Unisys Stealth Protocol has been stopped diff --git a/server/mestsv01ec.md b/server/mestsv01ec.md new file mode 100644 index 0000000..eee8c10 --- /dev/null +++ b/server/mestsv01ec.md @@ -0,0 +1,20 @@ +--- +type: "server" +description: "MES SQL Dev" +created: "2023-07-14T17:15:28.113Z" +updated: "2023-07-25T16:51:50.502Z" +tags: ["Dev", "EC"] +Server Type: "Windows Server (virtual)" +Number of CPU Cores: "1" +Total Physical Memory (MB): "16,383.00" +Total HD Capacity (GB): "169" +Owner: "Surge" +Populated by Mike: "Surge" +IP: "" +--- + +# mestsv01ec + +## Comment 2023-07-17 + +SQL Server - Dev diff --git a/server/mestsv02ec.md b/server/mestsv02ec.md new file mode 100644 index 0000000..7a13106 --- /dev/null +++ b/server/mestsv02ec.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "" +created: "2023-09-25T16:09:52.674Z" +updated: "2023-09-25T16:09:52.675Z" +Server Type: "" +Number of CPU Cores: "" +Total Physical Memory (MB): "" +Total HD Capacity (GB): "" +Owner: "" +Populated by Mike: "" +IP: "" +--- + +# mestsv02ec + +- [ ] [[ecusmestsv02ecstl]] + +## Comment 2023-07-17 diff --git a/server/mesxs015.md b/server/mesxs015.md new file mode 100644 index 0000000..7b2172b --- /dev/null +++ b/server/mesxs015.md @@ -0,0 +1,9 @@ +--- +type: "server" +description: "Yoda Dev server" +tags: ["Dev"] +created: "2023-08-05T00:38:00.747Z" +updated: "2023-08-05T00:38:25.551Z" +--- + +# mesxs015 diff --git a/server/mesxsec011.md b/server/mesxsec011.md new file mode 100644 index 0000000..bccbba4 --- /dev/null +++ b/server/mesxsec011.md @@ -0,0 +1,20 @@ +--- +type: "server" +description: "Server for APC production oracle" +created: "2023-07-14T17:15:28.114Z" +updated: "2023-07-25T16:51:51.396Z" +tags: ["Prod"] +Server Type: "Linux Server (physical)" +Number of CPU Cores: "16" +Total Physical Memory (MB): "515,692.00" +Total HD Capacity (GB): "" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# mesxsec011 + +## Comment 2023-07-17 + +Oracle Cluster Node 1 diff --git a/server/mesxsec012.md b/server/mesxsec012.md new file mode 100644 index 0000000..182eba7 --- /dev/null +++ b/server/mesxsec012.md @@ -0,0 +1,20 @@ +--- +type: "server" +description: "Server for APC production oracle" +created: "2023-07-14T17:15:28.115Z" +updated: "2023-07-25T16:51:51.698Z" +tags: ["Prod"] +Server Type: "Linux Server (physical)" +Number of CPU Cores: "10" +Total Physical Memory (MB): "257,663.00" +Total HD Capacity (GB): "" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# mesxsec012 + +## Comment 2023-07-17 + +Oracle Cluster Node 2 diff --git a/server/mesxsec013.md b/server/mesxsec013.md new file mode 100644 index 0000000..75500d2 --- /dev/null +++ b/server/mesxsec013.md @@ -0,0 +1,20 @@ +--- +type: "server" +description: "Yoda Production server" +created: "2023-07-14T17:15:28.116Z" +updated: "2023-07-25T16:51:51.958Z" +tags: ["Prod"] +Server Type: "Linux Server (physical)" +Number of CPU Cores: "20" +Total Physical Memory (MB): "63,934.00" +Total HD Capacity (GB): "" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# mesxsec013 + +## tibco@mesxsec013.mes.infineon.com + +### Yoda Application Cluster Node 2 diff --git a/server/mesxsec014.md b/server/mesxsec014.md new file mode 100644 index 0000000..dcdda3e --- /dev/null +++ b/server/mesxsec014.md @@ -0,0 +1,20 @@ +--- +type: "server" +description: "Yoda Production server" +created: "2023-07-14T17:15:28.117Z" +updated: "2023-07-25T16:51:52.306Z" +tags: ["Prod"] +Server Type: "Linux Server (physical)" +Number of CPU Cores: "20" +Total Physical Memory (MB): "63,934.00" +Total HD Capacity (GB): "" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# mesxsec014 + +## tibco@mesxsec014.mes.infineon.com + +### Yoda Application Cluster Node 1 diff --git a/server/mesxvec031.md b/server/mesxvec031.md new file mode 100644 index 0000000..97c1e3f --- /dev/null +++ b/server/mesxvec031.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "HPE SG Quorum EC" +created: "2023-07-14T17:15:28.124Z" +updated: "2023-07-25T16:51:52.549Z" +Server Type: "Linux Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "7,803.00" +Total HD Capacity (GB): "" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# mesxvec031 + +## Comment 2023-07-17 + +Cluster Quorum Server diff --git a/server/mesxvec034.md b/server/mesxvec034.md new file mode 100644 index 0000000..cefbe0d --- /dev/null +++ b/server/mesxvec034.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "Server for fistag" +created: "2023-07-14T17:15:28.129Z" +updated: "2023-07-25T16:51:53.109Z" +Server Type: "Linux Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "40,057.00" +Total HD Capacity (GB): "" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# mesxvec034 + +## Comment 2023-07-17 + +Standalone Oracle DB - FI Staging diff --git a/server/mesxvec035.md b/server/mesxvec035.md new file mode 100644 index 0000000..7ceaa60 --- /dev/null +++ b/server/mesxvec035.md @@ -0,0 +1,19 @@ +--- +type: "server" +description: "Server for apcmess" +created: "2023-07-14T17:15:28.130Z" +updated: "2023-07-25T16:51:53.652Z" +Server Type: "Linux Server (virtual)" +Number of CPU Cores: "2" +Total Physical Memory (MB): "40,057.00" +Total HD Capacity (GB): "" +Owner: "Peter" +Populated by Mike: "Peter" +IP: "" +--- + +# mesxvec035 + +## Comment 2023-07-17 + +Standalone Oracle DB - APC Staging