<?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>Technical Forum topics</title>
    <link>https://community.f5.com/t5/technical-forum/bd-p/TechnicalForum</link>
    <description>Technical Forum topics</description>
    <pubDate>Sun, 14 Jun 2026 16:54:07 GMT</pubDate>
    <dc:creator>TechnicalForum</dc:creator>
    <dc:date>2026-06-14T16:54:07Z</dc:date>
    <item>
      <title>Multiple two-way SSL client Profiles - possible?</title>
      <link>https://community.f5.com/t5/technical-forum/multiple-two-way-ssl-client-profiles-possible/m-p/346781#M289323</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;To simply describe my situation:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;multiple end-users with client SSL certs generated by different CAs (down to rootCAs, which are different)&lt;/LI&gt;&lt;LI&gt;one VIP to server them all and perform two-way SSL with "peer-cert-mode required" in the client-ssl profile.&lt;/LI&gt;&lt;LI&gt;the FQDN for the VIP is the same for all end-users, so the server-side certificate is the same for all of them&lt;/LI&gt;&lt;LI&gt;platform used: redundant BigIP LTM i4800 running v17&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;My initial reaction was to "bundle" all the different CAs into one file and use it as such under the client-ssl profile (it works)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But... I was thinking if I could create and attach to the VIP multiple client-ssl profiles for each of the CAs (each with its own defined ca-file), using the same server-side certificate (with at least one of these profiles to have the sni-default set to true), and also keeping the "peer-cert mode required" for each of these distinct client-ssl profiles. Would this even be possible, what would this break or what gotchas I should be aware of,?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang=""&gt;ltm profile client-ssl mTLS-profile1 {
    ca-file firstCA.crt
    cert serverSide.crt
    chain serverSide-chain.crt
    key serverSide.key
    peer-cert-mode require
    retain-certificate false
    sni-default true
}

ltm profile client-ssl mTLS-profile2 {
    ca-file secondCA.crt
    cert serverSide.crt
    chain serverSide-chain.crt
    key serverSide.key
    peer-cert-mode require
    retain-certificate false
    sni-default false
}

ltm profile client-ssl mTLS-profile3 {
    ca-file thirdCA.crt
    cert serverSide.crt
    chain serverSide-chain.crt
    key serverSide.key
    peer-cert-mode require
    retain-certificate false
    sni-default false
}

