<?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 Fast DNS Resolution Issues in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/fast-dns-resolution-issues/m-p/487979#M104769</link>
    <description>&lt;P&gt;Hello Community,&lt;/P&gt;
&lt;P&gt;I checking to see what everyone is doing for their allow lists for some thing like an S3 bucket.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Scenario: Lets say my server has no internet access due to policies denying the traffic. I then create an object, FQDN,&amp;nbsp; xyz-s3.amazon[.]com (just as an example), add it to a policy that allows my server to access just that s3 bucket.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Problem:&amp;nbsp;Most of the CDN (Content Delivery Network) providers use FAST DNS switching, which in some cases causes DNS caching issues. This happens because of quick changing FQDNs at the CDN side.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Solutions?&lt;/P&gt;
&lt;P&gt;Set the minimum FQDN Refresh timer(sec) to&amp;nbsp; 0 (Zero)&amp;nbsp;&lt;A href="https://docs.paloaltonetworks.com/pan-os/9-0/pan-os-new-features/networking-features/fqdn-refresh-response" target="_blank"&gt;https://docs.paloaltonetworks.com/pan-os/9-0/pan-os-new-features/networking-features/fqdn-refresh-response&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone doing this and have you seen any issues? Are you doing something else that is working? I know about custom URL's and plan on doing this as well, however there are many instances where the URL filter will not be hit, ie not a HTTP request.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for your input.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;</description>
    <pubDate>Tue, 17 May 2022 21:31:33 GMT</pubDate>
    <dc:creator>OtakarKlier</dc:creator>
    <dc:date>2022-05-17T21:31:33Z</dc:date>
    <item>
      <title>Fast DNS Resolution Issues</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/fast-dns-resolution-issues/m-p/487979#M104769</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;
&lt;P&gt;I checking to see what everyone is doing for their allow lists for some thing like an S3 bucket.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Scenario: Lets say my server has no internet access due to policies denying the traffic. I then create an object, FQDN,&amp;nbsp; xyz-s3.amazon[.]com (just as an example), add it to a policy that allows my server to access just that s3 bucket.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Problem:&amp;nbsp;Most of the CDN (Content Delivery Network) providers use FAST DNS switching, which in some cases causes DNS caching issues. This happens because of quick changing FQDNs at the CDN side.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Solutions?&lt;/P&gt;
&lt;P&gt;Set the minimum FQDN Refresh timer(sec) to&amp;nbsp; 0 (Zero)&amp;nbsp;&lt;A href="https://docs.paloaltonetworks.com/pan-os/9-0/pan-os-new-features/networking-features/fqdn-refresh-response" target="_blank"&gt;https://docs.paloaltonetworks.com/pan-os/9-0/pan-os-new-features/networking-features/fqdn-refresh-response&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone doing this and have you seen any issues? Are you doing something else that is working? I know about custom URL's and plan on doing this as well, however there are many instances where the URL filter will not be hit, ie not a HTTP request.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for your input.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 21:31:33 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/fast-dns-resolution-issues/m-p/487979#M104769</guid>
      <dc:creator>OtakarKlier</dc:creator>
      <dc:date>2022-05-17T21:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Fast DNS Resolution Issues</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/fast-dns-resolution-issues/m-p/488320#M104803</link>
      <description>&lt;P&gt;I have had the same problem, with fast-flux DNS, and I haven't come up with a good solution. The 0 refresh timer hasn't seemed to be a fix. The problem is 2-fold; one that the DNS TTL is very short, the second that the returned records are a constantly changing subset among a larger group. So you can never be sure that the PA got the same DNS response as the client (particularly if you have multiple DNS servers) and even if the PA and client do get the same DNS right now, 30sec from now the PA will refresh and get a new IP, while the client will still be connected on the old IP (no longer matching the FQDN).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have several case where data providers are using data stores on Amazon/Salesforce clusters with fast-flux DNS. A Java app then connects to the data store to pull data... but that breaks on SSL decryption, because the app uses an internal CA certificate store instead of the PC's store, and I can't correctly exempt it from decryption do to the DNS issues. Where I can I have used URL filters instead of address objects, and that seems to work well. Where the traffic isn't HTTP I have had to write a bash script to repeatedly query/build a list of every IP on the fast-flux cluster and then add that as an address group to bypass. Less than idea and every few weeks to months it breaks and has to be redone.&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 19:44:06 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/fast-dns-resolution-issues/m-p/488320#M104803</guid>
      <dc:creator>Adrian_Jensen</dc:creator>
      <dc:date>2022-05-18T19:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fast DNS Resolution Issues</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/fast-dns-resolution-issues/m-p/488365#M104806</link>
      <description>&lt;P&gt;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/27580"&gt;@OtakarKlier&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I haven't found a great way of dealing with these sort of situations. If you use FQDN you'll occasionally have things get out of sync between the firewall and the client (which may not matter depending on requirements), and URL Categories as you mentioned will only work with a HTTP request.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been using EDLs as a solution for this and using an external script to feed addresses for the EDL with the firewall. The firewall only supports updating the EDLs every fine minutes, but you can speed that up by dropping it to manual and using the API to request the refresh of the EDL on a more frequent basis. Not really solving the issue, but it gets&amp;nbsp;&lt;EM&gt;closer&amp;nbsp;&lt;/EM&gt;to working without as many issues.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 21:11:51 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/fast-dns-resolution-issues/m-p/488365#M104806</guid>
      <dc:creator>BPry</dc:creator>
      <dc:date>2022-05-18T21:11:51Z</dc:date>
    </item>
  </channel>
</rss>

