• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

File Server proxy?

What I have now: single file server. Call it "Bob."

What I want: multiple file servers and some kind of proxy that will forward clients to the right server depending on the share name they're looking for. (So we don't have to rewrite all our internal documentation, automated scripts, etc.)

So "\\bob\distributions" gets me to the distributions share on server1, but "\\bob\deploy" sends me to the deploy share on server2.

I've been tinkering with HAProxy configs and I don't think it'll do this for non-http protocols, but I could be wrong. Otherwise, I don't know - is there a product out there that will let me do this?

Currently working with Linux file servers. NFS and Samba.
 
you need content switching if you want the packet to be directed based on the shared name.

haproxy doesn't do this, but NGINX will. it is pricy, but still cheaper than the hardware based solution.

if i were you, i would replicate the share across all servers and use anycast load sharing that's available on modern routing platforms.
 
Back
Top