- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Linux Virtual Server
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 01:18 AM
12-01-2006 01:18 AM
I've a question about Linux Virtual Server.
I've configured a balancer with NAT and works fine.
The real servers are IIS with some application.
My probelm is:
1)The client of the application is an entire Network in INTERNET natted with one public IP.
2)I need to setup a persistence to the session of the application.
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??
Thanks in advance ,
Marco
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 01:35 AM
12-01-2006 01:35 AM
Re: Linux Virtual Server
Internet (Clients)
|
Nat Box
|
| (Private)
LVS
|
Real Servers
Maybe you can configure a NAT POOL in the "Nat Box" so you have a pool of addresses connecting to the LVS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 01:40 AM
12-01-2006 01:40 AM
Re: Linux Virtual Server
Clients
|
Gateway (NAT box)
|
Internet
|
Balancer
|
Real Servers
But i cant adminisrate the Nat Box.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 01:55 AM
12-01-2006 01:55 AM
SolutionAny 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.
(This means the source port number is usually dynamically allocated and useless for firewalling, but very useful to load balancers.)
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.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 02:27 AM
12-01-2006 02:27 AM
Re: Linux Virtual Server
Do you know where i can find some configuration example of source hash table with different ports??
Thanks again
Marco
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 02:42 AM
12-01-2006 02:42 AM
Re: Linux Virtual Server
can you tell me where can i understand reading LVS documentation that the different source ports is natively supported?
Thank you very much for your help
Marco