To configure FreeRADIUS with the rlm_netams module, perform the following steps:


- Enter the source directory of FreeRADIUS:

   cd /<path-to-freeradius>/

- Go into the following directory:

   cd src/modules

- Copy the rlm_netams directory from this directory into the modules
  directory of FreeRADIUS:

   cp -r /root/netams/addon/rlm_netams .

- Compile the rlm_netams module for FreeRADIUS:

   cd rlm_netams
   gmake
   gmake install

- Configure FreeRADIUS with the rlm_netams module. Check the documentation
  at http://www.netams.com/ about how to set it up. Short sample follows:

    modules {
       ...
       netams {
          server = "localhost" 
          port  = 20001
          login = "freeradius" 
          password = "ABCDEF" 
          timeout   = 1   
       }
    }

    authorize {
       ...
       netams
    }

    accounting {
       ...
       netams
    }

    post-auth {
       ...
       netams
    }

    post-proxy {
       ...
       netams
    }

$Id: README,v 1.5 2005-09-29 16:29:09 anton Exp $