]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/outgoingfw.cgi
Added all option to outgoingfw.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / outgoingfw.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 use strict;
23 # enable only the following on debugging purpose
24 #use warnings;
25 #use CGI::Carp 'fatalsToBrowser';
26
27 require '/var/ipfire/general-functions.pl';
28 require "${General::swroot}/lang.pl";
29 require "${General::swroot}/header.pl";
30
31 my %outfwsettings = ();
32 my %checked = ();
33 my %selected= () ;
34 my %netsettings = ();
35 my $errormessage = "";
36 my $configentry = "";
37 my @configs = ();
38 my @configline = ();
39 my $p2pentry = "";
40 my @p2ps = ();
41 my @p2pline = ();
42
43 my $configfile = "/var/ipfire/outgoing/rules";
44 my $p2pfile = "/var/ipfire/outgoing/p2protocols";
45 my $servicefile = "/var/ipfire/outgoing/defaultservices";
46
47 my %color = ();
48 my %mainsettings = ();
49 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
50 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
51
52 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
53
54 &Header::showhttpheaders();
55
56 ### Values that have to be initialized
57 $outfwsettings{'ACTION'} = '';
58 $outfwsettings{'VALID'} = 'yes';
59 $outfwsettings{'EDIT'} = 'no';
60 $outfwsettings{'NAME'} = '';
61 $outfwsettings{'SNET'} = '';
62 $outfwsettings{'SIP'} = '';
63 $outfwsettings{'SPORT'} = '';
64 $outfwsettings{'SMAC'} = '';
65 $outfwsettings{'DIP'} = '';
66 $outfwsettings{'DPORT'} = '';
67 $outfwsettings{'PROT'} = '';
68 $outfwsettings{'STATE'} = '';
69 $outfwsettings{'DISPLAY_DIP'} = '';
70 $outfwsettings{'DISPLAY_DPORT'} = '';
71 $outfwsettings{'DISPLAY_SMAC'} = '';
72 $outfwsettings{'DISPLAY_SIP'} = '';
73 $outfwsettings{'POLICY'} = 'MODE0';
74 $outfwsettings{'MODE1LOG'} = 'off';
75
76 &General::readhash("${General::swroot}/outgoing/settings", \%outfwsettings);
77 &Header::getcgihash(\%outfwsettings);
78
79 $checked{'MODE1LOG'}{'off'} = '';
80 $checked{'MODE1LOG'}{'on'} = '';
81 $checked{'MODE1LOG'}{$outfwsettings{'MODE1LOG'}} = "checked='checked'";
82
83 if ($outfwsettings{'POLICY'} eq 'MODE0'){ $selected{'POLICY'}{'MODE0'} = 'selected'; } else { $selected{'POLICY'}{'MODE0'} = ''; }
84 if ($outfwsettings{'POLICY'} eq 'MODE1'){ $selected{'POLICY'}{'MODE1'} = 'selected'; } else { $selected{'POLICY'}{'MODE1'} = ''; }
85 if ($outfwsettings{'POLICY'} eq 'MODE2'){ $selected{'POLICY'}{'MODE2'} = 'selected'; } else { $selected{'POLICY'}{'MODE2'} = ''; }
86
87 &Header::openpage('Ausgehende Firewall', 1, '');
88 &Header::openbigbox('100%', 'left', '', $errormessage);
89
90 ############################################################################################################################
91 ############################################################################################################################
92
93 if ($outfwsettings{'ACTION'} eq $Lang::tr{'reset'})
94 {
95 $outfwsettings{'POLICY'}='MODE0';
96 unlink $configfile;
97 system("/usr/bin/touch $configfile");
98 my $MODE = $outfwsettings{'POLICY'};
99 %outfwsettings = ();
100 $outfwsettings{'POLICY'} = "$MODE";
101 &General::writehash("${General::swroot}/outgoing/settings", \%outfwsettings);
102 }
103 if ($outfwsettings{'ACTION'} eq $Lang::tr{'save'})
104 {
105 my $MODE = $outfwsettings{'POLICY'};
106 my $MODE1LOG = $outfwsettings{'MODE1LOG'};
107 %outfwsettings = ();
108 $outfwsettings{'POLICY'} = "$MODE";
109 $outfwsettings{'MODE1LOG'} = "$MODE1LOG";
110 &General::writehash("${General::swroot}/outgoing/settings", \%outfwsettings);
111 system("/usr/local/bin/outgoingfwctrl");
112 }
113 if ($outfwsettings{'ACTION'} eq 'enable')
114 {
115 open( FILE, "< $p2pfile" ) or die "Unable to read $p2pfile";
116 @p2ps = <FILE>;
117 close FILE;
118 open( FILE, "> $p2pfile" ) or die "Unable to write $p2pfile";
119 foreach $p2pentry (sort @p2ps)
120 {
121 @p2pline = split( /\;/, $p2pentry );
122 if ($p2pline[1] eq $outfwsettings{'P2PROT'}) {
123 print FILE "$p2pline[0];$p2pline[1];on;\n";
124 } else {
125 print FILE "$p2pline[0];$p2pline[1];$p2pline[2];\n";
126 }
127 }
128 close FILE;
129 system("/usr/local/bin/outgoingfwctrl");
130 }
131 if ($outfwsettings{'ACTION'} eq 'disable')
132 {
133 open( FILE, "< $p2pfile" ) or die "Unable to read $p2pfile";
134 @p2ps = <FILE>;
135 close FILE;
136 open( FILE, "> $p2pfile" ) or die "Unable to write $p2pfile";
137 foreach $p2pentry (sort @p2ps)
138 {
139 @p2pline = split( /\;/, $p2pentry );
140 if ($p2pline[1] eq $outfwsettings{'P2PROT'}) {
141 print FILE "$p2pline[0];$p2pline[1];off;\n";
142 } else {
143 print FILE "$p2pline[0];$p2pline[1];$p2pline[2];\n";
144 }
145 }
146 close FILE;
147 system("/usr/local/bin/outgoingfwctrl");
148 }
149 if ($outfwsettings{'ACTION'} eq $Lang::tr{'edit'})
150 {
151 open( FILE, "< $configfile" ) or die "Unable to read $configfile";
152 @configs = <FILE>;
153 close FILE;
154 open( FILE, "> $configfile" ) or die "Unable to write $configfile";
155 foreach $configentry (sort @configs)
156 {
157 @configline = split( /\;/, $configentry );
158 unless (($configline[0] eq $outfwsettings{'STATE'}) &&
159 ($configline[1] eq $outfwsettings{'ENABLED'}) &&
160 ($configline[2] eq $outfwsettings{'SNET'}) &&
161 ($configline[3] eq $outfwsettings{'PROT'}) &&
162 ($configline[4] eq $outfwsettings{'NAME'}) &&
163 ($configline[5] eq $outfwsettings{'SIP'}) &&
164 ($configline[6] eq $outfwsettings{'SMAC'}) &&
165 ($configline[7] eq $outfwsettings{'DIP'}) &&
166 ($configline[9] eq $outfwsettings{'LOG'}) &&
167 ($configline[8] eq $outfwsettings{'DPORT'}))
168 {
169 print FILE $configentry;
170 }
171 }
172 close FILE;
173 $selected{'SNET'}{"$outfwsettings{'SNET'}"} = 'selected';
174 $selected{'PROT'}{"$outfwsettings{'PROT'}"} = 'selected';
175 $selected{'LOG'}{"$outfwsettings{'LOG'}"} = 'selected';
176 &addrule();
177 &Header::closebigbox();
178 &Header::closepage();
179 exit
180 system("/usr/local/bin/outgoingfwctrl");
181 }
182 if ($outfwsettings{'ACTION'} eq $Lang::tr{'delete'})
183 {
184 open( FILE, "< $configfile" ) or die "Unable to read $configfile";
185 @configs = <FILE>;
186 close FILE;
187 open( FILE, "> $configfile" ) or die "Unable to write $configfile";
188 foreach $configentry (sort @configs)
189 {
190 @configline = split( /\;/, $configentry );
191 unless (($configline[0] eq $outfwsettings{'STATE'}) &&
192 ($configline[1] eq $outfwsettings{'ENABLED'}) &&
193 ($configline[2] eq $outfwsettings{'SNET'}) &&
194 ($configline[3] eq $outfwsettings{'PROT'}) &&
195 ($configline[4] eq $outfwsettings{'NAME'}) &&
196 ($configline[5] eq $outfwsettings{'SIP'}) &&
197 ($configline[6] eq $outfwsettings{'SMAC'}) &&
198 ($configline[7] eq $outfwsettings{'DIP'}) &&
199 ($configline[9] eq $outfwsettings{'LOG'}) &&
200 ($configline[8] eq $outfwsettings{'DPORT'}))
201 {
202 print FILE $configentry;
203 }
204 }
205 close FILE;
206 system("/usr/local/bin/outgoingfwctrl");
207 }
208 if ($outfwsettings{'ACTION'} eq $Lang::tr{'add'})
209 {
210 if ( $outfwsettings{'VALID'} eq 'yes' ) {
211 open( FILE, ">> $configfile" ) or die "Unable to write $configfile";
212 print FILE <<END
213 $outfwsettings{'STATE'};$outfwsettings{'ENABLED'};$outfwsettings{'SNET'};$outfwsettings{'PROT'};$outfwsettings{'NAME'};$outfwsettings{'SIP'};$outfwsettings{'SMAC'};$outfwsettings{'DIP'};$outfwsettings{'DPORT'};$outfwsettings{'LOG'};
214 END
215 ;
216 close FILE;
217 system("/usr/local/bin/outgoingfwctrl");
218 } else {
219 $outfwsettings{'ACTION'} = 'Add rule';
220 }
221 }
222 if ($outfwsettings{'ACTION'} eq 'Add rule')
223 {
224 &addrule();
225 exit
226 }
227
228 &General::readhash("${General::swroot}/outgoing/settings", \%outfwsettings);
229
230 if ($errormessage) {
231 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
232 print "<class name='base'>$errormessage\n";
233 print "&nbsp;</class>\n";
234 &Header::closebox();
235 }
236
237 ############################################################################################################################
238 ############################################################################################################################
239
240 if ($outfwsettings{'POLICY'} ne 'MODE0'){
241 &Header::openbox('100%', 'center', 'Rules');
242 print <<END
243 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
244 <input type='submit' name='ACTION' value='Add rule' />
245 </form>
246 END
247 ;
248 open( FILE, "< $configfile" ) or die "Unable to read $configfile";
249 @configs = <FILE>;
250 close FILE;
251 if (@configs) {
252 print <<END
253 <hr />
254 <table border='0' width='100%' cellspacing='0'>
255 <tr bgcolor='$color{'color22'}'>
256 <td width='14%' align='center'><b>$Lang::tr{'protocol'}</b></td>
257 <td width='14%' align='center'><b>$Lang::tr{'network'}</b></td>
258 <td width='14%' align='center'><b>$Lang::tr{'destination'}</b></td>
259 <td width='14%' align='center'><b>$Lang::tr{'description'}</b></td>
260 <td width='14%' align='center'><b>$Lang::tr{'policy'}</b></td>
261 <td width='16%' align='center'><b>$Lang::tr{'logging'}</b></td>
262 <td width='14%' align='center'><b>$Lang::tr{'action'}</b></td>
263 END
264 ;
265 foreach $configentry (sort @configs)
266 {
267 @configline = split( /\;/, $configentry );
268 $outfwsettings{'STATE'} = $configline[0];
269 $outfwsettings{'ENABLED'} = $configline[1];
270 $outfwsettings{'SNET'} = $configline[2];
271 $outfwsettings{'PROT'} = $configline[3];
272 $outfwsettings{'NAME'} = $configline[4];
273 $outfwsettings{'SIP'} = $configline[5];
274 $outfwsettings{'SMAC'} = $configline[6];
275 $outfwsettings{'DIP'} = $configline[7];
276 $outfwsettings{'DPORT'} = $configline[8];
277 $outfwsettings{'LOG'} = $configline[9];
278 if ($outfwsettings{'DIP'} eq ''){ $outfwsettings{'DISPLAY_DIP'} = 'ALL'; } else { $outfwsettings{'DISPLAY_DIP'} = $outfwsettings{'DIP'}; }
279 if ($outfwsettings{'DPORT'} eq ''){ $outfwsettings{'DISPLAY_DPORT'} = 'ALL'; } else { $outfwsettings{'DISPLAY_DPORT'} = $outfwsettings{'DPORT'}; }
280 if ($outfwsettings{'STATE'} eq 'DENY'){ $outfwsettings{'DISPLAY_STATE'} = "<img src='/images/stock_stop.png' alt='DENY' />"; }
281 if ($outfwsettings{'STATE'} eq 'ALLOW'){ $outfwsettings{'DISPLAY_STATE'} = "<img src='/images/stock_ok.png' alt='ALLOW' />"; }
282 if ((($outfwsettings{'POLICY'} eq 'MODE1') && ($outfwsettings{'STATE'} eq 'ALLOW')) || (($outfwsettings{'POLICY'} eq 'MODE2') && ($outfwsettings{'STATE'} eq 'DENY'))){
283 print <<END
284 <tr bgcolor='$color{'color20'}'>
285 <td align='center'>$outfwsettings{'PROT'}
286 <td align='center'>$outfwsettings{'SNET'}
287 <td align='center'>$outfwsettings{'DISPLAY_DIP'}:$outfwsettings{'DISPLAY_DPORT'}
288 <td align='center'>$outfwsettings{'NAME'}
289 <td align='center'>$outfwsettings{'DISPLAY_STATE'}
290 <td align='center'>$outfwsettings{'LOG'}
291 <td align='center'>
292 <table border='0' cellpadding='0' cellspacing='0'><tr>
293 <td><form method='post' action='$ENV{'SCRIPT_NAME'}'>
294 <input type='hidden' name='PROT' value='$outfwsettings{'PROT'}' />
295 <input type='hidden' name='STATE' value='$outfwsettings{'STATE'}' />
296 <input type='hidden' name='SNET' value='$outfwsettings{'SNET'}' />
297 <input type='hidden' name='DPORT' value='$outfwsettings{'DPORT'}' />
298 <input type='hidden' name='DIP' value='$outfwsettings{'DIP'}' />
299 <input type='hidden' name='SIP' value='$outfwsettings{'SIP'}' />
300 <input type='hidden' name='NAME' value='$outfwsettings{'NAME'}' />
301 <input type='hidden' name='SMAC' value='$outfwsettings{'SMAC'}' />
302 <input type='hidden' name='ENABLED' value='$outfwsettings{'ENABLED'}' />
303 <input type='hidden' name='LOG' value='$outfwsettings{'LOG'}' />
304 <input type='hidden' name='ACTION' value=$Lang::tr{'edit'} />
305 <input type='image' src='/images/edit.gif' width="20" height="20" alt=$Lang::tr{'edit'} />
306 </form>
307 <td><form method='post' action='$ENV{'SCRIPT_NAME'}'>
308 <input type='hidden' name='PROT' value='$outfwsettings{'PROT'}' />
309 <input type='hidden' name='STATE' value='$outfwsettings{'STATE'}' />
310 <input type='hidden' name='SNET' value='$outfwsettings{'SNET'}' />
311 <input type='hidden' name='DPORT' value='$outfwsettings{'DPORT'}' />
312 <input type='hidden' name='DIP' value='$outfwsettings{'DIP'}' />
313 <input type='hidden' name='SIP' value='$outfwsettings{'SIP'}' />
314 <input type='hidden' name='NAME' value='$outfwsettings{'NAME'}' />
315 <input type='hidden' name='SMAC' value='$outfwsettings{'SMAC'}' />
316 <input type='hidden' name='ENABLED' value='$outfwsettings{'ENABLED'}' />
317 <input type='hidden' name='LOG' value='$outfwsettings{'LOG'}' />
318 <input type='hidden' name='ACTION' value=$Lang::tr{'delete'} />
319 <input type='image' src='/images/delete.gif' width="20" height="20" alt=$Lang::tr{'delete'} />
320 </form></table>
321 END
322 ;
323 if (($outfwsettings{'SIP'}) || ($outfwsettings{'SMAC'})) {
324 unless ($outfwsettings{'SIP'}) { $outfwsettings{'DISPLAY_SIP'} = 'ALL'; } else { $outfwsettings{'DISPLAY_SIP'} = $outfwsettings{'SIP'}; }
325 unless ($outfwsettings{'SMAC'}) { $outfwsettings{'DISPLAY_SMAC'} = 'ALL'; } else { $outfwsettings{'DISPLAY_SMAC'} = $outfwsettings{'SMAC'}; }
326 print <<END
327 <tr><td width='14%' align='right'>$Lang::tr{'source ip'}:
328 <td width='14%' align='left'>$outfwsettings{'DISPLAY_SIP'}
329 <td width='44%' colspan='2' align='center'>
330 END
331 ;
332 }
333 print <<END
334 </form>
335 END
336 ;
337 }
338 }
339 if ($outfwsettings{'POLICY'} eq 'MODE1'){
340 print <<END
341 <tr bgcolor='$color{'color20'}'><form method='post' action='$ENV{'SCRIPT_NAME'}'>
342 <td align='center'>tcp&udp
343 <td align='center'>all
344 <td align='center'>ALL
345 <td align='center'>drop
346 <td align='center'><img src='/images/stock_stop.png' alt='DENY' />
347 <td align='center'>on <input type='radio' name='MODE1LOG' value='on' $checked{'MODE1LOG'}{'on'} /><input type='radio' name='MODE1LOG' value='off' $checked{'MODE1LOG'}{'off'} /> off
348 <td align='center'><input type='hidden' name='ACTION' value=$Lang::tr{'save'} /><input type='image' src='/images/media-floppy.png' width="18" height="18" alt=$Lang::tr{'save'} /></form></tr>
349 <table border='0' cellpadding='0' cellspacing='0'><tr>
350 <td>
351 <td></table>
352 END
353 ;
354 }
355 print <<END
356 </table>
357 END
358 ;
359
360 }
361 &Header::closebox();
362 }
363
364 if ($outfwsettings{'POLICY'} ne 'MODE0'){
365 open( FILE, "< $p2pfile" ) or die "Unable to read $p2pfile";
366 @p2ps = <FILE>;
367 close FILE;
368 &Header::openbox('100%', 'center', 'P2P-Block');
369 print <<END
370 <table width='40%'>
371 <tr bgcolor='$color{'color22'}'><td width='66%' align=center><b>$Lang::tr{'protocol'}</b>
372 <td width='33%' align=center><b>$Lang::tr{'status'}</b>
373 END
374 ;
375 my $id = 1;
376 foreach $p2pentry (sort @p2ps)
377 {
378 @p2pline = split( /\;/, $p2pentry );
379 print <<END
380 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
381 END
382 ;
383 print "\t\t\t<tr bgcolor='$color{'color20'}'>\n";
384 print <<END
385 <td width='66%' align='center'>$p2pline[0]:
386 <td width='33%' align='center'><input type='hidden' name='P2PROT' value='$p2pline[1]' />
387 END
388 ;
389 if ($p2pline[2] eq 'on') {
390 print <<END
391 <input type='hidden' name='ACTION' value='disable' />
392 <input type='image' name='submit' src='/images/stock_ok.png' alt='' />
393 END
394 ;
395 } else {
396 print <<END
397 <input type='hidden' name='ACTION' value='enable' />
398 <input type='image' name='submit' src='/images/stock_stop.png' alt='' />
399 END
400 ;
401 }
402 print <<END
403 </form>
404 END
405 ;
406 }
407 print <<END
408 </table>
409 <br />$Lang::tr{'outgoingfw p2p description'}
410 END
411 ;
412 &Header::closebox();
413 }
414
415 &Header::openbox('100%', 'center', 'Policy');
416 print <<END
417 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
418 <table width='100%'>
419 <tr><td width='10%' align='left'><b>$Lang::tr{'mode'} 0:</b><td width='90%' align='left' colspan='2'>$Lang::tr{'outgoingfw mode0'}</td></tr>
420 <tr><td width='10%' align='left'><b>$Lang::tr{'mode'} 1:</b><td width='90%' align='left' colspan='2'>$Lang::tr{'outgoingfw mode1'}</td></tr>
421 <tr><td width='10%' align='left'><b>$Lang::tr{'mode'} 2:</b><td width='90%' align='left' colspan='2'>$Lang::tr{'outgoingfw mode2'}</td></tr>
422 <tr><td colspan='3'><hr /></td></tr>
423 <tr><td width='10%' align='left'> <select name='POLICY' style="width: 85px"><option value='MODE0' $selected{'POLICY'}{'MODE0'}>$Lang::tr{'mode'} 0</option><option value='MODE1' $selected{'POLICY'}{'MODE1'}>$Lang::tr{'mode'} 1</option><option value='MODE2' $selected{'POLICY'}{'MODE2'}>$Lang::tr{'mode'} 2</option></select>
424 <td width='45%' align='left'><input type='submit' name='ACTION' value=$Lang::tr{'save'} />
425 <td width='45%' align='left'>
426 END
427 ;
428 if ($outfwsettings{'POLICY'} ne 'MODE0') {
429 print <<END
430 $Lang::tr{'outgoingfw reset'}: <input type='submit' name='ACTION' value=$Lang::tr{'reset'} />
431 END
432 ;
433 }
434 print <<END
435 </table>
436 </form>
437 END
438 ;
439 &Header::closebox();
440
441 &Header::closebigbox();
442 &Header::closepage();
443
444 ############################################################################################################################
445 ############################################################################################################################
446
447 sub addrule
448 {
449 &Header::openbox('100%', 'center', 'Rules hinzufuegen');
450 if ($outfwsettings{'EDIT'} eq 'no') { $selected{'ENABLED'} = 'checked'; }
451 print <<END
452 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
453 <table width='80%'>
454 <tr><td width='20%' align='right'>$Lang::tr{'description'}: <img src='/blob.gif' />
455 <td width='30%' align='left'><input type='text' name='NAME' maxlength='30' value='$outfwsettings{'NAME'}' />
456 <td width='20%' align='right'>$Lang::tr{'active'}:
457 <td width='30%' align='left'><input type='checkbox' name='ENABLED' $selected{'ENABLED'} />
458 <tr><td width='20%' align='right'>$Lang::tr{'protocol'}:
459 <td width='30%' align='left'><select name='PROT'><option value='tcp' $selected{'PROT'}{'all'}>All</option><option value='tcp' $selected{'PROT'}{'tcp'}>TCP</option><option value='tcp&udp' $selected{'PROT'}{'tcp&udp'}>TCP & UDP</option><option value='udp' $selected{'PROT'}{'udp'}>UDP</option></select>
460 <td width='20%' align='right'>$Lang::tr{'policy'}:
461 <td width='30%' align='left'>
462 END
463 ;
464 if ($outfwsettings{'POLICY'} eq 'MODE1'){
465 print "\t\t\tALLOW<input type='hidden' name='STATE' value='ALLOW' />\n";
466 } elsif ($outfwsettings{'POLICY'} eq 'MODE2'){
467 print "\t\t\tDENY<input type='hidden' name='STATE' value='DENY' />\n";
468 }
469 print <<END
470 <tr><td width='20%' align='right'>$Lang::tr{'source net'}:
471 <td width='30%' align='left'><select name='SNET'>
472 <option value='all' $selected{'SNET'}{'ALL'}>$Lang::tr{'all'}</option>
473 <option value='ip' $selected{'SNET'}{'ip'}>$Lang::tr{'source ip'}</option>
474 <option value='green' $selected{'SNET'}{'green'}>$Lang::tr{'green'}</option>
475 END
476 ;
477 if (&Header::blue_used()){
478 print "\t\t\t<option value='blue' $selected{'SNET'}{'blue'}>$Lang::tr{'wireless'}</option>\n";
479 }
480 if (&Header::orange_used()){
481 print "\t\t\t<option value='orange' $selected{'SNET'}{'orange'}>$Lang::tr{'dmz'}</option>\n";
482 }
483 print <<END
484 </select>
485 <td width='20%' align='right'>$Lang::tr{'source ip'}: <img src='/blob.gif' />
486 <td width='30%' align='left'><input type='text' name='SIP' maxlength='15' value='$outfwsettings{'SIP'}' />
487 <tr><td width='20%' align='right'>$Lang::tr{'logging'}:
488 END
489 ;
490 if ($outfwsettings{'POLICY'} eq 'MODE1'){
491 print "<td width='30%' align='left'><input type='text' name='LOG' maxlength='10' value='$Lang::tr{'inactive'}' readonly='true' /></td>";
492 }
493 else{
494 print "<td width='30%' align='left'><select name='LOG'><option value='$Lang::tr{'active'}' $selected{'LOG'}{$Lang::tr{'active'}}>$Lang::tr{'active'}</option><option value='$Lang::tr{'inactive'}' $selected{'LOG'}{$Lang::tr{'inactive'}}>$Lang::tr{'inactive'}</option></select></td>";
495 }
496 print <<END
497 <td width='20%' align='right' />
498 <td width='30%' align='left' />
499 <tr><td width='20%' align='right'>$Lang::tr{'destination ip'}: <img src='/blob.gif' />
500 <td width='30%' align='left'><input type='text' name='DIP' maxlength='15' value='$outfwsettings{'DIP'}' />
501 <td width='20%' align='right'>$Lang::tr{'destination port'}: <img src='/blob.gif' />
502 <td width='30%' align='left'><input type='text' name='DPORT' maxlength='11' value='$outfwsettings{'DPORT'}' />
503 <tr><td colspan='4'>
504 <tr><td width='40%' align='right' colspan='2'><img src='/blob.gif' />$Lang::tr{'this field may be blank'}
505 <td width='60%' align='left' colspan='2'><input type='submit' name='ACTION' value=$Lang::tr{'add'} />
506 </table></form>
507 END
508 ;
509 &Header::closebox();
510
511 if ($outfwsettings{'POLICY'} eq 'MODE1' || $outfwsettings{'POLICY'} eq 'MODE2')
512 {
513 &Header::openbox('100%', 'center', 'Quick Add');
514
515 open( FILE, "< /var/ipfire/outgoing/defaultservices" ) or die "Unable to read default services";
516 my @defservices = <FILE>;
517 close FILE;
518
519 print "<table width='100%'><tr bgcolor='$color{'color20'}'><td><b>$Lang::tr{'service'}</b></td><td><b>$Lang::tr{'description'}</b></td><td><b>$Lang::tr{'port'}</b></td><td><b>$Lang::tr{'protocol'}</b></td><td><b>$Lang::tr{'source net'}</b></td><td><b>$Lang::tr{'logging'}</b></td><td><b>$Lang::tr{'action'}</b></td></tr>";
520 foreach my $serviceline(@defservices)
521 {
522 my @service = split(/,/,$serviceline);
523 print <<END
524 <tr><form method='post' action='$ENV{'SCRIPT_NAME'}'>
525 <td>$service[0]<input type='hidden' name='NAME' value='@service[0]' /></td>
526 <td>$service[3]</td>
527 <td><a href='http://isc.sans.org/port_details.php?port=$service[1]' target='top'>$service[1]</a><input type='hidden' name='DPORT' value='@service[1]' /></td>
528 <td>$service[2]<input type='hidden' name='PROT' value='@service[2]' /></td>
529 <td><select name='SNET'><option value='all' $selected{'SNET'}{'ALL'}>$Lang::tr{'all'}</option><option value='green' $selected{'SNET'}{'green'}>$Lang::tr{'green'}</option>
530 END
531 ;
532 if (&Header::blue_used()){
533 print "<option value='blue' $selected{'SNET'}{'blue'}>$Lang::tr{'wireless'}</option>";
534 }
535 if (&Header::orange_used()){
536 print "<option value='orange' $selected{'SNET'}{'orange'}>$Lang::tr{'dmz'}</option>";
537 }
538 print <<END
539 </select></td>
540 <td><select name='LOG'><option value='$Lang::tr{'active'}'>$Lang::tr{'active'}</option><option value='$Lang::tr{'inactive'}' 'selected'>$Lang::tr{'inactive'}</option></select></td><td>
541 <input type='hidden' name='ACTION' value=$Lang::tr{'add'} />
542 <input type='image' alt='$Lang::tr{'add'}' src='/images/add.gif' />
543 <input type='hidden' name='ENABLED' value='on' />
544 END
545 ;
546 if ($outfwsettings{'POLICY'} eq 'MODE1'){ print "<input type='hidden' name='STATE' value='ALLOW' /></form></td></tr>";}
547 elsif ($outfwsettings{'POLICY'} eq 'MODE2'){print "<input type='hidden' name='STATE' value='DENY' /></form></td></tr>";}
548 }
549 print "</table>";
550 &Header::closebox();
551 }
552 }