Found the answer in Stephen Sanderson's book, Pro ASP.NET MVC Framework .
Put the following code in your web.config file.
<location path ="Admin">
<system.web>
<authorization>
<deny users="?"/>
<allow roles="Administrator"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
, URL-, ~/Admin/*,
, , "".