<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Asset and identity from multiple domains in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Asset-and-identity-from-multiple-domains/m-p/747827#M12543</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have a search head configured with assets and identity from current ad domain.&lt;/P&gt;&lt;P&gt;I have 5 more ad domains without trust and on different networks.&lt;/P&gt;&lt;P&gt;In each domain / network I have a HF sending data to indexers.&lt;/P&gt;&lt;P&gt;How can I set those domains to send&amp;nbsp;assets and identity information to my search head?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;LI-PRODUCT title="Splunk Enterprise Security" id="263"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jun 2025 15:47:16 GMT</pubDate>
    <dc:creator>Amire22</dc:creator>
    <dc:date>2025-06-11T15:47:16Z</dc:date>
    <item>
      <title>Asset and identity from multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Asset-and-identity-from-multiple-domains/m-p/747827#M12543</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have a search head configured with assets and identity from current ad domain.&lt;/P&gt;&lt;P&gt;I have 5 more ad domains without trust and on different networks.&lt;/P&gt;&lt;P&gt;In each domain / network I have a HF sending data to indexers.&lt;/P&gt;&lt;P&gt;How can I set those domains to send&amp;nbsp;assets and identity information to my search head?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;LI-PRODUCT title="Splunk Enterprise Security" id="263"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 15:47:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Asset-and-identity-from-multiple-domains/m-p/747827#M12543</guid>
      <dc:creator>Amire22</dc:creator>
      <dc:date>2025-06-11T15:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Asset and identity from multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Asset-and-identity-from-multiple-domains/m-p/747852#M12544</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/310535"&gt;@Amire22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you should be able to configure additional domains exactly the same way you did the first one; asset &amp;amp; identity data must ultimately reside in lookups (CSV or KV-store) on the ES search head, those files are not forwarded automatically by indexers/HFs.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Option A – query the directories directly from ES&lt;UL&gt;&lt;LI&gt;Install SA-ldapsearch (or the Splunk Add-on for Microsoft AD) on the ES search head.&lt;/LI&gt;&lt;LI&gt;Create one stanza per domain with its own server, bindDN and credentials.&lt;/LI&gt;&lt;LI&gt;Schedule one ldapsearch per domain that writes to a single lookup (e.g. identities.csv, assets.csv). ES will ingest those lookups when the “Identity – Lookup Gen” and “Asset – Lookup Gen” searches run.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Option B – collect on each HF and ship as events&lt;UL&gt;&lt;LI&gt;Install SA-ldapsearch on a HF in each domain.&lt;/LI&gt;&lt;LI&gt;Schedule a search or scripted input that outputs CSV-formatted events and forward them to a dedicated index, e.g. index=identity.&lt;/LI&gt;&lt;LI&gt;Use a search to pull the data into a lookup:&lt;BR /&gt;Essential SPL example&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;index=identity sourcetype=ldap_identities
| eval category="normal"
| lookup update=true identities.csv identity OUTPUTNEW *
| outputlookup identities.csv&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;ES does not care where the data comes from as long as the final lookups exist on the search head. Multiple domains, lack of trust, or separate networks are irrelevant; you only need LDAP connectivity from whichever Splunk instance is executing the LDAP query.&lt;/P&gt;&lt;P&gt;You should probably add a domain/prefix field to your A&amp;amp;I lookups to show which domain the entity originates.&lt;BR /&gt;If you end up with a large CSV lookup consider switching to KV-store lookup.&lt;/P&gt;&lt;P&gt;More info on apps/addons for bringing in assets/identities info can be found at&amp;nbsp;&lt;A href="https://help.splunk.com/en/splunk-enterprise-security-8/administer/8.0/asset-and-identity-management/extract-asset-and-identity-data-in-splunk-enterprise-security#id_23cc30fd_1876_4f43_97f4_3f37d7b6d98c__Extract_asset_and_identity_data_in_Splunk_Enterprise_Security" target="_blank" rel="noopener"&gt;https://help.splunk.com/en/splunk-enterprise-security-8/administer/8.0/asset-and-identity-management/extract-asset-and-identity-data-in-splunk-enterprise-security#id_23cc30fd_1876_4f43_97f4_3f37d7b6d98c__Extract_asset_and_identity_data_in_Splunk_Enterprise_Security&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 21:05:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Asset-and-identity-from-multiple-domains/m-p/747852#M12544</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-06-11T21:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Asset and identity from multiple domains</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Asset-and-identity-from-multiple-domains/m-p/747891#M12546</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;I will test option B.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jun 2025 16:05:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Asset-and-identity-from-multiple-domains/m-p/747891#M12546</guid>
      <dc:creator>Amire22</dc:creator>
      <dc:date>2025-06-12T16:05:36Z</dc:date>
    </item>
  </channel>
</rss>

