Page 1 of 1

FAQ: как ограничить доступ к TS по IP

PostPosted: Thu Aug 07, 2008 1:21 pm
by admin
Можно в jetty.xml добавить такой вызов (рядом с другими вызовами):

Code: Select all
<Call name="addHandler">
  <Arg>
   <New class="IPAccessHandler">
     <Set name="Standard">deny</Set>
     <Set name="AllowIP">192.168.0.103</Set>
     <Set name="AllowIP">192.168.0.100</Set>
   </New>
  </Arg>
</Call>