Time for action – configuring proxying between two organizations
We will start with the FreeRADIUS server for my-org.com
:
- Edit the
users
file located under the FreeRADIUS configuration directory and make sure the following entry for alice exists:"alice" Cleartext-Password := "passme" Tunnel-Type = VLAN, Tunnel-Medium-Type = IEEE-802, Tunnel-Private-Group-ID = "100"
- Edit the
proxy.conf
file located under the FreeRADIUS configuration directory and add ahome_server
entry foryour-org.com
. We assume it has an IP address of 192.168.1.106.home_server hs_1_your-org.com { type = auth+acct ipaddr = 192.168.1.106 port = 1812 secret = testing123 }
- Also add a
home_server_pool
section to theproxy.conf
file that contains thehome_server
defined in the previous step:home_server_pool pool_your-org.com { type = fail-over home_server = hs_1_your-org.com }
- Use this pool to proxy requests for the
your-org.com
realm:realm your-org...