ltm virtual server-fqdn-vip {
...
    profiles {
        mTLS-profile1 {
            context clientside
        }
        mTLS-profile2 {
            context clientside
        }
        mTLS-profile3 {
            context clientside
        }
    }
...
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;Adrian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2026 09:45:20 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/multiple-two-way-ssl-client-profiles-possible/m-p/346781#M289323</guid>
      <dc:creator>Adrian_Turcu</dc:creator>
      <dc:date>2026-06-12T09:45:20Z</dc:date>
    </item>
    <item>
      <title>AS3 per-app JSON schema issue</title>
      <link>https://community.f5.com/t5/technical-forum/as3-per-app-json-schema-issue/m-p/346776#M289321</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'd like to validate per-app declaration against vendor specific `per-app-schema` json schema file in vscode editor. Therefore I added there '$schema' object with valid schema file url, but it seems, that `$schema` object is not valid for per-app declaration.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my simple example (f5as3-ltm_app-based.cfg.yaml.as3.json file):&lt;/P&gt;&lt;LI-CODE lang="json"&gt;{
    "$schema": "https://raw.githubusercontent.com/F5Networks/f5-appsvcs-extension/refs/heads/main/schema/3.56.0/per-app-schema.json",
    "schemaVersion": "3.54.0",
    "id": "urn:uuid:9ee77479-b1d9-5dfe-b0e6-bd1c65c10b8d",
    "controls": {
        "class": "Controls",
        "logLevel": "debug",
        "trace": true
    },
    "app_test": {
        "class": "Application",
        "mon-tcp_test": {
            "class": "Monitor",
            "monitorType": "tcp",
            "remark": "AS3&amp;gt;app_test"
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I validate this file against per-app-schema.json it fails with this message:&lt;/P&gt;&lt;LI-CODE lang="bash"&gt;$ jsonschema -i f5as3-ltm_app-based.cfg.yaml.as3.json per-app-schema.json

https://raw.githubusercontent.com/F5Networks/f5-appsvcs-extension/refs/heads/main/schema/3.56.0/per-app-schema.json: 'https://raw.githubusercontent.com/F5Networks/f5-appsvcs-extension/refs/heads/main/schema/3.56.0/per-app-schema.json' is not of type 'object'

$schema: '$schema' does not match '^[A-Za-z][0-9A-Za-z_.-]*$'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When '$schema' object is removed, validation using e.g. jsonschema is correct, but vscode can't validate edited file. I know, that I can map file to local schema file, but I'd like to use '$schema' object with url to vendor's schema file.&lt;/P&gt;&lt;P&gt;It works for 'tenant-based' declaration (in vscode, also validation using e.g. jsonchema is correct):&lt;/P&gt;&lt;LI-CODE lang="json"&gt;{
    "$schema": "https://raw.githubusercontent.com/F5Networks/f5-appsvcs-extension/refs/heads/main/schema/3.56.0/as3-schema.json",
    "class": "AS3",
    "action": "deploy",
    "persist": true,
    "declaration": {
        "class": "ADC",
        "schemaVersion": "3.56.0",
        "id": "urn:uuid:9ee77479-b1d9-5dfe-b0e6-bd1c65c10b8d",
        "updateMode": "selective",
        "tenant_test": {
            "class": "Tenant",
            "defaultRouteDomain": 0,
            "app_test": {
                "class": "Application",
                "mon-tcp_test": {
                    "class": "Monitor",
                    "monitorType": "tcp"
                }
            }
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I checked per-app-schema.json file and it seems, '$schema' object is not valid configuration object - why? :)&lt;/P&gt;&lt;P&gt;martin&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2026 22:20:31 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/as3-per-app-json-schema-issue/m-p/346776#M289321</guid>
      <dc:creator>mkyrc</dc:creator>
      <dc:date>2026-06-11T22:20:31Z</dc:date>
    </item>
    <item>
      <title>F5 https monitor receive string</title>
      <link>https://community.f5.com/t5/technical-forum/f5-https-monitor-receive-string/m-p/346774#M289319</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am testing an HTTPS monitor on BIG-IP 17.1.2.&lt;/P&gt;&lt;P&gt;The server endpoint returns:&lt;/P&gt;&lt;P&gt;HTTP/1.1 200 OK when the service is healthy&lt;/P&gt;&lt;P&gt;HTTP/1.1 503 Service Unavailable when the service is unhealthy&lt;/P&gt;&lt;P&gt;This behavior has been confirmed from the F5 using:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;curl&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the HTTPS monitor, I tried the following Receive Strings:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-HTTP/1.1 200&amp;nbsp;&lt;/P&gt;&lt;P&gt;-200 OK&lt;/P&gt;&lt;P&gt;- HTTP 200&lt;/P&gt;&lt;P&gt;but the monitor stays DOWN.&lt;/P&gt;&lt;P&gt;If I use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-ok||200&lt;/P&gt;&lt;P&gt;the monitor goes UP, however it also remains UP when the endpoint returns HTTP 503.&lt;/P&gt;&lt;P&gt;My question is:&lt;/P&gt;&lt;P&gt;How can I configure a standard HTTPS monitor so that it is UP only when the endpoint returns HTTP 200 and DOWN when it returns HTTP 503?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2026 17:30:17 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/f5-https-monitor-receive-string/m-p/346774#M289319</guid>
      <dc:creator>antesmol</dc:creator>
      <dc:date>2026-06-11T17:30:17Z</dc:date>
    </item>
    <item>
      <title>F5 LTM Virtual Server IP NAT Configuration</title>
      <link>https://community.f5.com/t5/technical-forum/f5-ltm-virtual-server-ip-nat-configuration/m-p/346771#M289316</link>
      <description>&lt;P&gt;If from firewall side needs to do NAT Server Mapping between My Virtual Server IP and One public IP and the connection is outbound only , will i give Virtual Server IP or F5 Self-IP to security Team to do the NAT Mapping.&amp;nbsp;&lt;/P&gt;&lt;P&gt;From My Understanding i should give them self-Ip since Since F5 will change the source Ip to Self-Ip when going out.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2026 11:59:00 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/f5-ltm-virtual-server-ip-nat-configuration/m-p/346771#M289316</guid>
      <dc:creator>DanielHadush</dc:creator>
      <dc:date>2026-06-11T11:59:00Z</dc:date>
    </item>
    <item>
      <title>setup F5vpn using key stored in TPM?</title>
      <link>https://community.f5.com/t5/technical-forum/setup-f5vpn-using-key-stored-in-tpm/m-p/346767#M289312</link>
      <description>&lt;P&gt;Can I setup an F5VPN connection using a key generated and stored inside the TPM of my Linux laptop? Platform is Debian 13?&amp;nbsp;AFAICT f5fpc is based upon openssl (which could imply PKCS#11 support), but the documentation doesn't mention it.&lt;/P&gt;&lt;P&gt;https://techdocs.f5.com/en-us/edge-client-7-2-4-1/big-ip-access-policy-manager-edge-client-and-application-configuration-7-2-4-1/clients-for-linux.html&lt;/P&gt;&lt;P&gt;The openconnect F5 implementation is not an option, unfortunately, due to company policy.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2026 10:32:32 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/setup-f5vpn-using-key-stored-in-tpm/m-p/346767#M289312</guid>
      <dc:creator>adibablu</dc:creator>
      <dc:date>2026-06-11T10:32:32Z</dc:date>
    </item>
    <item>
      <title>Opera Browser APM policy logout error code 25</title>
      <link>https://community.f5.com/t5/technical-forum/opera-browser-apm-policy-logout-error-code-25/m-p/346764#M289310</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We publish more than 300 applications on F5. I apply APM (Multidomain) policy in most of them. I changed my browser today. I installed Opera. However, while some sites work smoothly with APM, some sites get mypolicy/logout.errocode 25. I didn't see any problems with session cookies. Has anyone encountered this error?&lt;/P&gt;&lt;P&gt;All other applications work in Chrome and Edge without any problems.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2026 06:19:28 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/opera-browser-apm-policy-logout-error-code-25/m-p/346764#M289310</guid>
      <dc:creator>Ozzy</dc:creator>
      <dc:date>2026-06-11T06:19:28Z</dc:date>
    </item>
    <item>
      <title>URI-based Blocking vs. IP-based Ban in irules</title>
      <link>https://community.f5.com/t5/technical-forum/uri-based-blocking-vs-ip-based-ban-in-irules/m-p/346732#M289284</link>
      <description>&lt;P&gt;I’m currently working on a security implementation using F5 BIG-IP iRules to mitigate malicious activity targeting a specific URI /contact-us on our web application. I’m debating the best approach regarding scope and impact, and I would love to hear your insights or "lessons learned" from your own deployments. We are protecting a specific endpoint from anomalous requests potential injection/brute force attempts. My primary goal is to ensure the security of this endpoint without causing unnecessary disruption to legitimate users or creating a management overhead. When we detect an anomaly, should we stick to URI-level blocking dropping/rejecting only that specific request or move to IP-based banning adding the source IP to a table for a set duration? What are your recommended strategies for handling false positives when using iRules ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2026 12:21:22 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/uri-based-blocking-vs-ip-based-ban-in-irules/m-p/346732#M289284</guid>
      <dc:creator>mervesassmaz</dc:creator>
      <dc:date>2026-06-08T12:21:22Z</dc:date>
    </item>
    <item>
      <title>Big-IQ: VS connection/pool stats visible, but Virtual Server health status not displayed</title>
      <link>https://community.f5.com/t5/technical-forum/big-iq-vs-connection-pool-stats-visible-but-virtual-server/m-p/346725#M289279</link>
      <description>&lt;P&gt;I have version 8.4.0 Big-IQ and 17.1.3 Big-IP VE(Azure). Required communication is flowing from what I can tell between Big-IP&amp;lt;-&amp;gt;DCD and Big-IP&amp;lt;-&amp;gt;CM and necessary ports open. However, when I enable stats collection, it comes back with 'Version: not available" for Stats Collection Agent. In the CM restjavad logs,&amp;nbsp; it mentions that Big-IP doesn't have version(8.1.0.1), so keeps trying to reinstall version 8.1.0.1 continuously. Although Big-IP clearly does have that version downloaded/installed from Big-IQ. I have other devices with same version of iapp.analytics and its fine.&lt;/P&gt;&lt;P&gt;Main issue is that we cant see Virtual Server health(green/red). Although when I go to 'Monitoring' tab, I can see Virtual Server/Pool connection stats once I 'Enable' stats. So stats are being sent from Big-IP VE.&lt;/P&gt;&lt;P&gt;I removed/re-imported services but that didn't help. Im not sure if I need to clear-rest-storage on Big-IP. Although Im hesitant to do that, since license is managed from Big-IQ. Last resort could be remove devices completely and re-add.&lt;/P&gt;&lt;P&gt;This never worked for this particular HA pair. Configuring stats collection is new for this pair.&lt;/P&gt;&lt;P&gt;Thoughts? Anybody have similar issue?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jun 2026 17:39:52 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/big-iq-vs-connection-pool-stats-visible-but-virtual-server/m-p/346725#M289279</guid>
      <dc:creator>jparri2323</dc:creator>
      <dc:date>2026-06-06T17:39:52Z</dc:date>
    </item>
    <item>
      <title>ISP Link Load Blancing Use Case</title>
      <link>https://community.f5.com/t5/technical-forum/isp-link-load-blancing-use-case/m-p/346714#M289273</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a requirement to implement source-based outbound routing across two ISP links on a BIG-IP LTM and I am looking for guidance on the correct way to achieve this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Environment:&lt;/P&gt;&lt;P&gt;- BIG-IP LTM (version: fill in your version)&lt;/P&gt;&lt;P&gt;- Two ISP links: ISP-1 (Airtel) and ISP-2 (TCL)&lt;/P&gt;&lt;P&gt;- Behind the BIG-IP there is a firewall&lt;/P&gt;&lt;P&gt;- Behind the firewall there are two internal subnets:&lt;/P&gt;&lt;P&gt;- 10.20.0.0/24 — this subnet should use ISP-1 (Airtel) for internet access&lt;/P&gt;&lt;P&gt;- 10.50.0.0/24 — this subnet should use ISP-2 (TCL) for internet access&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The firewall's default gateway points to the BIG-IP internal interface&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Requirement:&lt;/P&gt;&lt;P&gt;1. When both ISP links are UP:&lt;/P&gt;&lt;P&gt;- Traffic from 10.20.0.0/24 must go out via ISP-1 (Airtel)&lt;/P&gt;&lt;P&gt;- Traffic from 10.50.0.0/24 must go out via ISP-2 (TCL)&lt;/P&gt;&lt;P&gt;2. When ISP-1 (Airtel) goes DOWN:&lt;/P&gt;&lt;P&gt;- Traffic from 10.20.0.0/24 should automatically failover and go out via ISP-2 (TCL)&lt;/P&gt;&lt;P&gt;3. When ISP-2 (TCL) goes DOWN:&lt;/P&gt;&lt;P&gt;- Traffic from 10.50.0.0/24 should automatically failover and go out via ISP-1 (Airtel)&lt;/P&gt;&lt;P&gt;4. When the failed link recovers, traffic should automatically return to its preferred ISP.&lt;/P&gt;&lt;P&gt;In short — each subnet has a preferred ISP, but if that ISP is down, it should fall back to the other ISP automatically. Both failover directions must work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want to know:&lt;/P&gt;&lt;P&gt;1. What is the correct and recommended way to achieve this on BIG-IP LTM?&lt;/P&gt;&lt;P&gt;2. What objects need to be configured — Virtual Servers, Pools, SNAT, iRules, routes?&lt;/P&gt;&lt;P&gt;3. How does the BIG-IP detect that an ISP link is down and trigger the failover automatically?&lt;/P&gt;&lt;P&gt;4. Are there any gotchas or common mistakes to avoid in this type of setup?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help, working configuration examples, or pointers to relevant documentation would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2026 08:47:09 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/isp-link-load-blancing-use-case/m-p/346714#M289273</guid>
      <dc:creator>himanshugandhi</dc:creator>
      <dc:date>2026-06-05T08:47:09Z</dc:date>
    </item>
    <item>
      <title>F5 VCMP guest shutdown and decommissioning</title>
      <link>https://community.f5.com/t5/technical-forum/f5-vcmp-guest-shutdown-and-decommissioning/m-p/346707#M289267</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a change to shut down and decommission some of the F5 vCMP guests under the vCMP host. Please share the complete change plan steps and any considerations to take into account before the activity.&lt;/P&gt;&lt;P&gt;Also as part of taking usc backup, i need to take the key separately right. If possible please share the CLI commands to take the ucs &amp;amp; key backup. Also is root account required to export the ucs &amp;amp; key.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2026 12:52:40 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/f5-vcmp-guest-shutdown-and-decommissioning/m-p/346707#M289267</guid>
      <dc:creator>Preet_pk</dc:creator>
      <dc:date>2026-06-04T12:52:40Z</dc:date>
    </item>
    <item>
      <title>Procedure for migration LTM/GMT cluster form serie I to R</title>
      <link>https://community.f5.com/t5/technical-forum/procedure-for-migration-ltm-gmt-cluster-form-serie-i-to-r/m-p/346706#M289266</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to migrate a cluster 2600i to 2600r. These devices are doing LTM and GTM.&amp;nbsp;&lt;/P&gt;&lt;P&gt;has anyone done this migration and have any procedures to follow during the intervention?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2026 10:04:38 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/procedure-for-migration-ltm-gmt-cluster-form-serie-i-to-r/m-p/346706#M289266</guid>
      <dc:creator>SuppEsp_AX</dc:creator>
      <dc:date>2026-06-04T10:04:38Z</dc:date>
    </item>
    <item>
      <title>F5OS cloud-init on 21.1 does tenants come with DO and AS3 RPM installed?</title>
      <link>https://community.f5.com/t5/technical-forum/f5os-cloud-init-on-21-1-does-tenants-come-with-do-and-as3-rpm/m-p/346681#M289243</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This great new feature&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://techdocs.f5.com/en-us/bigip-21-1-0/big-ip-f5os-cloud-init-support-velos-rseries/cloud-init-support-velos-rseries.html" target="_blank"&gt;https://techdocs.f5.com/en-us/bigip-21-1-0/big-ip-f5os-cloud-init-support-velos-rseries/cloud-init-support-velos-rseries.html&lt;/A&gt; is not very well described. I think F5 making a demo session or a Guide with pictures will be helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example do the F5os Tenants come with RPM AS3 and DO installed by default for this to work ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other than that it is mentioned that the DO yaml file needs to be hosted on F5OS ? Where exactly ?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2026 07:14:13 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/f5os-cloud-init-on-21-1-does-tenants-come-with-do-and-as3-rpm/m-p/346681#M289243</guid>
      <dc:creator>Nikoolayy1</dc:creator>
      <dc:date>2026-06-03T07:14:13Z</dc:date>
    </item>
    <item>
      <title>OpenID Connect as Client and Resource server</title>
      <link>https://community.f5.com/t5/technical-forum/openid-connect-as-client-and-resource-server/m-p/346676#M289238</link>
      <description>&lt;P&gt;Hi All&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am hoping some here can help me ... I am setting up a F5 to act as both OpenID Connect as Client and Resource server however I am now stuck in a auth loop. My session is being deleted before its handed over to to the authoisation server ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"If the session ID is still changing (4a3b8e96 -&amp;gt; 76933e5c) and the logs show Session deleted (oauth_finished), the F5 is essentially "forgetting" the session because it is failing to hand off the MRHSession cookie, or the policy is explicitly configured to terminate upon finishing the OAuth transaction."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried many variations of using iRule to stop the session ID's changing between the auth server and the authorisation server to ni avail .. I am at my wits end :(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone anble to help? I have logs I will need to sanitise them first that I can upload. These just show that the Auth-ID is created and then the session is deleted before its handed over to VPE that should then send it to sharepoint point app ..&lt;/P&gt;&lt;P&gt;help anyone&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 18:29:49 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/openid-connect-as-client-and-resource-server/m-p/346676#M289238</guid>
      <dc:creator>Blobbs_001</dc:creator>
      <dc:date>2026-06-02T18:29:49Z</dc:date>
    </item>
    <item>
      <title>Ivanti MDM Core &amp; F5 LTM/ASM with mTLS</title>
      <link>https://community.f5.com/t5/technical-forum/ivanti-mdm-core-f5-ltm-asm-with-mtls/m-p/346664#M289230</link>
      <description>&lt;P&gt;Folks,&lt;/P&gt;&lt;P&gt;One of our customers uses Ivanti MDM to manage mobile phones, both IOS &amp;amp; Android. Recently, due to a requirement, we have decided to place an F5 BIG-IP in front of the MDM Core server, which is located&amp;nbsp;in the DMZ.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ivanti has a few sets of URIs. One set does not require enabling mTLS. On the other hand, the second set requires mTLS on the client side of the BIG-IP full proxy.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anybody seen or done this before? Has anybody implemented an MDM behind LTM/ASM (not It functions more like a MITM than just a TCP load balancer)&lt;/P&gt;&lt;P&gt;What is the recommended approach?&lt;/P&gt;&lt;P&gt;Any advice or recommendations are greatly appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appliance: BIG-IP Tenant on r4600&lt;/P&gt;&lt;P&gt;TMOS: 16.x&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 05:16:18 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/ivanti-mdm-core-f5-ltm-asm-with-mtls/m-p/346664#M289230</guid>
      <dc:creator>Anoop_Jayadharan</dc:creator>
      <dc:date>2026-06-02T05:16:18Z</dc:date>
    </item>
    <item>
      <title>My Journey to Passing the F5 402 Cloud Solution Specialist Exam: Tips &amp; Guide</title>
      <link>https://community.f5.com/t5/technical-forum/my-journey-to-passing-the-f5-402-cloud-solution-specialist-exam/m-p/346650#M289223</link>
      <description>&lt;P&gt;## My Journey to Passing the F5 402 Cloud Solution Specialist Exam: Tips &amp;amp; Guide&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since study materials and comprehensive guidebooks for the F5 402 Cloud Solution Specialist exam are quite scarce, I wanted to share my personal experience and key takeaways to help those preparing for this certification.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;### Prerequisites &amp;amp; Foundational Knowledge&lt;/P&gt;&lt;P&gt;* **Mandatory Prerequisites:** You must have already passed the F5 301A+B (LTM) and 302 (GTM/DNS) exams.&lt;/P&gt;&lt;P&gt;* **Cloud Background:** A solid understanding of Cloud architecture (at least at a foundational level) is highly recommended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;### Key Exam Topics to Focus On&lt;/P&gt;&lt;P&gt;1. **Deployment Topologies (1 vs. 3 vNICs):** Understand these deployment models thoroughly, especially in Auto Scaling scenarios. Know when to use each, and be aware of their limitations (such as bandwidth constraints).&lt;/P&gt;&lt;P&gt;2. **VE Licensing (Good, Better, Best):** This is heavily tested. Save time by focusing specifically on the modules that differentiate each tier.&lt;/P&gt;&lt;P&gt;3. **Accessing BIG-IP VE on Cloud:** Know the exact procedure for the initial setup—specifically the use of Key-Pairs and Port 8443.&lt;/P&gt;&lt;P&gt;4. **Automation &amp;amp; Templates:** CloudFormation Templates (CFT) and Kubernetes ConfigMaps appear frequently.&lt;/P&gt;&lt;P&gt;5. **Cloud Failover Extension (CFE):** Understand its core concepts, limitations, and practical use cases.&lt;/P&gt;&lt;P&gt;6. **Cloud High Availability (HA) Limitations:** Focus on why standard failover behaviors change in the cloud (e.g., cloud providers not accepting Gratuitous ARP [GARP], or handling multiple Traffic-Groups).&lt;/P&gt;&lt;P&gt;7. **HA Architecture:** Grasp the differences between Active-Standby and Active-Active deployments.&lt;/P&gt;&lt;P&gt;8. **Active-Active with ELB:** Understand why F5 recommends placing cloud-native Load Balancers (like AWS ALB/NLB) in front of an Active-Active F5 cluster.&lt;/P&gt;&lt;P&gt;9. **Cloud-Specific Terminology:** Be comfortable with cloud infrastructure jargon, especially AWS terminology (e.g., Amazon S3, ELB, VPC, AMI, etc.).&lt;/P&gt;&lt;P&gt;10. **AWS vs. Azure Ratio:** The exam leans heavily toward Amazon AWS over Microsoft Azure, roughly an 80:20 split.&lt;/P&gt;&lt;P&gt;11. **F5 Automation Toolchain:** Understand F5 extensions and their distinct use cases, such as iControl LX, iApp LX, and AS3.&lt;/P&gt;&lt;P&gt;12. **Declarative APIs:** Expect many questions regarding API calls used to provision and manage F5 objects.&lt;/P&gt;&lt;P&gt;13. **REST API Fundamentals:** Understand HTTP methods (GET, POST, PUT, PATCH, DELETE) deeply. For instance, know what happens to the configuration state if an API call fails mid-execution.&lt;/P&gt;&lt;P&gt;14. **API Syntax:** Some questions go deep into the exact command syntax. It is vital to look at real-world examples and memorize the syntax structure.&lt;/P&gt;&lt;P&gt;15. **BIG-IQ Integration:** Study the Knowledge Base (KB) articles regarding using BIG-IQ with AS3 as a proxy to create objects on BIG-IP. Pay attention to the initial setup requirements.&lt;/P&gt;&lt;P&gt;16. **Availability Zones (AZ) &amp;amp; Regions:** Understand the conceptual design of multi-AZ and multi-region setups, including their architectural pros and cons.&lt;/P&gt;&lt;P&gt;17. **AWS Auto Scaling Groups (ASG):** This is a major topic. Spend adequate time reading up on how ASG integrates with F5.&lt;/P&gt;&lt;P&gt;18. **Licensing Models (BYOL vs. PAYG):** You won't get straightforward definition questions. Instead, you will need to analyze scenarios to determine which model is the most cost-effective or appropriate.&lt;/P&gt;&lt;P&gt;19. **Traffic Direction Concepts:** Clearly differentiate between North-South (Vertical) and East-West (Horizontal) traffic patterns to analyze scenario-based questions.&lt;/P&gt;&lt;P&gt;20. **Microservices &amp;amp; Containers:** If you aren't familiar with containerization, brush up on it. There will be architectural diagrams involving Pods and NodePorts.&lt;/P&gt;&lt;P&gt;21. **F5 Container Ingress Services (CIS):** This is another heavily tested topic.&lt;/P&gt;&lt;P&gt;22. **Advanced Licensing:** Look into VLS (Volume Licensing Subscription) and CLP (Cloud Licensing Program).&lt;/P&gt;&lt;P&gt;23. **AWS Instance Types:** You don’t need to memorize instance specs by heart. The exam provides reference tables so you can map and choose the most optimal instance type for a given F5 license.&lt;/P&gt;&lt;P&gt;24. **License Bandwidth:** Understand the performance and throughput limits associated with different F5 licenses.&lt;/P&gt;&lt;P&gt;25. **Content Delivery Network (CDN):** Expect diagram-based questions requiring scenario analysis.&lt;/P&gt;&lt;P&gt;26. **F5 Distributed Cloud (XC) &amp;amp; Silverline:** During my attempt, F5 XC wasn't featured yet, but there were some questions regarding Silverline. (Note: This may vary as blueprints update).&lt;/P&gt;&lt;P&gt;27. **Hybrid Cloud Concepts:** Understand the architecture when bridging On-Premises data centers with Public Cloud environments.&lt;/P&gt;&lt;P&gt;28. **Cloud Migration:** Questions will test your analytical skills regarding migrating workloads from On-Prem to the Cloud, specifically around what factors are critical when shifting traffic.&lt;/P&gt;&lt;P&gt;29. **AWS 6 Rs of Migration:** Memorize the concepts (Rehost, Replatform, Refactor, etc.) as they are embedded in multiple situational questions.&lt;/P&gt;&lt;P&gt;30. **Cloud Models &amp;amp; Finance:** Understand the foundational differences between IaaS, PaaS, SaaS, as well as CapEx vs. OpEx.&lt;/P&gt;&lt;P&gt;31. **WILS (The Data Center API Compass Rose):** This framework does make an appearance on the exam.&lt;/P&gt;&lt;P&gt;32. **F5 APM Roles:** Expect a fair share of APM questions where you must identify whether the BIG-IP is acting as the Identity Provider (IdP) or the Service Provider (SP).&lt;/P&gt;&lt;P&gt;33. **Deployment Methods:** Know the nuances of deploying BIG-IP VE via the Cloud Marketplace versus using GitHub Deployment Scripts.&lt;/P&gt;&lt;P&gt;34. **Cloud Bursting &amp;amp; Monitoring:** This is a recurring theme, including how Active Monitors are used to detect load changes and trigger auto-deployments of instances.&lt;/P&gt;&lt;P&gt;35. **Log File Paths:** Know where to look for specific troubleshooting logs, such as iControl errors, authentication failures, and BIG-IQ restjavad logs.&lt;/P&gt;&lt;P&gt;36. **Authentication Protocol Concepts:** Protocols like OAuth and LDAP aren't questioned directly on syntax, but you must understand their architectural diagrams and exchange mechanisms (e.g., Tokens, SAML assertions).&lt;/P&gt;&lt;P&gt;37. **What did NOT appear (in my attempt):** There were no questions regarding AI, GWLB, Transit Gateway (TGW), F5 XC, or advanced Firewall Deployment Modes on Cloud.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;### How to Approach F5 Module Review (Levels 3xx vs 4xx)&lt;/P&gt;&lt;P&gt;If you already have strong, hands-on experience with F5 modules, you don't necessarily need to re-read all the 3xx-level materials from scratch. The 402 exam looks at them from a higher conceptual level:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* **LTM:** Focuses on TMOS architecture, hardware models (like how vCMP operates), and licensing. It won't grill you on basic configurations like "which Load Balancing method to choose."&lt;/P&gt;&lt;P&gt;* **GTM/DNS:** Purely conceptual. No deep iQuery troubleshooting, just GSLB terminology and straightforward Static Ratio configurations.&lt;/P&gt;&lt;P&gt;* **ASM/AWAF/AFM:** Know which module fits the scenario. For example, choose AFM for L3/L4 DDoS protection, but opt for ASM for L7 DDoS, Behavioral DoS (BaDoS), and WAF capabilities. This ties back into knowing your Better vs. Best license bundles.&lt;/P&gt;&lt;P&gt;* **APM:** Highly important. Review the different authentication types and firmly memorize the architectural flow diagrams for IdP and SP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;### Strategy &amp;amp; Exam Tips&lt;/P&gt;&lt;P&gt;* **Analytical Focus:** Level 4xx exams test your ability to analyze complex scenarios. Pure theory isn't enough; real-world exposure or architectural thinking is key—especially regarding cloud environments for the 402.&lt;/P&gt;&lt;P&gt;* **Time Management is Crucial:** Time is the biggest challenge here. As a non-native English speaker, I was allocated approximately 2 hours and 15 minutes, which felt incredibly tight for the amount of reading required.&lt;/P&gt;&lt;P&gt;* **The "Flag" Button is Your Friend:** If you encounter a massive 2-page question with a huge diagram, flag it and skip it immediately. Secure the quick points by answering the shorter questions first.&lt;/P&gt;&lt;P&gt;* **Read the Question and Choices First:** For long, diagram-heavy questions, read the actual prompt and the multiple-choice answers before diving into the diagram text. Often, the scenario description contains a lot of fluff ("noise"), and you can actually deduce the correct answer just by reading the options.&lt;/P&gt;&lt;P&gt;* **Exam Comparison:** Having gone through the 301B, 401, and 402, I can safely say these exams demand immense mental stamina for analysis. However, 301B felt more exhausting. Once you "catch the rhythm" of the 4xx questions, it becomes manageable.&lt;/P&gt;&lt;P&gt;* **Question Pool Size:** I took both the 401 and 402 twice before passing. I felt that the 402 had a much larger question pool. On my second attempt at the 402, I encountered a significant amount of brand-new questions, whereas the 401 retake had quite a lot of repeats.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best of luck to everyone preparing for the F5 402! I hope you get questions that align with your preparation. Use this guide as a reference point for your studies, and feel free to share your thoughts!&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2026 02:49:02 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/my-journey-to-passing-the-f5-402-cloud-solution-specialist-exam/m-p/346650#M289223</guid>
      <dc:creator>TZJ4</dc:creator>
      <dc:date>2026-06-01T02:49:02Z</dc:date>
    </item>
    <item>
      <title>shame on f5</title>
      <link>https://community.f5.com/t5/technical-forum/shame-on-f5/m-p/346631#M289214</link>
      <description>&lt;P&gt;Hi folks&lt;/P&gt;&lt;P&gt;I am really diasappointed&lt;/P&gt;&lt;P&gt;F5 made 17.1.3.2 release with several bugs&lt;/P&gt;&lt;P&gt;public patch .0.14.32 for 17.1.3.2 to fix one web interface problem&lt;/P&gt;&lt;P&gt;but critical for me bug &lt;A class="lia-external-url" href="https://my.f5.com/manage/s/article/K000161225" target="_blank"&gt;https://my.f5.com/manage/s/article/K000161225&lt;/A&gt; need request EHF from support to fix.&lt;/P&gt;&lt;P&gt;Am I last person who have 17.1.3.2 in production ?&lt;/P&gt;&lt;P&gt;Why not to fix errors in one another public EHF ?&lt;/P&gt;&lt;P&gt;iRule bug affect all 17.1.3.2 users&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2026 15:01:42 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/shame-on-f5/m-p/346631#M289214</guid>
      <dc:creator>Zaulis</dc:creator>
      <dc:date>2026-05-29T15:01:42Z</dc:date>
    </item>
    <item>
      <title>AWAF Detection Inconsistency Between Similar Test Payloads</title>
      <link>https://community.f5.com/t5/technical-forum/awaf-detection-inconsistency-between-similar-test-payloads/m-p/346625#M289210</link>
      <description>&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm testing F5 AWAF against several attack payloads in a lab environment (crAPI).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed some inconsistent detection behavior and would like to know whether this is expected, a signature coverage issue, or a content profile configuration issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;F5 AWAF / ASM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wildcard URL policy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attack signatures enabled&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Form Data, JSON, and XML request body handling configured&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Default content profile set to "Apply value and content signatures and detect threat campaigns"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Case 1 - Command Injection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following payload is detected:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;POST /clam.php Content-Type: application/x-www-form-urlencoded cmd=cat /etc/passwd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AWAF triggers:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unix "cmd" parameter execution attempt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the following payload is not detected:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;POST /clam.php Content-Type: application/x-www-form-urlencoded cmd=127.0.0.1 &amp;amp;&amp;amp; ls /etc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The request body is visible in the event logs, so parsing appears to be working correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone observed similar behavior with command execution signatures?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Case 2 - Multipart Form Data&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AWAF successfully detects directory traversal inside multipart/form-data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Content-Disposition: form-data; name="/static/img/../../etc/passwd" test&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, some multipart XSS payloads are not detected, for example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Content-Disposition: form-data; name="random" &amp;lt;x/Onpointerrawupdate=confirm&amp;amp;lpar;)&amp;gt;xxxxx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;while other XSS payloads such as onerror-based payloads are detected and blocked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Questions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this expected signature coverage behavior?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are command execution signatures expected to detect payloads like:127.0.0.1 &amp;amp;&amp;amp; ls /etc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are there known limitations for newer event handlers such as:onpointerrawupdate=&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would enabling Base64 Decoding in Header-Based Content Profiles have any effect on these cases, or is this unrelated because the payloads are not Base64 encoded?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are there recommended Signature Sets or Evasion settings that improve detection for these payloads?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any guidance would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2026 06:54:01 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/awaf-detection-inconsistency-between-similar-test-payloads/m-p/346625#M289210</guid>
      <dc:creator>Kuyidong</dc:creator>
      <dc:date>2026-05-29T06:54:01Z</dc:date>
    </item>
    <item>
      <title>version 21.1 ACME setup for certificate renewal with Digicert</title>
      <link>https://community.f5.com/t5/technical-forum/version-21-1-acme-setup-for-certificate-renewal-with-digicert/m-p/346622#M289208</link>
      <description>&lt;P&gt;Hello - i have installed&amp;nbsp; Bigip version 21.1 and want to configure ACME to automate Certificate renewal from Digicert and our internal CA.&lt;/P&gt;&lt;P&gt;has any one configured it yet ? and are there any documents that guide on how to configure ... maybe a video&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2026 03:25:33 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/version-21-1-acme-setup-for-certificate-renewal-with-digicert/m-p/346622#M289208</guid>
      <dc:creator>awan_m</dc:creator>
      <dc:date>2026-05-29T03:25:33Z</dc:date>
    </item>
    <item>
      <title>Prodcut compatabilty with F5 OSS vs F5 NGINX Plus</title>
      <link>https://community.f5.com/t5/technical-forum/prodcut-compatabilty-with-f5-oss-vs-f5-nginx-plus/m-p/346620#M289207</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have configured my product using F5 NGINX OSS Ingress Controller, leveraging resources such as &lt;STRONG&gt;GlobalConfiguration&lt;/STRONG&gt;, &lt;STRONG&gt;TransportServer&lt;/STRONG&gt;, and &lt;STRONG&gt;Ingress&lt;/STRONG&gt;. The product is working as expected with F5 OSS and uses both &lt;STRONG&gt;HTTP&lt;/STRONG&gt; and &lt;STRONG&gt;TCP&lt;/STRONG&gt; communication. However, I have not yet been able to validate it with &lt;STRONG&gt;F5 NGINX Plus&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Do you foresee any reason it would &lt;STRONG&gt;not&lt;/STRONG&gt; work with F5 NGINX Plus?&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 22:09:54 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/prodcut-compatabilty-with-f5-oss-vs-f5-nginx-plus/m-p/346620#M289207</guid>
      <dc:creator>vivek233</dc:creator>
      <dc:date>2026-05-28T22:09:54Z</dc:date>
    </item>
    <item>
      <title>SSL Virtual Server to Azure blob storage account</title>
      <link>https://community.f5.com/t5/technical-forum/ssl-virtual-server-to-azure-blob-storage-account/m-p/346594#M289190</link>
      <description>&lt;P&gt;We have a requirement to use F5 as the frontend for Azure storage accounts hosting blob file containers. The SFTP Virtual servers work without issue however the https ones do not. I have tried both standard and performance layer 4 virtual servers but see connection errors when I try to connect though the F5.&lt;/P&gt;&lt;P&gt;When we do this with App Services we have to use custom domains and upload the certificate but storage accounts don't have that option.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone been able to get this working that can give me some pointers on what I might be doing wrong?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 19:05:56 GMT</pubDate>
      <guid>https://community.f5.com/t5/technical-forum/ssl-virtual-server-to-azure-blob-storage-account/m-p/346594#M289190</guid>
      <dc:creator>RichardHillius</dc:creator>
      <dc:date>2026-05-27T19:05:56Z</dc:date>
    </item>
  </channel>
</rss>

