<?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: a few questions about CSS in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098922#M22316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1/ you should point to the redundant-interface ip address if you are in vip/interface redundancy mode.&lt;/P&gt;&lt;P&gt;You should point to interface ip if you are in box-to-box redundancy mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2/ you don't need to speficy protocol and port on the service if you want to reuse the same proto/port are the content rule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3/ as long as the udp connection is open, even if the server goes down, we keep using the open connection.&lt;/P&gt;&lt;P&gt;You should maybe disable flow creation since syslog traffic is one-way anyway.&lt;/P&gt;&lt;P&gt;You then get a per-packet loadbalancing.&lt;/P&gt;&lt;P&gt;The command is "flow-state 514 udp flow-disable nat-disable"&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, 08 Dec 2008 09:26:54 GMT</pubDate>
    <dc:creator>Gilles Dufour</dc:creator>
    <dc:date>2008-12-08T09:26:54Z</dc:date>
    <item>
      <title>a few questions about CSS</title>
      <link>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098921#M22315</link>
      <description>&lt;P&gt;router IP is 10.1.1.1&lt;/P&gt;&lt;P&gt;load balaner VIP is 10.1.1.10&lt;/P&gt;&lt;P&gt;2 syslog server need to be load balanced: 10.1.1.2 and 10.1.1.3, with default gateway: 10.1.1.1&lt;/P&gt;&lt;P&gt;when I use layer2 design on the load balancer, I need to configure "group" to make sure that return traffic from server still need to pass through LB. &lt;/P&gt;&lt;P&gt;it works well until we found out that all the traffic source record in Syslog server are :10.1.1.10, which is VIP on the LB, so that I change to layer3 approach on the LB:&lt;/P&gt;&lt;P&gt;on the server, default gateway changed to 10.1.1.11, which is layer 3 IP on the LB;&lt;/P&gt;&lt;P&gt;on the router, create 2 static host routes: 10.1.1.2 255.255.255.255 -&amp;gt; 10.1.1.11 and  10.1.1.3 255.255.255.255 -&amp;gt; 10.1.1.11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still have a few questions:&lt;/P&gt;&lt;P&gt;1).    shall I point the default gateway to 10.1.1.10 (VIP) or 10.1.1.11, which is configured on the LB circuitVLAN10?&lt;/P&gt;&lt;P&gt;2).    in the LB, I configued: &lt;/P&gt;&lt;P&gt;service Server13&lt;/P&gt;&lt;P&gt;ip address 10.1.1.2&lt;/P&gt;&lt;P&gt;protocol udp&lt;/P&gt;&lt;P&gt;port 514&lt;/P&gt;&lt;P&gt;and I also specified the "protocol udp"and"port 514" in the service part:&lt;/P&gt;&lt;P&gt;owner L3_Owner&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;content L3_Rule_syslog&lt;/P&gt;&lt;P&gt;add service Server13&lt;/P&gt;&lt;P&gt;add service Server14&lt;/P&gt;&lt;P&gt;vip address 10.1.1.10&lt;/P&gt;&lt;P&gt;balance leastconn&lt;/P&gt;&lt;P&gt;protocol udp&lt;/P&gt;&lt;P&gt;port 514&lt;/P&gt;&lt;P&gt;advanced-balance sticky-srcip&lt;/P&gt;&lt;P&gt;active   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do I need to specified that at 2 parts both? what is the difference?&lt;/P&gt;&lt;P&gt;3).     when I shut down 1 server, I can see server down from "show keeplive", but it still direct traffic to the down server, I know I can fix this by restart the LB, is there any automatical way?&lt;/P&gt;&lt;P&gt;I have post the samiliar question before, so far i have not get any right answer yet, thanks in advance!&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2008 02:20:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098921#M22315</guid>
      <dc:creator>shibindong</dc:creator>
      <dc:date>2008-12-06T02:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: a few questions about CSS</title>
      <link>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098922#M22316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1/ you should point to the redundant-interface ip address if you are in vip/interface redundancy mode.&lt;/P&gt;&lt;P&gt;You should point to interface ip if you are in box-to-box redundancy mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2/ you don't need to speficy protocol and port on the service if you want to reuse the same proto/port are the content rule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3/ as long as the udp connection is open, even if the server goes down, we keep using the open connection.&lt;/P&gt;&lt;P&gt;You should maybe disable flow creation since syslog traffic is one-way anyway.&lt;/P&gt;&lt;P&gt;You then get a per-packet loadbalancing.&lt;/P&gt;&lt;P&gt;The command is "flow-state 514 udp flow-disable nat-disable"&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, 08 Dec 2008 09:26:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098922#M22316</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2008-12-08T09:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: a few questions about CSS</title>
      <link>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098923#M22317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks!!! Gilles. I get great help from you!&lt;/P&gt;&lt;P&gt;regarding question 3, can I say it is because of UDP issue? If I change to TCP, the problem can be solved? by the way, what does command "flow-state 514 udp flow-disable nat-disable" mean for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 11:34:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098923#M22317</guid>
      <dc:creator>shibindong</dc:creator>
      <dc:date>2008-12-09T11:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: a few questions about CSS</title>
      <link>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098924#M22318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For question #3, yes the problem is probably due to the nature of udp which is connection-less.  So all packets from the same src to the same dst will be a single flow with no begining and no end.&lt;/P&gt;&lt;P&gt;Unless the flow times out (no traffic for a while) we keep using the same flow entry even if the server goes down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For tcp, this would be different since the client would expect an ACK for each data sent and if no response, the client will open a new connection and be re-balanced to a new server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The flow-state command let's you decide if you want a flow to be created or not.&lt;/P&gt;&lt;P&gt;With no flow entry, the CSS is forced to do a new loadbalancing decision for every packet.&lt;/P&gt;&lt;P&gt;This could be a problem if your traffic is too high.&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, 09 Dec 2008 17:28:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098924#M22318</guid>
      <dc:creator>Gilles Dufour</dc:creator>
      <dc:date>2008-12-09T17:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: a few questions about CSS</title>
      <link>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098925#M22319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not quite clear about your explaination:&lt;/P&gt;&lt;P&gt;1) Can I understand that, the syslog (UDP) flow is always in the CSS, because of it is UDP traffic which is one-way and no begin and no end. can I set the flow-time out value to a samll value, so that flow can be deleted if the inactive time  for syslog is larger than that? &lt;/P&gt;&lt;P&gt;2) what does per-packet mean? if the per-packet means:&lt;/P&gt;&lt;P&gt;ABCDEFGHI -&amp;gt;CSS -&amp;gt; A C E G I one server&lt;/P&gt;&lt;P&gt;                -&amp;gt; B D F H another server&lt;/P&gt;&lt;P&gt;can server receive full version syslog?&lt;/P&gt;&lt;P&gt;3) I added this command you recommended in the CSS, and I suspend 1 server, I still can see the traffic go to the down server...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 11:37:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/a-few-questions-about-css/m-p/1098925#M22319</guid>
      <dc:creator>shibindong</dc:creator>
      <dc:date>2008-12-10T11:37:48Z</dc:date>
    </item>
  </channel>
</rss>

