> -----Urspr�ngliche Nachricht-----
> Von: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Auftrag von
> [EMAIL PROTECTED]
> Gesendet: Montag, 12. Januar 2004 17:08
> An: [EMAIL PROTECTED]
> Betreff: Freeradius-Users digest, Vol 1 #2714 - 6 msgs
> 
> 
> Send Freeradius-Users mailing list submissions to
>       [EMAIL PROTECTED]
> 
> To subscribe or unsubscribe via the World Wide Web, visit
>       http://lists.freeradius.org/mailman/listinfo/freeradius-users
> or, via email, send a message with subject or body 'help' to
>       [EMAIL PROTECTED]
> 
> You can reach the person managing the list at
>       [EMAIL PROTECTED]
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Freeradius-Users digest..."
> 
> 
> Today's Topics:
> 
>    1. Multiple radiusd at one machine? ( or how to authorize 
> different) (Spetzler, Arne (DZ-SH))
>    2. LEAP Check Attributes ? ([EMAIL PROTECTED])
>    3. Re: Multiple radiusd at one machine? ( or how to 
> authorize differnt) (Dustin Doris)
>    4. (no subject) (=?iso-8859-1?B?RuFiaW8gVmlyYefjbw==?=)
>    5. PEAP - Unknown RADIUS packet (matt morris)
>    6. EAP-MD5 authentification fails with WindowsXP 802.1x 
> client (Rappold, Frank)
> 
> --__--__--
> 
> Message: 1
> Subject: Multiple radiusd at one machine? ( or how to 
> authorize different)
> Date: Mon, 12 Jan 2004 11:13:17 +0100
> From: "Spetzler, Arne \(DZ-SH\)" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> 
> Hi folks,
> 
> are there any means to run more than one radiusd at the same machine?
> 
> Background:
> 
> I've got two groups of users ( but the usernames may share the same =
> namespace :-( )
> 
> LDAP-Users:   They get authorized through LDAP Server
> 
> Standard-Users:       no authorization through LDAP
> 
> My NAS (CISCO-VPN3000) is able of connecting to different ports
> with respect of these groups.
> 
> I would like to do something like this:
> 
> For LDAP-Users the VPN3000 connects to port 1645 and
> for Standard-Users the VPN3000 connects to port 1812...
> 
> So two radiusd which listen on different ports would solve the issue.
> 
> 
> regards,

> Date: Mon, 12 Jan 2004 09:50:08 -0500 (EST)
> From: Dustin Doris <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: Multiple radiusd at one machine? ( or how to 
> authorize differnt)
> Reply-To: [EMAIL PROTECTED]
> 
> Just start two seperate instances, using -d, which specifies 
> the directory
> that the configs are in.
> 
> For example, say your radius configuration is now in 
> /usr/local/etc/raddb.
> 
> You could rename that to raddb-users (/usr/local/etc/raddb-users)
> 
> Then create /usr/local/etc/raddb-ldap
> Copy all the files from raddb-users to raddb-ldap
> Edit the configuration on that one to make it ldap aware and the
> configuration on the raddb-users to use the users file.
> 
> Be sure to change the path to the directory, the port number 
> it listens
> on, and the path to the pid file in radiusd.conf as well as any other
> options that you want specific to each instance.
> 
> Create a startup script to start both using the -d option.
> 
> For example.
> 
> #!/bin/sh
> case "$1" in
> start)
>   /usr/local/sbin/radiusd -d /usr/local/etc/raddb-users && 
> echo 'Starting
> Users Radius'
>   /usr/local/sbin/radiusd -d /usr/local/etc/raddb-ldap && 
> echo 'Starting
> LDAP Radius'
> ;;
> 
> stop)
>   if [ -f /usr/local/var/run/radiusd/raddb-users.pid ]; then
>     kill -TERM `cat /usr/local/var/run/radiusd/raddb-users.pid`
>     rm -f /usr/local/var/run/radiusd/raddb-users.pid
>     echo ' Stopped Users Radius'
>   fi
> 
>   if [ -f /usr/local/var/run/radiusd/raddb-ldap.pid ]; then
>   kill -TERM `cat /usr/local/var/run/radiusd/raddb-ldap.pid`
>   rm -f /usr/local/var/run/radiusd/raddb-ldap.pid
>   echo ' Stopped LDAP Radius'
>   fi
> ;;
> 
> *) echo "Usage: ${0##*/}: { start | stop }" 2>&1
>    exit 65
> ;;
> 
> esac
> 
> Hope that helps

Yes, thank you i will try this :)

Arne

> 
> 

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

Reply via email to