<?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: ACE Module TCP Inactivity timeout in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038328#M20697</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The service-policy can be applied globally in the config instead of having to configure it in every interface.&lt;/P&gt;&lt;P&gt;That's what was suggested to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Nov 2008 12:05:44 GMT</pubDate>
    <dc:creator>Gilles Dufour</dc:creator>
    <dc:date>2008-11-11T12:05:44Z</dc:date>
    <item>
      <title>ACE Module TCP Inactivity timeout</title>
      <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038325#M20694</link>
      <description>&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;Can anyone assist with a fix for the following issue on traffic through the ACE module? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TCP sessions are being reset after 60 minutes of inactivity (default behaviour I understand).  I need to extend this to 7500 seconds. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our ACE sits between the internal corporate network and the corporate (CheckPoint) Firewall.  The FW administrators are seeing TCP resets coming from the internal network (ie...the ACE) after exactly 60 minutes of inactivity.  2 applications need these connections to remain open for at least 2 hrs.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I thought perhaps I should apply a parameter-map to the server side interface as well as the client side (where it is already applied).  I currently have a server side policy-map of type "management".  I expect this wouldn't have effect on application traffic in this case so what if I configure a new policy-map of type "multi-match" on server-side?  For example if I configured the following:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;existing parameter-map is....&lt;/P&gt;&lt;P&gt;parameter-map type connection External_Connections&lt;/P&gt;&lt;P&gt;  set timeout inactivity 7500&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;create....&lt;/P&gt;&lt;P&gt;policy-map multi-match ServerSide_FW_DR_L4_LB_VIP_POLICY&lt;/P&gt;&lt;P&gt;  class class-default&lt;/P&gt;&lt;P&gt;    connection advanced-options External_Connections&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;apply....&lt;/P&gt;&lt;P&gt;interface vlan 3390&lt;/P&gt;&lt;P&gt;   service-policy input ServerSide_FW_DR_L4_LB_VIP_POLICY&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;1 - Would this do the job?&lt;/P&gt;&lt;P&gt;2 - Would it only affect the TCP inactivity timeout and otherwise leave everything else alone (not break anything)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached are show techs for the switch and the module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grateful for any assistance with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;SteveK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2008 21:51:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038325#M20694</guid>
      <dc:creator>stevek1</dc:creator>
      <dc:date>2008-11-10T21:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: ACE Module TCP Inactivity timeout</title>
      <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038326#M20695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Default inactivity timeouts used by ACE are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;icmp 2sec&lt;/P&gt;&lt;P&gt;tcp 3600sec&lt;/P&gt;&lt;P&gt;udp 120sec&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your config you will change inactivity for every protocol to 7500sec.If you want to change TCP timeout to 7500sec and keep the &lt;/P&gt;&lt;P&gt;other inactivity timeouts as they are now use following&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter-map type connection GLOBAL-TCP&lt;/P&gt;&lt;P&gt; set timeout inactivity 600&lt;/P&gt;&lt;P&gt;parameter-map type connection GLOBAL-UDP&lt;/P&gt;&lt;P&gt; set timeout inactivity 120&lt;/P&gt;&lt;P&gt;parameter-map type connection GLOBAL-ICMP&lt;/P&gt;&lt;P&gt; set timeout inactivity 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map match-all ALL-TCP&lt;/P&gt;&lt;P&gt;  match port tcp any&lt;/P&gt;&lt;P&gt;class-map match-all ALL-UDP&lt;/P&gt;&lt;P&gt;  match port tcp any&lt;/P&gt;&lt;P&gt;class-map match-all ALL-ICMP&lt;/P&gt;&lt;P&gt;  match port tcp any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map multi-match TIMEOUTS&lt;/P&gt;&lt;P&gt;  class ALL-TCP&lt;/P&gt;&lt;P&gt;     connection advanced GLOBAL-TCP&lt;/P&gt;&lt;P&gt;class ALL-UDP&lt;/P&gt;&lt;P&gt;     connection advanced GLOBAL-UDP&lt;/P&gt;&lt;P&gt;class ALL-TCP&lt;/P&gt;&lt;P&gt;     connection advanced GLOBAL-ICMP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and apply service-policy TIMEOUTS globally&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syed Iftekhar Ahmed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 05:25:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038326#M20695</guid>
      <dc:creator>Syed Iftekhar Ahmed</dc:creator>
      <dc:date>2008-11-11T05:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: ACE Module TCP Inactivity timeout</title>
      <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038327#M20696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response Syed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to clarify...&lt;/P&gt;&lt;P&gt;1 - for GLOBAL-TCP you typed 600.  Should that read 7500?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 - When you say "apply service-policy TIMEOUTS globally", are you suggesting I apply these as input service-policies to each vlan interface?  I already have multi-match policies applied to the client side interface so can I apply another one?  Or is there a way to configure globally?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers, SteveK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 05:39:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038327#M20696</guid>
      <dc:creator>stevek1</dc:creator>
      <dc:date>2008-11-11T05:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: ACE Module TCP Inactivity timeout</title>
      <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038328#M20697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The service-policy can be applied globally in the config instead of having to configure it in every interface.&lt;/P&gt;&lt;P&gt;That's what was suggested to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 12:05:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038328#M20697</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2008-11-11T12:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: ACE Module TCP Inactivity timeout</title>
      <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038329#M20698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Syed and Gilles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see how to do that now, I'm new to ACE modules and wasn't used to the concept of global application of a service policy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your valuable contributions are much appreciated.  Keep up the good work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SteveK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 23:52:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038329#M20698</guid>
      <dc:creator>stevek1</dc:creator>
      <dc:date>2008-11-11T23:52:50Z</dc:date>
    </item>
    <item>
      <title>ACE Module TCP Inactivity timeout</title>
      <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038330#M20699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Is this config apply to all traffic ? I want to say balanced and non-balanced or just for that traffic that hit one VIP ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advantage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tiago &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 12:53:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038330#M20699</guid>
      <dc:creator>tiagogarcia</dc:creator>
      <dc:date>2012-12-07T12:53:31Z</dc:date>
    </item>
    <item>
      <title>ACE Module TCP Inactivity timeout</title>
      <link>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038331#M20700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to above example it will apply to everything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kanwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 16:50:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-module-tcp-inactivity-timeout/m-p/1038331#M20700</guid>
      <dc:creator>Kanwaljeet Singh</dc:creator>
      <dc:date>2012-12-07T16:50:54Z</dc:date>
    </item>
  </channel>
</rss>

