FreeRADIUS VMPS Configuration


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users FreeRADIUS VMPS Configuration
# 1  
Old 08-27-2009
Question FreeRADIUS VMPS Configuration

I could use some help with freeradius configuration. If there is any expert user out there kind enough to give me a hand, would really appreciate it.

Goal:

We are trying to use the freeRADIUS server's VMPS integration feature. Unfortunately the wiki pages do not have real life deployment examples.

Questions:
1. Has anyone out there successfully deployed FreeRADIUS on a Cisco shop to act as VMPS server?

2. According to the radiusd.conf file, the clients.conf file should be configured as followed: Am I on the right track?

secret=< shared secret >

client 10.100.0.0/24 {
secret = <shared secret>
}

3. Now for the VMPS file, should the clients statement be as follwed.....?

client 10.x.x.1 secret < shared secret >
client 10.x.x.1 secret < shared secret >
# and so on

4. for the # Do a simple mapping of MAC to VLAN section, should the statements be as followed:

address 0000.0c07.ac01 vlan-name XYZ

#########################################

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Failed to Authenticate user in FreeRadius 2.2.0

Hi All, I've installed FreeRadius 2.2.0 in Oracle Solaris 10 1/13, and I'm getting Access-Reject when tried using 'radtest' tool. When debugging is enabled I'm getting the following message Debug: ERROR: No authenticate method (Auth-Type) found for the request: Rejecting the user I've... (0 Replies)
Discussion started by: Buddhike G
0 Replies

2. Solaris

Last good configuration

If the OS is messed up with new COTS and we would like to go back to the last good configuration what are options available? (2 Replies)
Discussion started by: sam101
2 Replies

3. IP Networking

Freeradius & active directory

Hello, I am trying to authenticate through PEAP/mschap with freeradius 2.x and Active Directory. I have followed this guide: Deploying RADIUS: Configuring Authentication with Active Directory wbinfo works: # wbinfo -a LOGIN%PASSWORD plaintext password authentication failed Could not... (0 Replies)
Discussion started by: sncr24
0 Replies

4. AIX

Need help on IP Configuration

I have an RS/6000 running AIX 5.3. I would like to get either dhcp client working or assigning it an ip would be fine as well. I have tried using smit to do it many times trying different things, and I can get an ip assigned but it doesn't communicate with the network or internet. I haven't been... (3 Replies)
Discussion started by: izzzy
3 Replies

5. Linux

configuration

hello, I don't know how to configure servor dns on linux,please help I thanck YOU (1 Reply)
Discussion started by: djest
1 Replies

6. Post Here to Contact Site Administrators and Moderators

configuration

how to configure servor dns on windows servor 2003 (0 Replies)
Discussion started by: djest
0 Replies

7. BSD

X configuration

HEllo, I try to Launch OOO, but I have X configuration problem. I 'm searching in man pages but if someone can help me... Of course I set the DISPLAY as explain in the man page but with no more result: setenv DISPLAY myws:0 Thanks in advance (1 Reply)
Discussion started by: SoulCoder
1 Replies

8. UNIX for Dummies Questions & Answers

Configuration

Can anyone please tell me anything about the following: AIX O/S - IBM RS6000 server I want to know where I can go to check and see how much RAM is intalled in the server, how many Processors are installed in the server, and how I can run a sar command to show me processor statistics? I... (4 Replies)
Discussion started by: Docboyeee
4 Replies
Login or Register to Ask a Question
rlm_always(5)							 FreeRADIUS Module						     rlm_always(5)

NAME
rlm_always - FreeRADIUS Module DESCRIPTION
The rlm_always module provides a simple way to "always" return a value during the processing of a configuration section. The module does nothing other than return a configured value. The main configuration item to be aware of is: rcode This module will always return with the rcode specified. The default, if none specified is: fail (RLM_MODULE_FAIL). The valid options are: reject RLM_MODULE_REJECT fail RLM_MODULE_FAIL ok RLM_MODULE_OK handled RLM_MODULE_HANDLED invalid RLM_MODULE_INVALID userlock RLM_MODULE_USERLOCK notfound RLM_MODULE_NOTFOUND noop RLM_MODULE_NOOP updated RLM_MODULE_UPDATED CONFIGURATION
modules { ... always ok { rcode = ok } ... } ... authorize { ... redundant { sql1 # try to find the user in sql1 sql2 # try to find the user in sql2 ok # if still not found, it's OK. } ... } SECTIONS
authorization, authentication, postauthentication, preaccounting, accounting, preproxy, postproxy FILES
/etc/raddb/radiusd.conf SEE ALSO
radiusd(8), radiusd.conf(5) AUTHOR
Chris Parker, cparker@segv.org 3 February 2004 rlm_always(5)