Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode Integration

2012-05-31 Thread Heikki Vatiainen
On 05/30/2012 04:09 PM, Heikki Vatiainen wrote:

> Thanks for the example. Most of the attributes are already in Radiator's
> dictionary but do you have documentation about the ones starting with
> Alvarion-?

The latest patches for Radiator 4.9 now have more Alvarion attributes
defined in the dictionary. The patch descriptions have examples of how
to use them.

With these additions, it should now be possible to return Access-Accepts
that enable explicit mode on Alvarion.


-- 
Heikki Vatiainen 

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, TACACS+, PAM, external, Active Directory, EAP, TLS,
TTLS, PEAP, TNC, WiMAX, RSA, Vasco, Yubikey, MOTP, HOTP, TOTP,
DIAMETER etc. Full source on Unix, Windows, MacOSX, Solaris, VMS,
NetWare etc.
___
radiator mailing list
[email protected]
http://www.open.com.au/mailman/listinfo/radiator


Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode Integration

2012-05-30 Thread Heikki Vatiainen
On 05/29/2012 06:39 PM, Edgar Espinoza wrote:
> Thank you both Leigh and Heikki for your responses. Based on the type of 
> attributes send back to Alvarion's ASN, the system determines if you are 
> working in implicit or explicit mode, see below:

Thanks for the example. Most of the attributes are already in Radiator's
dictionary but do you have documentation about the ones starting with
Alvarion-?

Google finds something, but if you have a definitive source, please let
us know.

> Implicit mode example:
> [email protected] Cleartext-Password := "1234"
>Filter-Id = ionm,
>Session-Timeout = 600,
>Termination-Action = Radius-Request,
> 
> Explicit mode example for one use with 1 IPCS flow and classifier based on 
> DSCP 6:
> [email protected] Cleartext-Password := "1234"
> Service-Type = Framed-User,
> WiMAX-IP-Technology = 3,

Already in dictionary

> Session-Timeout = 600,
> Termination-Action = Radius-Request,
>Alvarion-R3-IF-Name = mgmt,
>Alvarion-PDFID = 1,

Would need the definitions for the above two.

>WiMAX-Packet-Data-Flow-Id = 1,
>WiMAX-Direction = 3,
>WiMAX-Transport-Type = 1,
>   WiMAX-Uplink-QOS-Id = 1,
>WiMAX-Downlink-QOS-Id = 1,

These all are carried within WiMAX-Packet-Flow-Descriptor and are
already in dictionary. The names are a bit different, no WiMAX prefix in
Radiator's dictionary. Look for WiMAX-Packet-Flow-Descriptor in
dictionary and the above are defined there.

With Radiator you would do something like this:

AddToReply WiMAX-Packet-Flow-Descriptor =
"Packet-Data-Flow-ID=1,Direction=Bi-Directional,Transport-Type=IPv4-CS,Uplink-QOS-Id=1,Downlink-QOS-Id=1"

That's a static configuration in a configuration file, but you can of
course store this e.g., in a SQL DB.

