<?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 scripting with CSS 11155 in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37935#M409</link>
    <description>&lt;P&gt;Is it possible to use the scripting facility on the css 11155 to automate tasks such as activating and suspending content rules?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 12 Aug 2002 20:10:49 GMT</pubDate>
    <dc:creator>gsatchivi</dc:creator>
    <dc:date>2002-08-12T20:10:49Z</dc:date>
    <item>
      <title>scripting with CSS 11155</title>
      <link>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37935#M409</link>
      <description>&lt;P&gt;Is it possible to use the scripting facility on the css 11155 to automate tasks such as activating and suspending content rules?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2002 20:10:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37935#M409</guid>
      <dc:creator>gsatchivi</dc:creator>
      <dc:date>2002-08-12T20:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: scripting with CSS 11155</title>
      <link>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37936#M410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gilles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please email me directly to &lt;A href="mailto:pknoops@cisco.com"&gt;pknoops@cisco.com&lt;/A&gt; and I will forward you an example of suspending/activating a content rule or service via a script. You can even go as far as using or command scheduler utility to launch the script at a given time of day to perform the necessary tasks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pete Knoops&lt;/P&gt;&lt;P&gt;Cisco Systems&lt;/P&gt;&lt;P&gt;TAC Engineer, Boxborough MA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Aug 2002 00:23:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37936#M410</guid>
      <dc:creator>pknoops</dc:creator>
      <dc:date>2002-08-13T00:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: scripting with CSS 11155</title>
      <link>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37937#M411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pete, could you post the information so other people reading the thread can see the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tx,,&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, 13 Aug 2002 10:15:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37937#M411</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2002-08-13T10:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: scripting with CSS 11155</title>
      <link>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37938#M412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gilles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is one example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!The purpose of this script is to check the status of two services and if they are &lt;/P&gt;&lt;P&gt;!both down suspend the content rule. The script will also activate content rule &lt;/P&gt;&lt;P&gt;!if any of the services comes back up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!no echo&lt;/P&gt;&lt;P&gt;set count "0"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sho service server-g | grep Alive&lt;/P&gt;&lt;P&gt;if STATUS "NEQ" "1"&lt;/P&gt;&lt;P&gt; modify count "++"&lt;/P&gt;&lt;P&gt;endbranch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sho service server-h | grep Alive&lt;/P&gt;&lt;P&gt;if STATUS "NEQ" "1"&lt;/P&gt;&lt;P&gt; modify count "++"&lt;/P&gt;&lt;P&gt;endbranch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if count "==" "2"&lt;/P&gt;&lt;P&gt; configure&lt;/P&gt;&lt;P&gt; owner test&lt;/P&gt;&lt;P&gt; content l3&lt;/P&gt;&lt;P&gt; suspend&lt;/P&gt;&lt;P&gt; exit&lt;/P&gt;&lt;P&gt; exit&lt;/P&gt;&lt;P&gt;endbranch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if count "NEQ" "2"&lt;/P&gt;&lt;P&gt; configure&lt;/P&gt;&lt;P&gt; owner test&lt;/P&gt;&lt;P&gt; content l3&lt;/P&gt;&lt;P&gt; act&lt;/P&gt;&lt;P&gt; exit&lt;/P&gt;&lt;P&gt; exit&lt;/P&gt;&lt;P&gt; endbranch&lt;/P&gt;&lt;P&gt;exit&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will post another example shortly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pete..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Aug 2002 12:18:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37938#M412</guid>
      <dc:creator>pknoops</dc:creator>
      <dc:date>2002-08-13T12:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: scripting with CSS 11155</title>
      <link>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37939#M413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;That's interesting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Aug 2002 08:32:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37939#M413</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2002-08-14T08:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: scripting with CSS 11155</title>
      <link>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37940#M414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter, &lt;/P&gt;&lt;P&gt;Thanks. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Aug 2002 16:53:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/scripting-with-css-11155/m-p/37940#M414</guid>
      <dc:creator>gsatchivi</dc:creator>
      <dc:date>2002-08-14T16:53:49Z</dc:date>
    </item>
  </channel>
</rss>

