0

I am setting up a high availability load balancer. I found this tutorial from Digital Ocean which says that two load balancers can share a common floating IP.

https://docs.digitalocean.com/products/networking/floating-ips/#how-to-implement-an-ha-setup

What is this floating IP and how does it work?

Can one set it up by one's self (without using Digital Ocean)

user1034912
  • 1,345
  • 3
  • 14
  • 20

1 Answers1

1

to answer your question:

DigitalOcean describes a Floating IP as

a publicly-accessible static IP address that can be assigned to one of your Droplet.

So basically it is an IP within Digital oceans' infrastructure that you can assign to your resources, so they are reachable from the public internet, and I do not believe these can be set-up without digital ocean, since they are part of Digital Ocean Network fabric.

  • Thanks, but how is it highly available? – user1034912 Sep 07 '21 at 14:43
  • I believe the correlation with it being a "floating IP" and "Highly available" is that it is not static, meaning in this case, if one of the LoadBalancers that has this IP assigned to it fails, the IP does not go down with the failing LoadBalancer. Rather, it will get assigned to an Up and running LoadBalancer to ensure high availability on your system. – alrashid villanueva Sep 07 '21 at 17:34
  • Thank you Rashid, if that's the case then I don't need a load balancer for fail over implementations. Just use a floating IP – user1034912 Sep 07 '21 at 23:12