Skip to content

Instantly share code, notes, and snippets.

@atton
Created December 23, 2015 09:48
Show Gist options
  • Save atton/01f29e0180added9b0ff to your computer and use it in GitHub Desktop.
Save atton/01f29e0180added9b0ff to your computer and use it in GitHub Desktop.
FreeRADIUS dhcp configuration example which supports multiple interfaces
server dhcp.ens6 {
listen {
type = dhcp
ipaddr = *
port = 67
interface = ens6
broadcast = yes
performance {
skip_duplicate_checks = yes
}
}
....... dhcp configuration for global address
}
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