Created
December 23, 2015 09:48
-
-
Save atton/01f29e0180added9b0ff to your computer and use it in GitHub Desktop.
FreeRADIUS dhcp configuration example which supports multiple interfaces
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
server dhcp.ens6 { | |
listen { | |
type = dhcp | |
ipaddr = * | |
port = 67 | |
interface = ens6 | |
broadcast = yes | |
performance { | |
skip_duplicate_checks = yes | |
} | |
} | |
....... dhcp configuration for global address | |
} |
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
server dhcp.ens5 { | |
listen { | |
type = dhcp | |
ipaddr = * | |
port = 67 | |
interface = ens5 | |
broadcast = yes | |
performance { | |
skip_duplicate_checks = yes | |
} | |
} | |
....... dhcp configuration for private address | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment