<?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: limit client to server by nql in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201995#M2641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your ACL says permit traffic from 172.16.101.0/24 to nql web and deny the rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the network 172.16.101.0/24 is on the interface vlan 3, I would expect acl 1 to be applied to vlan 3 and not vlan1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is not what you want, please tell us what is working and not-working (is all traffic going through or no traffic at all ?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Oct 2003 11:12:22 GMT</pubDate>
    <dc:creator>Gilles Dufour</dc:creator>
    <dc:date>2003-10-06T11:12:22Z</dc:date>
    <item>
      <title>limit client to server by nql</title>
      <link>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201991#M2637</link>
      <description>&lt;P&gt;I want limit client to server and I try use NQL w/ acl.&lt;/P&gt;&lt;P&gt;If I enable acl then any traffic will drop(clause permit before acl enable).Anybody have samples or tell me how to config Tks!&lt;/P&gt;&lt;P&gt;I want vlan3 can access and vlan2 can't&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!************************* INTERFACE *************************&lt;/P&gt;&lt;P&gt;interface e11&lt;/P&gt;&lt;P&gt;  bridge vlan 2&lt;/P&gt;&lt;P&gt;interface e12&lt;/P&gt;&lt;P&gt;  bridge vlan 3&lt;/P&gt;&lt;P&gt;!************************** CIRCUIT **************************&lt;/P&gt;&lt;P&gt;circuit VLAN1&lt;/P&gt;&lt;P&gt;  ip address 172.16.100.250 255.255.255.0&lt;/P&gt;&lt;P&gt;circuit VLAN2&lt;/P&gt;&lt;P&gt;  ip address 172.16.99.250 255.255.255.0&lt;/P&gt;&lt;P&gt;circuit VLAN3&lt;/P&gt;&lt;P&gt;  ip address 172.16.101.250 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!************************** SERVICE **************************&lt;/P&gt;&lt;P&gt;service w1&lt;/P&gt;&lt;P&gt;  ip address 172.16.100.78&lt;/P&gt;&lt;P&gt;  port 10000&lt;/P&gt;&lt;P&gt;  active&lt;/P&gt;&lt;P&gt;service w2&lt;/P&gt;&lt;P&gt;  port 10000&lt;/P&gt;&lt;P&gt;  ip address 172.16.100.79&lt;/P&gt;&lt;P&gt;  active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!**************************** NQL ****************************&lt;/P&gt;&lt;P&gt;nql web&lt;/P&gt;&lt;P&gt;  ip address 172.16.100.0 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!*************************** OWNER ***************************&lt;/P&gt;&lt;P&gt;owner web&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  content webl&lt;/P&gt;&lt;P&gt;    add service w1&lt;/P&gt;&lt;P&gt;    add service w2&lt;/P&gt;&lt;P&gt;    protocol tcp&lt;/P&gt;&lt;P&gt;    port 80&lt;/P&gt;&lt;P&gt;    vip address 172.16.100.80&lt;/P&gt;&lt;P&gt;    active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!**************************** ACL ****************************&lt;/P&gt;&lt;P&gt;acl 1&lt;/P&gt;&lt;P&gt;  clause 20 permit tcp 172.16.101.0 255.255.255.0 destination nql web eq 80&lt;/P&gt;&lt;P&gt; apply circuit-(VLAN1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Oct 2003 00:40:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201991#M2637</guid>
      <dc:creator>mcrichard</dc:creator>
      <dc:date>2003-10-04T00:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: limit client to server by nql</title>
      <link>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201992#M2638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you enable ACL, by default the CSS will drop all traffic unless you permit it explicitly.&lt;/P&gt;&lt;P&gt;Even on circuit interface where there is no ACL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you need to create an ACL like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl 2&lt;/P&gt;&lt;P&gt;clause 99 permit any any destination any&lt;/P&gt;&lt;P&gt;apply circuit-(VLAN2)&lt;/P&gt;&lt;P&gt;apply-circuit-(VLAN3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know the result like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Oct 2003 07:59:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201992#M2638</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2003-10-05T07:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: limit client to server by nql</title>
      <link>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201993#M2639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks your reply and I have modify our config but the nql still didn't work. When I show acl then can find hit but the nql didn't work .I add below&lt;/P&gt;&lt;P&gt;!**************************** ACL ****************************&lt;/P&gt;&lt;P&gt;acl 1&lt;/P&gt;&lt;P&gt;  clause 1 permit tcp 172.16.101.0 255.255.255.0 destination nql web eq 80&lt;/P&gt;&lt;P&gt;  apply circuit-(VLAN1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl 2&lt;/P&gt;&lt;P&gt;  clause 2 permit any any destination any&lt;/P&gt;&lt;P&gt;  apply circuit-(VLAN2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl 3&lt;/P&gt;&lt;P&gt;  clause 3 permit any any destination any&lt;/P&gt;&lt;P&gt;  apply circuit-(VLAN3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2003 03:17:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201993#M2639</guid>
      <dc:creator>mcrichard</dc:creator>
      <dc:date>2003-10-06T03:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: limit client to server by nql</title>
      <link>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201994#M2640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if modify acl 1 to&lt;/P&gt;&lt;P&gt;acl 1 &lt;/P&gt;&lt;P&gt;clause 1 permit tcp 172.16.101.0 255.255.255.0 destination nql web eq 80 &lt;/P&gt;&lt;P&gt;clause 1 permit any any destination nql web eq 80 &lt;/P&gt;&lt;P&gt;apply circuit-(VLAN1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then we can found the hit counters on acl 1 and it can access server &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2003 07:52:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201994#M2640</guid>
      <dc:creator>mcrichard</dc:creator>
      <dc:date>2003-10-06T07:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: limit client to server by nql</title>
      <link>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201995#M2641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your ACL says permit traffic from 172.16.101.0/24 to nql web and deny the rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the network 172.16.101.0/24 is on the interface vlan 3, I would expect acl 1 to be applied to vlan 3 and not vlan1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is not what you want, please tell us what is working and not-working (is all traffic going through or no traffic at all ?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gilles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2003 11:12:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/limit-client-to-server-by-nql/m-p/201995#M2641</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2003-10-06T11:12:22Z</dc:date>
    </item>
  </channel>
</rss>

