Changeset 13149
- Timestamp:
- 10/31/09 08:43:52 (3 weeks ago)
- Files:
-
- src/router/openvpn/config2/openvpn.nvramconfig (modified) (1 diff)
- src/router/openvpn/config2/openvpn.webvpn (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/router/openvpn/config2/openvpn.nvramconfig
r1 r13149 7 7 "openvpn_client" "Client Public Key" "NULL" "FALSE" "0" 8 8 "openvpn_key" "Client Private Key" "NULL" "FALSE" "0" 9 "openvpn_proto" " Tunnel Protocol" "CHOICE" "2" "udp" "tcp" "FALSE" "0"10 "openvpn_onwan" " Tunnel Protocol" "CHOICE" "2" "0" "1" "FALSE" "0"9 "openvpn_proto" "Proto" "CHOICE" "2" "udp" "tcp" "FALSE" "0" 10 "openvpn_onwan" "Start type" "CHOICE" "2" "0" "1" "FALSE" "0" 11 11 "openvpn_dh" "DH PEM" "NULL" "FALSE" "0" 12 "openvpn_config" " config" "NULL" "FALSE" "0"13 "openvpn_tlsauth" " tlsauth" "NULL" "FALSE" "0"12 "openvpn_config" "Config" "NULL" "FALSE" "0" 13 "openvpn_tlsauth" "Tlsauth" "NULL" "FALSE" "0" src/router/openvpn/config2/openvpn.webvpn
r11059 r13149 1 <h2> OpenVPN Daemon</h2>1 <h2><% tran("service.vpnd_legend"); %></h2> 2 2 <fieldset> 3 <legend> OpenVPN Daemon</legend>3 <legend><% tran("service.vpnd_legend"); %></legend> 4 4 <div class="setting"> 5 <div class="label"> Start OpenVPN</div>5 <div class="label"><% tran("service.vpnd_srv"); %></div> 6 6 <input class="spaceradio" type="radio" name="openvpn_enable" value="1" <% nvram_checked("openvpn_enable", "1"); %> onclick="show_layer_ext(this, 'idvpn', true)" /><% tran("share.enable"); %> 7 7 <input class="spaceradio" type="radio" name="openvpn_enable" value="0" <% nvram_checked("openvpn_enable", "0"); %> onclick="show_layer_ext(this, 'idvpn', false)" /><% tran("share.disable"); %> … … 9 9 <div id="idvpn"> 10 10 <div class="setting"> 11 <div class="label"> Start type</div>12 <input type="radio" name="openvpn_onwan" value="1" <% nvram_checked("openvpn_onwan", "1"); %> /> Wan Up13 <input type="radio" name="openvpn_onwan" value="0" <% nvram_checked("openvpn_onwan", "0"); %> /> System11 <div class="label"><% tran("service.vpnd_starttype"); %></div> 12 <input type="radio" name="openvpn_onwan" value="1" <% nvram_checked("openvpn_onwan", "1"); %> /><% tran("service.vpnd_startWanup"); %> 13 <input type="radio" name="openvpn_onwan" value="0" <% nvram_checked("openvpn_onwan", "0"); %> /><% tran("service.vpnd_startSystem"); %> 14 14 </div> 15 15 16 16 <div class="setting"> 17 <div class="label"> Public Server Cert</div>17 <div class="label"><% tran("service.vpn_srvcert"); %></div> 18 18 <textarea cols="60" rows="10" id="openvpn_ca" name="openvpn_ca"> </textarea> 19 19 <script type="text/javascript"> … … 25 25 </div> 26 26 <div class="setting"> 27 <div class="label"> Certificate Revoke List</div>27 <div class="label"><% tran("service.vpnd_crl"); %></div> 28 28 <textarea cols="60" rows="10" id="openvpn_crl" name="openvpn_crl"> </textarea> 29 29 <script type="text/javascript"> … … 35 35 </div> 36 36 <div class="setting"> 37 <div class="label"> Public Client Cert</div>37 <div class="label"><% tran("service.vpn_clicert"); %></div> 38 38 <textarea cols="60" rows="10" id="openvpn_client" name="openvpn_client"> </textarea> 39 39 <script type="text/javascript"> … … 45 45 </div> 46 46 <div class="setting"> 47 <div class="label"> Private Client Key</div>47 <div class="label"><% tran("service.vpn_clikey"); %></div> 48 48 <textarea cols="60" rows="10" id="openvpn_key" name="openvpn_key"> </textarea> 49 49 <script type="text/javascript"> … … 55 55 </div> 56 56 <div class="setting"> 57 <div class="label"> DH PEM</div>57 <div class="label"><% tran("service.vpnd_dhpem"); %></div> 58 58 <textarea cols="60" rows="10" id="openvpn_dh" name="openvpn_dh"> </textarea> 59 59 <script type="text/javascript"> … … 65 65 </div> 66 66 <div class="setting"> 67 <div class="label"> OpenVPN Config</div>67 <div class="label"><% tran("service.vpnd_config"); %></div> 68 68 <textarea cols="60" rows="10" id="openvpn_config" name="openvpn_config"> </textarea> 69 69 <script type="text/javascript"> … … 75 75 </div> 76 76 <div class="setting"> 77 <div class="label"> OpenVPN TLS Auth</div>77 <div class="label"><% tran("service.vpnd_tlsauth"); %></div> 78 78 <textarea cols="60" rows="10" id="openvpn_tlsauth" name="openvpn_tlsauth"> </textarea> 79 79 <script type="text/javascript">
