Re: listening on multiple ports
Sergey Poznyakoff <[email protected]> Sat, 26 Jul 2008 11:15:55 +0300
| Newsgroups | gmane.comp.gnu.radius.general |
|---|---|
| Organization | GNU.org.ua |
| Message-ID | <[email protected]> |
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).
Regards,
Sergey