-
-
Save haproxytechblog/409dae112a5bd15a09760813e7800fd9 to your computer and use it in GitHub Desktop.
Load Balance RADIUS With HAProxy Enterprise UDP Module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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