I just installed 3.0.12 and I'm testing the default and inner-server virtual servers. Would someone tell me/point me to the documentation that shows me how I would call different MS-CHAP modules in the inner-tunnel virtual server. Thanks, Chris Howley
On 26 Jan 2017, at 21:21, Chris Howley <C.P.Howley@leeds.ac.uk> wrote:
how I would call different MS-CHAP modules in the inner-tunnel virtual server.
You just duplicate the block in mods-available, customise it and give it a name. mschap { ... } becomes mschap myothermschap { ... } Then you just call 'myothermschap' in authorize/authenticate/etc. as normal. Just make sure that you don't collide with another module name. Regards, Adam Bishop gpg: E75B 1F92 6407 DFDF 9F1C BF10 C993 2504 6609 D460 jisc.ac.uk Jisc is a registered charity (number 1149740) and a company limited by guarantee which is registered in England under Company No. 5747339, VAT No. GB 197 0632 86. Jisc’s registered office is: One Castlepark, Tower Hill, Bristol, BS2 0JA. T 0203 697 5800. Jisc Services Limited is a wholly owned Jisc subsidiary and a company limited by guarantee which is registered in England under company number 2881024, VAT number GB 197 0632 86. The registered office is: One Castle Park, Tower Hill, Bristol BS2 0JA. T 0203 697 5800.
Hi,
I just installed 3.0.12 and I'm testing the default and inner-server virtual
i'd take 3.0.x from head as its 3.0.13 - with several little bugs fixed - unless you want to wait for 3.0.13
servers. Would someone tell me/point me to the documentation that shows me
how I would call different MS-CHAP modules in the inner-tunnel virtual server.
take your mschap module and copy it, give it a new instance name (in the file itself...the filename not important for function) eg file 1 mschap mschap-norealm { rest of config here } file 2 mschap mschap-realm { rest of config here } then, in the inner-tunnel just call eg # MSCHAP authentication. Auth-Type MS-CHAP { if("%{User-Name}" =~ /@/) { mschap-realm { ok = return } } else { mschap-norealm { ok = return } } } alan
participants (3)
-
A.L.M.Buxey@lboro.ac.uk -
Adam Bishop -
Chris Howley