cancel
Showing results for 
Search instead for 
Did you mean: 

How to set up freeRadius Server to auth user to STM?

SOLVED
richard_pardue
Occasional Contributor

How to set up freeRadius Server to auth user to STM?

1. What are the dictionary file setting for Stingray Traffic Manager

2. What setting have to be added to the freeRadius Server configuration files?

1 ACCEPTED SOLUTION

Accepted Solutions
agosse
New Contributor

Re: How to set up freeRadius Server to auth user to STM?

/usr/share/freeradius/dictionary.zeus

# dictionary.zeus
# Zeus Packet RADIUS Dictionary
#
# http://www.zeus.com
#
#

VENDOR Zeus 7146
BEGIN-VENDOR Zeus

#
# ZXTM Group Attributes
#
ATTRIBUTE Zeus-ZXTM-Group 1 string

/usr/share/freeradius/dictionary

$INCLUDE dictionary.zeus

/etc/freeradius/users

joe Cleartext-Password := "joe"
Zeus-ZXTM-Group == "Demo"

bob Cleartext-Password := "bob"
Zeus-ZXTM-Group == "Monitoring"

alice Cleartext-Password := "alice"
Zeus-ZXTM-Group == "admin"

/etc/freeradius/clients.conf

client 192.168.37.0/24 { # Whatever your Stingray machine's IP range is
        secret = testing123 # This goes in the authenticator config
        shortname = test
}

View solution in original post

1 REPLY 1
agosse
New Contributor

Re: How to set up freeRadius Server to auth user to STM?

/usr/share/freeradius/dictionary.zeus

# dictionary.zeus
# Zeus Packet RADIUS Dictionary
#
# http://www.zeus.com
#
#

VENDOR Zeus 7146
BEGIN-VENDOR Zeus

#
# ZXTM Group Attributes
#
ATTRIBUTE Zeus-ZXTM-Group 1 string

/usr/share/freeradius/dictionary

$INCLUDE dictionary.zeus

/etc/freeradius/users

joe Cleartext-Password := "joe"
Zeus-ZXTM-Group == "Demo"

bob Cleartext-Password := "bob"
Zeus-ZXTM-Group == "Monitoring"

alice Cleartext-Password := "alice"
Zeus-ZXTM-Group == "admin"

/etc/freeradius/clients.conf

client 192.168.37.0/24 { # Whatever your Stingray machine's IP range is
        secret = testing123 # This goes in the authenticator config
        shortname = test
}