<?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>article Networking traffic handling in Qlik Sense Client Managed environments in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Networking-traffic-handling-in-Qlik-Sense-Client-Managed/ta-p/1848683</link>
    <description>&lt;H4&gt;Environment&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Qlik Sense Enterprise on Windows - all versions&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;When multiple Network Adapters are present and&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21946:0"&gt;configured on the same subnet&lt;/STRONG&gt;&lt;SPAN&gt;, the OS will use the adapter with the lowest IP address first in sending traffic. This can cause Qlik Sense (and any other installed software that uses the network) to communicate over the wrong network adapter by default.&amp;nbsp;&lt;/SPAN&gt;&lt;BR data-aura-rendered-by="21946:0" /&gt;&lt;BR data-aura-rendered-by="21946:0" /&gt;&lt;SPAN&gt;If this is not the desired traffic path, a change must be applied&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21946:0"&gt;at the Operating System level&lt;/STRONG&gt;&lt;SPAN&gt;, which will affect&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21946:0"&gt;all traffic flowing&amp;nbsp;&lt;I&gt;from&lt;/I&gt;&amp;nbsp;that machine&lt;/STRONG&gt;&lt;SPAN&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P data-aura-rendered-by="21975:0"&gt;Assuming a Qlik Sense Enterprise server&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;with two network adapters&lt;/STRONG&gt;, and traffic flows&amp;nbsp;&lt;STRONG&gt;incorrectly&lt;/STRONG&gt;&amp;nbsp;through NIC 1 instead of NIC 2.&amp;nbsp;&lt;/P&gt;
&lt;UL data-aura-rendered-by="21975:0"&gt;
&lt;LI&gt;NIC 1: 10.0.0.10 -&amp;gt; Management traffic&lt;/LI&gt;
&lt;LI&gt;NIC 2: 10.0.0.11 -&amp;gt; Traffic to / from Qlik Sense&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;Use PowerShell cmdlet&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.microsoft.com/en-us/powershell/module/nettcpip/set-netipaddress?view=windowsserver2019-ps" target="_blank" rel="noopener" data-aura-rendered-by="21975:0"&gt;Set-NetIPAddress (NetTCPIP) | Microsoft Docs&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;to configure&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21975:0"&gt;SkipAsSource&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;flag as follows:&lt;/SPAN&gt;&lt;BR data-aura-rendered-by="21975:0" /&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock" data-aura-rendered-by="21975:0"&gt;Set-NetIPAddress -IPAddress 10.0.0.10 -SkipAsSource:&lt;STRONG&gt;$true&lt;/STRONG&gt;
Set-NetIPAddress -IPAddress 10.0.0.11 -SkipAsSource:$false&lt;/PRE&gt;
&lt;P&gt;&lt;BR data-aura-rendered-by="21975:0" /&gt;&lt;SPAN&gt;The command above will&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21975:0"&gt;force&amp;nbsp;outgoing&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;communications&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21975:0"&gt;from this host&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;to flow through&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21975:0"&gt;NIC 2&lt;/STRONG&gt;&lt;SPAN&gt;, while&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21975:0"&gt;incoming traffic&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;can still reach the server&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21975:0"&gt;via both NICs&lt;/STRONG&gt;&lt;SPAN&gt;. But&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-aura-rendered-by="21975:0"&gt;outgoing traffic will always flow through NIC 2&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;Background:&lt;/H4&gt;
&lt;P&gt;&lt;SPAN&gt;Qlik Sense Client Managed (Qlik Sense Enterprise&amp;nbsp;&lt;STRONG data-aura-rendered-by="22004:0"&gt;for Windows&lt;/STRONG&gt;) delegates network communications to the Operating System. If the host where Qlik Sense is installed is not correctly configured, traffic may flow throw the incorrect network adapter.&amp;nbsp;&lt;BR data-aura-rendered-by="22004:0" /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Windows-based Operating Systems use the following convention:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="lia-indent-padding-left-30px" data-aura-rendered-by="22004:0"&gt;&lt;I&gt;When more than one Network Adapter is present&amp;nbsp;&lt;STRONG&gt;and&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;all IPs are on the same subnet&amp;nbsp;&lt;STRONG&gt;and&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;both adapters share the same gateway,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;traffic will flow through&lt;/STRONG&gt; the adapter with&lt;STRONG&gt; the lowest IP address &lt;/STRONG&gt;first.&amp;nbsp;&lt;/I&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR data-aura-rendered-by="22004:0" /&gt;Typically,&amp;nbsp;&lt;STRONG data-aura-rendered-by="22004:0"&gt;a secondary adapter is used for backbone or administration&lt;/STRONG&gt;&amp;nbsp;and is usually&amp;nbsp;&lt;STRONG data-aura-rendered-by="22004:0"&gt;assigned to a different subnet&amp;nbsp;/ VLAN&lt;/STRONG&gt;. This would negate the issue, as traffic will only be able to flow through the adapter that can correctly resolve the route to destination. User traffic would naturally not be able to flow through the Administration network adapter. This also applies to virtual addresses for&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming-settings" target="_blank" rel="noopener" data-aura-rendered-by="22004:0"&gt;NIC Teaming&lt;/A&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3 id="toc-hId--553050612" data-aura-rendered-by="22004:0"&gt;Related content:&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.qlik.com/t5/Knowledge/Changing-the-IP-address-of-the-Qlik-Sense-host/ta-p/1715763" target="_blank" rel="noopener" data-aura-rendered-by="22004:0"&gt;Changing the IP address of the Qlik Sense host - Qlik Community - 1715763&lt;/A&gt;&lt;BR data-aura-rendered-by="22004:0" /&gt;&lt;A href="https://docs.microsoft.com/en-us/powershell/module/nettcpip/set-netipaddress?view=windowsserver2019-ps" target="_blank" rel="noopener" data-aura-rendered-by="22004:0"&gt;Set-NetIPAddress (NetTCPIP) | Microsoft Docs&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-style: italic;"&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/P&gt;
&lt;P style="font-style: italic;"&gt;&lt;STRONG&gt;NOTE:&lt;/STRONG&gt; Error "&lt;SPAN&gt;&amp;nbsp;too many sessions active in parallel on Qlik Sense hub" can be presented if access is pointing to the wrong Nic interface.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Mar 2022 11:09:10 GMT</pubDate>
    <dc:creator>Mario_Petre</dc:creator>
    <dc:date>2022-03-30T11:09:10Z</dc:date>
    <item>
      <title>Networking traffic handling in Qlik Sense Client Managed environments</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Networking-traffic-handling-in-Qlik-Sense-Client-Managed/ta-p/1848683</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;Qlik Sense Enterprise on Windows&lt;/EM&gt; delegates communications to the Operating System. Specific routes must be configured at OS and network level for traffic to flow through the correct Network Adapter.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 11:09:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Networking-traffic-handling-in-Qlik-Sense-Client-Managed/ta-p/1848683</guid>
      <dc:creator>Mario_Petre</dc:creator>
      <dc:date>2022-03-30T11:09:10Z</dc:date>
    </item>
  </channel>
</rss>

