Skip to content

Instantly share code, notes, and snippets.

@haproxytechblog
Created August 5, 2024 21:59
Show Gist options
  • Select an option

  • Save haproxytechblog/409dae112a5bd15a09760813e7800fd9 to your computer and use it in GitHub Desktop.

Select an option

Save haproxytechblog/409dae112a5bd15a09760813e7800fd9 to your computer and use it in GitHub Desktop.
Load Balance RADIUS With HAProxy Enterprise UDP Module
udp-lb radius-auth
dgram-bind 192.168.56.25:1812
balance source
option udp-check
server srv1 10.10.10.10:1812 check
server srv2 10.10.10.20:1812 check
server srv3 10.10.10.30:1812 check
udp-lb radius-accounting
dgram-bind 192.168.56.25:1813
balance source
option udp-check
server srv1 10.10.10.10:1813 check
server srv2 10.10.10.20:1813 check
server srv3 10.10.10.30:1813 check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment