ISA RADIUS Authentication per-request -> per-session
- From: "hschlecht" <hschlecht@xxxxxxxxx>
- Date: 30 May 2006 12:51:27 -0700
I have installed i new ISA 2004 SP2 server for Web Proxy with RADIUS
authentication for the users.
I see that the server send RADIUS authentication for each request.
I have found that that we can change SingleRadiusServerAuthPerSession
entry for the WebListener, in my case I mean the Internal network
object. For this thing I have write script (see below) that change the
value from Flase to True for the fpcInternalNetwork object.
After the change and the reboot of the server nothing change and the
server contnue to generate high rate RADIUS request to the RADIUS
Server.
Something wrong ?
Some Idea, because I mean I'm not the only how have this problem ?
' Declare the other objects needed.
Dim root ' The FPCLib.FPC root object
Dim isaArray ' An FPCArray object
Dim listener ' An FPCNetwork object
Dim currentValue ' A Boolean
' Pass WebListener to change.
Set Args = WScript.Arguments
NewValue = Args(0)
WScript.Echo "New Value " & NewValue
' Create the root object.
Set root = CreateObject("FPC.Root")
' Get references to the array object
' and the Web listener object.
Set isaArray = root.GetContainingArray()
Set networks = isaArray.NetworkConfiguration.Networks
For Each network In networks
'WScript.Echo "Network ID "& network
If network.NetworkType = 4 Then '4 = fpcInternalNetwork
CurrentValue =
network.WebListenerProperties.SingleRadiusServerAuthPerSession
WScript.Echo "Network: " & network.NetworkType
WScript.Echo "Current value: " & CurrentValue
If NewValue <> CurrentValue Then
network.WebListenerProperties.SingleRadiusServerAuthPerSession =
NewValue
WScript.Echo "New value: " &
network.WebListenerProperties.SingleRadiusServerAuthPerSession
network.Save
End If
End If
Next
.
- Follow-Ups:
- Re: ISA RADIUS Authentication per-request -> per-session
- From: Jim Harrison \(MSFT\)
- Re: ISA RADIUS Authentication per-request -> per-session
- Prev by Date: Firewall Client Install
- Next by Date: Re: Firewall Client Install
- Previous by thread: Firewall Client Install
- Next by thread: Re: ISA RADIUS Authentication per-request -> per-session
- Index(es):
Relevant Pages
|