Hi Ken,
Thanks for all the help you've given me in the past. I've got another
question. It seems I'm stuck with some legacy equipment with auths on
port 1645, which is what my server is set up for. Now I've got some
new equipment that will only auth on port 1812. Can I listen to both
ports with the same server?
Yes, you can supply any number of address specifications in a single
`listen' statement, e.g.:
auth {
listen 0.0.0.0:1645, 0.0.0.0:1812;
...
};
acct {
listen 0.0.0.0:1646, 0.0.0.0:1813;
...
};
(see the description of the listen statement in section 4.1.3 of the
Radius manual).