Thanks Matthew, it's tested okay.<br><br><div class="gmail_quote">On Fri, May 18, 2012 at 5:44 PM, Matthew Newton <span dir="ltr"><<a href="mailto:mcn4@leicester.ac.uk" target="_blank">mcn4@leicester.ac.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Fri, May 18, 2012 at 11:35:39AM +0800, C.F. Yeung wrote:<br>
> Sorry to bother again, how should I rewrite the unlang for the condition<br>
> that if the Called-Station-Id contains "eduroam"?<br>
><br>
>  if (Called-Station-Id == "xx-xx-xx-xx-xx-xx:eduroam") {<br>
<br>
</div>man unlang - look for regular expressions.<br>
<br>
  if (Called-Station-Id =~ /eduroam/) {<br>
<br>
or you may want something more like<br>
<br>
  if (Called-Station-Id =~ /:eduroam$/) {<br>
<br>
to check that it ends in ":eduroam"<br>
<span class="HOEnZb"><font color="#888888"><br>
Matthew<br>
<br>
<br>
--<br>
Matthew Newton, Ph.D. <<a href="mailto:mcn4@le.ac.uk">mcn4@le.ac.uk</a>><br>
<br>
Systems Architect (UNIX and Networks), Network Services,<br>
I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom<br>
<br>
For IT help contact helpdesk extn. 2253, <<a href="mailto:ithelp@le.ac.uk">ithelp@le.ac.uk</a>><br>
</font></span><div class="HOEnZb"><div class="h5">-<br>
List info/subscribe/unsubscribe? See <a href="http://www.freeradius.org/list/users.html" target="_blank">http://www.freeradius.org/list/users.html</a><br>
</div></div></blockquote></div><br>