Additional twist is there's also WiMAX-Packet-Flow-Descriptor-V2 which
is defined by a later WiMAX docs and looks similar but has a different
type value :(

The docs should tell which one is needed.

>Alvarion-WiMAX-Classifier = 0x010301020301040303070518183f,

Would need the definition for this Alvarion attribute too.

>WiMAX-QoS-Id = 1,
>WiMAX-Schedule-Type = 2,
>WiMAX-Traffic-Priority = 1,
>WiMAX-Maximum-Sustained-Traffic-Rate = 1

These all are carried within WiMAX-QoS-Descriptor similar to
WiMAX-Packet-Flow-Descriptor.

> I already have a server working fine with Alvarion 4M in Implicit mode but I 
> require one that works in 'Explicit Mode' to enable additional information 
> about a service profile. This new AAA server needs to be able to support 
> Alvarion's R3-IF-Descriptor attribute, etc. 
> 
> If this sounds familiar I would really appreciate any and all configuration 
> information. 

I think the support in Radiator is already there and we just need to
find out what the Alvarion- attributes are.

Thanks!
Heikki

-- 
Heikki Vatiainen 

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, TACACS+, PAM, external, Active Directory, EAP, TLS,
TTLS, PEAP, TNC, WiMAX, RSA, Vasco, Yubikey, MOTP, HOTP, TOTP,
DIAMETER etc. Full source on Unix, Windows, MacOSX, Solaris, VMS,
NetWare etc.
___
radiator mailing list
[email protected]
http://www.open.com.au/mailman/listinfo/radiator


Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode Integration

2012-05-29 Thread Edgar Espinoza
Thank you both Leigh and Heikki for your responses. Based on the type of 
attributes send back to Alvarion's ASN, the system determines if you are 
working in implicit or explicit mode, see below:

Implicit mode example:
[email protected] Cleartext-Password := "1234"
   Filter-Id = ionm,
   Session-Timeout = 600,
   Termination-Action = Radius-Request,

Explicit mode example for one use with 1 IPCS flow and classifier based on DSCP 
6:
[email protected] Cleartext-Password := "1234"
Service-Type = Framed-User,
WiMAX-IP-Technology = 3,
Session-Timeout = 600,
Termination-Action = Radius-Request,
   Alvarion-R3-IF-Name = mgmt,
   Alvarion-PDFID = 1,
   WiMAX-Packet-Data-Flow-Id = 1,
   WiMAX-Direction = 3,
   WiMAX-Transport-Type = 1,
  WiMAX-Uplink-QOS-Id = 1,
   WiMAX-Downlink-QOS-Id = 1,
   Alvarion-WiMAX-Classifier = 0x010301020301040303070518183f,
   WiMAX-QoS-Id = 1,
   WiMAX-Schedule-Type = 2,
   WiMAX-Traffic-Priority = 1,
   WiMAX-Maximum-Sustained-Traffic-Rate = 1

I already have a server working fine with Alvarion 4M in Implicit mode but I 
require one that works in 'Explicit Mode' to enable additional information 
about a service profile. This new AAA server needs to be able to support 
Alvarion's R3-IF-Descriptor attribute, etc. 

If this sounds familiar I would really appreciate any and all configuration 
information. 

Regards,
Edgar Espinoza 
PCS Technologies

-Original Message-
From: [email protected] [mailto:[email protected]] On 
Behalf Of Leigh Porter
Sent: Saturday, May 26, 2012 4:05 AM
To: Heikki Vatiainen; [email protected]
Subject: Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode Integration


Hello,

We have Radiator working with Alvarion 4motion.

But I do not know what Explicit Mode is, happy to help you though.

I can share our configs with you, we have a MySQL back end at the moment.

We are just testing the Release 3 patch that Heikki mentioned.

--
Leigh Porter
UK Broadband


> -Original Message-
> From: [email protected] [mailto:radiator- 
> [email protected]] On Behalf Of Heikki Vatiainen
> Sent: 26 May 2012 08:47
> To: [email protected]
> Subject: Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode 
> Integration
> 
> On 05/25/2012 05:18 PM, Edgar Espinoza wrote:
> 
> > Hello everyone, I'm new to this forum so please forgive me if this 
> > question has been posted before: Has anyone successfully 
> > accomplished integration of Radiator with Alvarion 4Motion systems 
> > in Explicit
> Mode?
> 
> I know there are people who have integrated Alvarion 4Motion with 
> Radiator. For Alvarion firmware release 3.0, there's a small fix in 
> patches for 4.9, see http://www.open.com.au/radiator/downloads.html
> 
> I am not familiar with Alvarion, so I can not tell if Explicit Mode 
> has been used or what it does. I suggest you give it a try. Please let 
> us know how it works for you.
> 
> Thanks!
> Heikki
> 
> 
> --
> Heikki Vatiainen 
> 
> Radiator: the most portable, flexible and configurable RADIUS server 
> anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald, 
> Platypus, Freeside, TACACS+, PAM, external, Active Directory, EAP, 
> TLS, TTLS, PEAP, TNC, WiMAX, RSA, Vasco, Yubikey, MOTP, HOTP, TOTP, 
> DIAMETER etc. Full source on Unix, Windows, MacOSX, Solaris, VMS, NetWare etc.
> ___
> radiator mailing list
> [email protected]
> http://www.open.com.au/mailman/listinfo/radiator
> 
> __
> This email has been scanned by the Symantec Email Security.cloud 
> service.
> For more information please visit http://www.symanteccloud.com 
> __

__
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com 
__
___
radiator mailing list
[email protected]
http://www.open.com.au/mailman/listinfo/radiator
___
radiator mailing list
[email protected]
http://www.open.com.au/mailman/listinfo/radiator


Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode Integration

2012-05-26 Thread Leigh Porter

Hello,

We have Radiator working with Alvarion 4motion.

But I do not know what Explicit Mode is, happy to help you though.

I can share our configs with you, we have a MySQL back end at the moment.

We are just testing the Release 3 patch that Heikki mentioned.

--
Leigh Porter
UK Broadband


> -Original Message-
> From: [email protected] [mailto:radiator-
> [email protected]] On Behalf Of Heikki Vatiainen
> Sent: 26 May 2012 08:47
> To: [email protected]
> Subject: Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode
> Integration
> 
> On 05/25/2012 05:18 PM, Edgar Espinoza wrote:
> 
> > Hello everyone, I'm new to this forum so please forgive me if this
> > question has been posted before: Has anyone successfully accomplished
> > integration of Radiator with Alvarion 4Motion systems in Explicit
> Mode?
> 
> I know there are people who have integrated Alvarion 4Motion with
> Radiator. For Alvarion firmware release 3.0, there's a small fix in
> patches for 4.9, see http://www.open.com.au/radiator/downloads.html
> 
> I am not familiar with Alvarion, so I can not tell if Explicit Mode has
> been used or what it does. I suggest you give it a try. Please let us
> know how it works for you.
> 
> Thanks!
> Heikki
> 
> 
> --
> Heikki Vatiainen 
> 
> Radiator: the most portable, flexible and configurable RADIUS server
> anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
> Platypus, Freeside, TACACS+, PAM, external, Active Directory, EAP, TLS,
> TTLS, PEAP, TNC, WiMAX, RSA, Vasco, Yubikey, MOTP, HOTP, TOTP, DIAMETER
> etc. Full source on Unix, Windows, MacOSX, Solaris, VMS, NetWare etc.
> ___
> radiator mailing list
> [email protected]
> http://www.open.com.au/mailman/listinfo/radiator
> 
> __
> This email has been scanned by the Symantec Email Security.cloud
> service.
> For more information please visit http://www.symanteccloud.com
> __

__
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
__
___
radiator mailing list
[email protected]
http://www.open.com.au/mailman/listinfo/radiator


Re: [RADIATOR] Alvarion 4Motion and Radiator Explicit Mode Integration

2012-05-26 Thread Heikki Vatiainen
On 05/25/2012 05:18 PM, Edgar Espinoza wrote:

> Hello everyone, I’m new to this forum so please forgive me if this
> question has been posted before: Has anyone successfully accomplished
> integration of Radiator with Alvarion 4Motion systems in Explicit Mode?

I know there are people who have integrated Alvarion 4Motion with
Radiator. For Alvarion firmware release 3.0, there's a small fix in
patches for 4.9, see http://www.open.com.au/radiator/downloads.html

I am not familiar with Alvarion, so I can not tell if Explicit Mode has
been used or what it does. I suggest you give it a try. Please let us
know how it works for you.

Thanks!
Heikki


-- 
Heikki Vatiainen 

Radiator: the most portable, flexible and configurable RADIUS server
anywhere. SQL, proxy, DBM, files, LDAP, NIS+, password, NT, Emerald,
Platypus, Freeside, TACACS+, PAM, external, Active Directory, EAP, TLS,
TTLS, PEAP, TNC, WiMAX, RSA, Vasco, Yubikey, MOTP, HOTP, TOTP,
DIAMETER etc. Full source on Unix, Windows, MacOSX, Solaris, VMS,
NetWare etc.
___
radiator mailing list
[email protected]
http://www.open.com.au/mailman/listinfo/radiator