This file is indexed.

/usr/share/gosa/plugins/admin/systems/services/dhcp/dhcp_sharedNetwork.tpl is in gosa-plugin-dhcp 2.7.4+reloaded2-13+deb9u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{* GOsa dhcp sharedNetwork - smarty template *}

<h3>{t}Generic{/t}</h3>

<table width="100%" border="0" summary="{t}DHCP shared network{/t}">
 <tr>
  <td width="50%">

   <table summary="{t}DHCP shared network{/t}">
    <tr>
     <td>{t}Name{/t}{$must}</td>
     <td>
      {render acl=$acl}
       <input id='cn' type='text' name='cn' 
        value='{$cn}' title='{t}Name for shared network{/t}'>
      {/render}
     </td>
    </tr>
    <tr>
     <td>{t}Server identifier{/t}
     </td>
     <td>
      {render acl=$acl}
       <input type='text' name='server-identifier' 
        value='{$server_identifier}'	title='{t}Propagated server identifier for this shared network{/t}'>
      {/render}
     </td>
    </tr>
   </table>

  </td>
  <td>

    {render acl=$acl}
     <input type=checkbox name="authoritative" 
      value="1" {if $authoritative} checked {/if} 
      title="{t}Select if this server is authoritative for this shared network{/t}">{t}Authoritative server{/t}
    {/render}

  </td>
 </tr>
</table>

<hr>
<table width="100%"  summary="{t}DHCP shared network{/t}">
 <tr>
  <td width="50%">
   <h3>{t}Leases{/t}</h3>

   <table  summary="{t}DHCP shared network{/t}">
    <tr>
     <td>{t}Default lease time{/t}
     </td>
     <td>
      {render acl=$acl}
       <input type='text' name='default-lease-time'
        value='{$default_lease_time}' title='{t}Default lease time{/t}'>&nbsp;{t}seconds{/t}
      {/render}
     </td>
    </tr>
    <tr>
     <td>{t}Max. lease time{/t}</td>
     <td>
      {render acl=$acl}
       <input type='text' name='max-lease-time'
        value='{$max_lease_time}' title='{t}Maximum lease time{/t}'>&nbsp;{t}seconds{/t}
      {/render}
     </td>
    </tr>
    <tr>
     <td>{t}Min. lease time{/t}</td>
     <td>
      {render acl=$acl}
       <input type='text' name='min-lease-time'
        value='{$min_lease_time}' title='{t}Minimum lease time{/t}'>&nbsp;{t}seconds{/t}
      {/render}
     </td>
    </tr>
   </table>

  </td>
  <td>

   <h3>{t}Access control{/t}</h3>
   <table  summary="{t}DHCP shared network{/t}">
    <tr>
     <td>
      {render acl=$acl}
       <input type=checkbox name="unknown-clients" 
        value="1" {$allow_unknown_state} title="{t}Select if unknown clients should get dynamic IP addresses{/t}">{t}Allow unknown clients{/t}
      {/render}
     </td>
    </tr>
    <tr>
     <td>
      {render acl=$acl}
       <input type=checkbox name="bootp" 
        value="1" {$allow_bootp_state} title="{t}Select if BOOTP clients should get dynamic IP addresses{/t}">{t}Allow BOOTP clients{/t}
      {/render}
     </td>
    </tr>
    <tr>
     <td>
      {render acl=$acl}
       <input type=checkbox name="booting" 
        value="1" {$allow_booting_state} title="{t}Select if clients are allowed to boot using this DHCP server{/t}">{t}Allow booting{/t}
      {/render}
     </td>
    </tr>
   </table>

  </td>
 </tr>
</table>
<hr>

<!-- Place cursor in correct field -->
<script language="JavaScript" type="text/javascript">
 <!-- // First input field on page  
  document.mainform.cn.focus();  
 -->
</script>