<?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 Re: On what basis does the Universal Forwarder determine the source IP address? in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581248#M11187</link>
    <description>&lt;P&gt;As I understand it, the outbound NIC is selected by the operating system.&lt;/P&gt;</description>
    <pubDate>Sun, 16 Jan 2022 14:30:41 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2022-01-16T14:30:41Z</dc:date>
    <item>
      <title>On what basis does the Universal Forwarder determine the source IP address?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581240#M11186</link>
      <description>&lt;P&gt;As shown in the picture below, one workstation has 4 IP addresses (4 NIC) and sends Windows Event log to Splunk Indexer.&lt;/P&gt;&lt;P&gt;When I search the log collected in the indexer, I could confirm that the source IP address of logs was decided randomly among 4 IP addresses.&lt;/P&gt;&lt;P&gt;I don't know the source IP address is decided by what criteria, so I ask this question.&lt;/P&gt;&lt;P&gt;My question:&lt;BR /&gt;1. Is the source IP address decided by what criteria?&lt;BR /&gt;2. Is there function to decide the source IP address in the Universal Forwarder?&lt;/P&gt;&lt;P&gt;For your information, my network is a standalone network without external connection such as Web.&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Network Diagram.JPG" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/17576i02F316FF04C0C7BA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Network Diagram.JPG" alt="Network Diagram.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jan 2022 10:47:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581240#M11186</guid>
      <dc:creator>kevinsteeee</dc:creator>
      <dc:date>2022-01-16T10:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: On what basis does the Universal Forwarder determine the source IP address?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581248#M11187</link>
      <description>&lt;P&gt;As I understand it, the outbound NIC is selected by the operating system.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jan 2022 14:30:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581248#M11187</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2022-01-16T14:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: On what basis does the Universal Forwarder determine the source IP address?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581256#M11189</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/58370"&gt;@kevinsteeee&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The host's routing table determines the default destination for non-local traffic.&lt;/P&gt;&lt;P&gt;Typically, a host with multiple interfaces would have a single default route associated with the highest priority interface. In this example, non-local traffic would traverse eth0 and have source address 192.168.100.100:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;$ route -n

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.100.1   0.0.0.0         UG    100    0        0 eth0
192.168.100.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0
192.168.101.0   0.0.0.0         255.255.255.0   U     101    0        0 eth1
192.168.102.0   0.0.0.0         255.255.255.0   U     102    0        0 eth2
192.168.103.0   0.0.0.0         255.255.255.0   U     103    0        0 eth3&lt;/LI-CODE&gt;&lt;P&gt;If you have multiple addresses associated with one interface, you should still have one default route:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;$ route -n

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.100.1   0.0.0.0         UG    100    0        0 eth0
192.168.100.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0
192.168.101.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0
192.168.102.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0
192.168.103.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0&lt;/LI-CODE&gt;&lt;P&gt;If, however, you have multiple default routes, they may be selected in a round-robin fashion, and your source address would vary between .100.100, .101.100, .102.100, and .103.100.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;$ route -n

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.100.1   0.0.0.0         UG    100    0        0 eth0
0.0.0.0         192.168.101.1   0.0.0.0         UG    100    0        0 eth0
0.0.0.0         192.168.102.1   0.0.0.0         UG    100    0        0 eth0
0.0.0.0         192.168.103.1   0.0.0.0         UG    100    0        0 eth0
192.168.100.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0
192.168.101.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0
192.168.102.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0
192.168.103.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0&lt;/LI-CODE&gt;&lt;P&gt;Routing table or policy management varies by operating environment.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jan 2022 16:54:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581256#M11189</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2022-01-16T16:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: On what basis does the Universal Forwarder determine the source IP address?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581258#M11190</link>
      <description>&lt;P&gt;I'm grateful for your detailed explanation. Thanks to your help,&amp;nbsp; I was able to understand it. Many thanks for your kind help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jan 2022 17:39:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581258#M11190</guid>
      <dc:creator>kevinsteeee</dc:creator>
      <dc:date>2022-01-16T17:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: On what basis does the Universal Forwarder determine the source IP address?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581271#M11193</link>
      <description>&lt;P&gt;It's also worth noting that there is no such thing as "source ip of logs" in a general sense.&lt;/P&gt;&lt;P&gt;Yes, you can in some cases get the ip of the connection and push it into a field (especially if you have some intermediate processing layer) but in general sense IP of a connection over which the data is pushed is one thing and data in the event itself is another thing. Especially in case of windows event logs which often do not include any form of ip information.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jan 2022 23:56:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581271#M11193</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2022-01-16T23:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: On what basis does the Universal Forwarder determine the source IP address?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581282#M11195</link>
      <description>&lt;P&gt;There is no other way. Splunk forwarder (and any other component) is typically run as a non-administrative user so has no way of performing low-level tasks like manipulating routing.&lt;/P&gt;&lt;P&gt;It just creates a socket and opens a connection to the destination server using OS library calls and the rest is up to the system.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 06:28:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/On-what-basis-does-the-Universal-Forwarder-determine-the-source/m-p/581282#M11195</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2022-01-17T06:28:25Z</dc:date>
    </item>
  </channel>
</rss>

