So I am still a bit confused by this (I'm just now getting back to this issue). 

So I have the following setup:

- Radiusd Server
-- 2 home_servers listening on 1812 and 1813
-- 2 home_servers listening on 1815 and 1816

In my proxy.conf I have the following:

proxy server {
        default_fallback = no
}
home_server server01 {
        type = auth+acct
        ipaddr = server01
        port = 1812,1813
        secret = s3cret
        require_message_authenticator = no
        response_window = 20
        zombie_period = 10
        status_check = request
        username = t...@test.com
        password = s3cret
        check_interval = 5
        num_answers_to_alive = 3
}
home_server server02 {
        type = auth+acct
        ipaddr = server02
        port = 1812,1813
        secret = s3cret
        require_message_authenticator = no
        response_window = 20
        zombie_period = 10
        status_check = request
        username = t...@test.com
        password = s3cret
        check_interval = 5
        num_answers_to_alive = 3
}
home_server_pool server-balance {
        type = load-balance
        home_server = server01
        home_server = server02
}
realm DEFAULT {
        pool = server-balance
        nostrip
}


I'm pretty clear on how I would add a new home_server_pool called like 
alt-server-balance with the other two home_servers defined which listen on the 
1815,1816 the part I am confused about is how to define the new realm, since 
I'm using DEFAULT to send all traffic to "server-balance" how do I define a new 
realm which will accept traffic on 1815,1816 and send it to alt-server-balance. 

I hope that makes sense.

Thanks,
Brian Carpio

-----Original Message-----
From: freeradius-users-bounces+bcarpio=broadhop....@lists.freeradius.org 
[mailto:freeradius-users-bounces+bcarpio=broadhop....@lists.freeradius.org] On 
Behalf Of Alan DeKok
Sent: Wednesday, August 18, 2010 7:09 PM
To: FreeRadius users mailing list
Subject: Re: Reals Based Upon Port

Brian Carpio wrote:
> Currently I am using freeradius2-2.1.8-2 to load balance radius traffic 
> between two hosts, I have a single realm DEFAULT setup which proxies the 
> radius traffic between the two servers and that works great, however now I 
> have an unusual need to proxy auth/acct radius traffic to non standard ports 
> and I'm unsure how (or even it's even possible) to setup a new realm which is 
> based on destination port for instance.

  Read raddb/proxy.conf.  Look for "port".  This is documented.

> - NOTE: Traffic coming into freeradius on 1815/1816 will be sent to this Alt 
> realm... 

  Set up a virtual server to handle requests sent to those ports.  See 
raddb/sites-available/README

> I am just wondering if this is possible. Or if I would need to setup another 
> instance of freeradius with its own configuration to do this alternative 
> ports setup. 

  No.

  Alan DeKok.
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Reply via email to