<?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: Linux Virtual Server in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906621#M26199</link>
    <description>Excuse me Matti,&lt;BR /&gt;can you tell me where can i understand reading LVS documentation that the different source ports is natively supported?&lt;BR /&gt;Thank you very much for your help&lt;BR /&gt;Marco</description>
    <pubDate>Fri, 01 Dec 2006 10:42:15 GMT</pubDate>
    <dc:creator>Marco_113</dc:creator>
    <dc:date>2006-12-01T10:42:15Z</dc:date>
    <item>
      <title>Linux Virtual Server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906616#M26194</link>
      <description>Hi all.&lt;BR /&gt;I've a question about Linux Virtual Server.&lt;BR /&gt;&lt;BR /&gt;I've configured a balancer with NAT and works fine.&lt;BR /&gt;&lt;BR /&gt;The real servers are IIS with some application.&lt;BR /&gt;My probelm is:&lt;BR /&gt;&lt;BR /&gt;1)The client of the application is an entire Network in INTERNET natted with one public IP.&lt;BR /&gt;&lt;BR /&gt;2)I need to setup a persistence to the session of the application.&lt;BR /&gt;&lt;BR /&gt;So, how can i solve the problem that if i apply persistence, i loose the balancing because of the requests come from the same IP??&lt;BR /&gt;&lt;BR /&gt;Thanks in advance ,&lt;BR /&gt;Marco&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Dec 2006 09:18:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906616#M26194</guid>
      <dc:creator>Marco_113</dc:creator>
      <dc:date>2006-12-01T09:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Linux Virtual Server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906617#M26195</link>
      <description>&lt;!--!*#--&gt;Can you graph your network? is something like:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                     Internet (Clients)&lt;BR /&gt;                         |&lt;BR /&gt;                      Nat Box&lt;BR /&gt;                         |&lt;BR /&gt;                         | (Private)&lt;BR /&gt;                        LVS&lt;BR /&gt;                         |&lt;BR /&gt;                     Real Servers&lt;BR /&gt;&lt;BR /&gt;Maybe you can configure a NAT POOL in the "Nat Box" so you have a pool of addresses connecting to the LVS.</description>
      <pubDate>Fri, 01 Dec 2006 09:35:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906617#M26195</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-12-01T09:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Linux Virtual Server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906618#M26196</link>
      <description>Yes the network is:&lt;BR /&gt;&lt;BR /&gt;      Clients&lt;BR /&gt;         |&lt;BR /&gt;      Gateway (NAT box)  &lt;BR /&gt;         |&lt;BR /&gt;       Internet&lt;BR /&gt;         |&lt;BR /&gt;      Balancer&lt;BR /&gt;         |&lt;BR /&gt;     Real Servers&lt;BR /&gt;&lt;BR /&gt;But i cant adminisrate the Nat Box.&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Dec 2006 09:40:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906618#M26196</guid>
      <dc:creator>Marco_113</dc:creator>
      <dc:date>2006-12-01T09:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Linux Virtual Server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906619#M26197</link>
      <description>Many load balancers actually use the source and destination port numbers in addition to the IP addresses to identify individual sessions. According to the documentation, the IPVS component of the Linux Virtual Server works like this.&lt;BR /&gt;&lt;BR /&gt;Any TCP or UDP connection has two port numbers associated with it: a source port number and a destination port number. There can be several connections to a single _destination_ port number, but the _source_ port number cannot be unique among connections coming from any one IP address. &lt;BR /&gt;&lt;BR /&gt;(This means the source port number is usually dynamically allocated and useless for firewalling, but very useful to load balancers.)&lt;BR /&gt;&lt;BR /&gt;A good load balancer might also be able to handle several TCP connections with identical source and destination IP addresses _and_  port numbers, by keeping track of the TCP sequence numbers of individual connections. UDP does not have sequence numbers as such, so this method is not useful for UDP.&lt;BR /&gt;&lt;BR /&gt;If you're using the KTCPVS component of the Linux Virtual Server, it can implement the persistence using HTTP session cookies. This is completely independent of any network connection properties, so the presence of NAT will not affect it.</description>
      <pubDate>Fri, 01 Dec 2006 09:55:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906619#M26197</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2006-12-01T09:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Linux Virtual Server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906620#M26198</link>
      <description>Thank you Matti.&lt;BR /&gt;Do you know where i can find some configuration example of source hash table with different ports?? &lt;BR /&gt;Thanks again&lt;BR /&gt;Marco</description>
      <pubDate>Fri, 01 Dec 2006 10:27:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906620#M26198</guid>
      <dc:creator>Marco_113</dc:creator>
      <dc:date>2006-12-01T10:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Linux Virtual Server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906621#M26199</link>
      <description>Excuse me Matti,&lt;BR /&gt;can you tell me where can i understand reading LVS documentation that the different source ports is natively supported?&lt;BR /&gt;Thank you very much for your help&lt;BR /&gt;Marco</description>
      <pubDate>Fri, 01 Dec 2006 10:42:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-virtual-server/m-p/3906621#M26199</guid>
      <dc:creator>Marco_113</dc:creator>
      <dc:date>2006-12-01T10:42:15Z</dc:date>
    </item>
  </channel>
</rss>

