Merge branch 'VLAN-MultiSSID' into Teaman-ND
[tomato.git] / release / src / router / www / advanced-firewall.asp
blobefcecd73f368641ea9147586682831c99e4ff20d
1 <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0//EN'>
2 <!--
3 Tomato GUI
4 Copyright (C) 2006-2010 Jonathan Zarate
5 http://www.polarcloud.com/tomato/
7 Tomato VLAN GUI
8 Copyright (C) 2011 Augusto Bott
9 http://code.google.com/p/tomato-sdhc-vlan/
11 For use with Tomato Firmware only.
12 No part of this file may be used without permission.
13 -->
14 <html>
15 <head>
16 <meta http-equiv='content-type' content='text/html;charset=utf-8'>
17 <meta name='robots' content='noindex,nofollow'>
18 <title>[<% ident(); %>] Advanced: Firewall</title>
19 <link rel='stylesheet' type='text/css' href='tomato.css'>
20 <% css(); %>
21 <script type='text/javascript' src='tomato.js'></script>
23 <!-- / / / -->
25 <script type='text/javascript' src='debug.js'></script>
27 <script type='text/javascript'>
29 // <% nvram("block_wan,nf_loopback,ne_syncookies,multicast_pass,multicast_lan,multicast_lan1,multicast_lan2,multicast_lan3,lan_ifname,lan1_ifname,lan2_ifname,lan3_ifname,udpxy_enable,udpxy_stats,udpxy_clients,udpxy_port,ne_snat"); %>
31 function verifyFields(focused, quiet)
33 /* VLAN-BEGIN */
34 var enable_mcast = E('_f_multicast').checked;
35 E('_f_multicast_lan').disabled = ((!enable_mcast) || (nvram.lan_ifname.length < 1));
36 E('_f_multicast_lan1').disabled = ((!enable_mcast) || (nvram.lan1_ifname.length < 1));
37 E('_f_multicast_lan2').disabled = ((!enable_mcast) || (nvram.lan2_ifname.length < 1));
38 E('_f_multicast_lan3').disabled = ((!enable_mcast) || (nvram.lan3_ifname.length < 1));
39 if(nvram.lan_ifname.length < 1)
40 E('_f_multicast_lan').checked = false;
41 if(nvram.lan1_ifname.length < 1)
42 E('_f_multicast_lan1').checked = false;
43 if(nvram.lan2_ifname.length < 1)
44 E('_f_multicast_lan2').checked = false;
45 if(nvram.lan3_ifname.length < 1)
46 E('_f_multicast_lan3').checked = false;
47 if ((enable_mcast) && (!E('_f_multicast_lan').checked) && (!E('_f_multicast_lan1').checked) && (!E('_f_multicast_lan2').checked) && (!E('_f_multicast_lan3').checked)) {
48 ferror.set('_f_multicast', 'IGMPproxy must be enabled in least one LAN bridge', quiet);
49 return 0;
50 } else {
51 ferror.clear('_f_multicast');
53 /* VLAN-END */
54 E('_f_udpxy_stats').disabled = !E('_f_udpxy_enable').checked;
55 E('_f_udpxy_clients').disabled = !E('_f_udpxy_enable').checked;
56 E('_f_udpxy_port').disabled = !E('_f_udpxy_enable').checked;
57 return 1;
60 function save()
62 var fom;
64 if (!verifyFields(null, 0)) return;
66 fom = E('_fom');
67 fom.block_wan.value = E('_f_icmp').checked ? 0 : 1;
68 fom.ne_syncookies.value = E('_f_syncookies').checked ? 1 : 0;
69 fom.multicast_pass.value = E('_f_multicast').checked ? 1 : 0;
70 /* VLAN-BEGIN */
71 fom.multicast_lan.value = E('_f_multicast_lan').checked ? 1 : 0;
72 fom.multicast_lan1.value = E('_f_multicast_lan1').checked ? 1 : 0;
73 fom.multicast_lan2.value = E('_f_multicast_lan2').checked ? 1 : 0;
74 fom.multicast_lan3.value = E('_f_multicast_lan3').checked ? 1 : 0;
75 /* VLAN-END */
76 fom.udpxy_enable.value = E('_f_udpxy_enable').checked ? 1 : 0;
77 fom.udpxy_stats.value = E('_f_udpxy_stats').checked ? 1 : 0;
78 fom.udpxy_clients.value = E('_f_udpxy_clients').value;
79 fom.udpxy_port.value = E('_f_udpxy_port').value;
80 form.submit(fom, 1);
82 </script>
84 </head>
85 <body>
86 <form id='_fom' method='post' action='tomato.cgi'>
87 <table id='container' cellspacing=0>
88 <tr><td colspan=2 id='header'>
89 <div class='title'>Tomato</div>
90 <div class='version'>Version <% version(); %></div>
91 </td></tr>
92 <tr id='body'><td id='navi'><script type='text/javascript'>navi()</script></td>
93 <td id='content'>
94 <div id='ident'><% ident(); %></div>
96 <!-- / / / -->
98 <input type='hidden' name='_nextpage' value='advanced-firewall.asp'>
99 <input type='hidden' name='_service' value='firewall-restart'>
101 <input type='hidden' name='block_wan'>
102 <input type='hidden' name='ne_syncookies'>
103 <input type='hidden' name='multicast_pass'>
104 /* VLAN-BEGIN */
105 <input type='hidden' name='multicast_lan'>
106 <input type='hidden' name='multicast_lan1'>
107 <input type='hidden' name='multicast_lan2'>
108 <input type='hidden' name='multicast_lan3'>
109 /* VLAN-END */
110 <input type='hidden' name='udpxy_enable'>
111 <input type='hidden' name='udpxy_stats'>
112 <input type='hidden' name='udpxy_clients'>
113 <input type='hidden' name='udpxy_port'>
115 <div class='section-title'>Firewall</div>
116 <div class='section'>
117 <script type='text/javascript'>
118 createFieldTable('', [
119 { title: 'Respond to ICMP ping', name: 'f_icmp', type: 'checkbox', value: nvram.block_wan == '0' },
120 { title: 'Enable SYN cookies', name: 'f_syncookies', type: 'checkbox', value: nvram.ne_syncookies != '0' }
122 </script>
123 </div>
125 <!-- / / / -->
127 <div class='section-title'>NAT</div>
128 <div class='section'>
129 <script type='text/javascript'>
130 createFieldTable('', [
131 { title: 'NAT loopback', name: 'nf_loopback', type: 'select', options: [[0,'All'],[1,'Forwarded Only'],[2,'Disabled']], value: fixInt(nvram.nf_loopback, 0, 2, 1) },
132 { title: 'NAT target', name: 'ne_snat', type: 'select', options: [[0,'MASQUERADE'],[1,'SNAT']], value: nvram.ne_snat }
134 </script>
135 </div>
137 <!-- / / / -->
139 <div class='section-title'>Multicast</div>
140 <div class='section'>
141 <script type='text/javascript'>
142 createFieldTable('', [
143 { title: 'Enable IGMPproxy', name: 'f_multicast', type: 'checkbox', value: nvram.multicast_pass == '1' },
144 /* VLAN-BEGIN */
145 { title: 'LAN', indent: 2, name: 'f_multicast_lan', type: 'checkbox', value: (nvram.multicast_lan == '1') },
146 { title: 'LAN1', indent: 2, name: 'f_multicast_lan1', type: 'checkbox', value: (nvram.multicast_lan1 == '1') },
147 { title: 'LAN2', indent: 2, name: 'f_multicast_lan2', type: 'checkbox', value: (nvram.multicast_lan2 == '1') },
148 { title: 'LAN3', indent: 2, name: 'f_multicast_lan3', type: 'checkbox', value: (nvram.multicast_lan3 == '1') },
149 /* VLAN-END */
150 { title: 'Enable Udpxy', name: 'f_udpxy_enable', type: 'checkbox', value: (nvram.udpxy_enable == '1') },
151 { title: 'Enable client statistics', indent: 2, name: 'f_udpxy_stats', type: 'checkbox', value: (nvram.udpxy_stats == '1') },
152 { title: 'Max clients', indent: 2, name: 'f_udpxy_clients', type: 'text', maxlen: 4, size: 6, value: fixInt(nvram.udpxy_clients || 3, 1, 5000, 3) },
153 { title: 'Udpxy port', indent: 2, name: 'f_udpxy_port', type: 'text', maxlen: 5, size: 7, value: fixPort(nvram.udpxy_port, 4022) }
155 </script>
156 </div>
158 <!-- / / / -->
160 </td></tr>
161 <tr><td id='footer' colspan=2>
162 <span id='footer-msg'></span>
163 <input type='button' value='Save' id='save-button' onclick='save()'>
164 <input type='button' value='Cancel' id='cancel-button' onclick='reloadPage();'>
165 </td></tr>
166 </table>
167 </form>
168 <script type='text/javascript'>verifyFields(null, 1);</script>
169 </body>
170 </html>