Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
(330) |
May
(46) |
Jun
(52) |
Jul
(39) |
Aug
(26) |
Sep
(12) |
Oct
(110) |
Nov
(178) |
Dec
(161) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(99) |
Feb
(106) |
Mar
(97) |
Apr
(93) |
May
(81) |
Jun
(112) |
Jul
(84) |
Aug
(142) |
Sep
(165) |
Oct
(89) |
Nov
(120) |
Dec
(117) |
2009 |
Jan
(141) |
Feb
(137) |
Mar
(121) |
Apr
(96) |
May
(207) |
Jun
(194) |
Jul
(210) |
Aug
(155) |
Sep
(91) |
Oct
(159) |
Nov
(123) |
Dec
(166) |
2010 |
Jan
(142) |
Feb
(79) |
Mar
(137) |
Apr
(126) |
May
(78) |
Jun
(69) |
Jul
(54) |
Aug
(161) |
Sep
(76) |
Oct
(98) |
Nov
(113) |
Dec
(95) |
2011 |
Jan
(101) |
Feb
(118) |
Mar
(74) |
Apr
(75) |
May
(32) |
Jun
(32) |
Jul
(39) |
Aug
(74) |
Sep
(48) |
Oct
(134) |
Nov
(133) |
Dec
(55) |
2012 |
Jan
(94) |
Feb
(143) |
Mar
(80) |
Apr
(75) |
May
(36) |
Jun
(46) |
Jul
(47) |
Aug
(51) |
Sep
(10) |
Oct
(36) |
Nov
(38) |
Dec
(19) |
2013 |
Jan
(26) |
Feb
(40) |
Mar
(48) |
Apr
(26) |
May
(34) |
Jun
(20) |
Jul
(18) |
Aug
(10) |
Sep
(8) |
Oct
(6) |
Nov
(64) |
Dec
(18) |
2014 |
Jan
(26) |
Feb
(42) |
Mar
(126) |
Apr
(122) |
May
(73) |
Jun
(33) |
Jul
(14) |
Aug
(20) |
Sep
(12) |
Oct
(33) |
Nov
(20) |
Dec
(49) |
2015 |
Jan
(79) |
Feb
(64) |
Mar
(49) |
Apr
(6) |
May
(9) |
Jun
(2) |
Jul
(27) |
Aug
|
Sep
|
Oct
(4) |
Nov
(1) |
Dec
(12) |
2016 |
Jan
(72) |
Feb
(9) |
Mar
(13) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
(4) |
2
|
3
(2) |
4
|
5
(7) |
6
(13) |
7
(24) |
8
(10) |
9
(5) |
10
(6) |
11
(13) |
12
(13) |
13
(5) |
14
|
15
(4) |
16
(4) |
17
(1) |
18
(2) |
19
(3) |
20
|
21
(4) |
22
(6) |
23
(2) |
24
|
25
(2) |
26
(2) |
27
(8) |
28
(4) |
29
(6) |
30
(6) |
31
(5) |
|
|
|
|
From: <owes@us...> - 2010-08-26 07:11:51
|
Revision: 4878 http://ipcop.svn.sourceforge.net/ipcop/?rev=4878&view=rev Author: owes Date: 2010-08-26 07:11:45 +0000 (Thu, 26 Aug 2010) Log Message: ----------- Jump to Pinholes Chain, regardless of policy and for all interfaces except for RED. Modified Paths: -------------- ipcop/trunk/src/scripts/puzzleFwRules.pl Modified: ipcop/trunk/src/scripts/puzzleFwRules.pl =================================================================== --- ipcop/trunk/src/scripts/puzzleFwRules.pl 2010-08-26 04:46:40 UTC (rev 4877) +++ ipcop/trunk/src/scripts/puzzleFwRules.pl 2010-08-26 07:11:45 UTC (rev 4878) @@ -987,16 +987,14 @@ &prepareRule("-A FW_IPCOP -i $FW::interfaces{$inIface}{'IFACE'} -j ADRFILTERINPUT"); &prepareRule("-A FW_IPCOP_FORWARD -i $FW::interfaces{$inIface}{'IFACE'} -j ADRFILTERFORWARD"); } - - # dmzholes for blue - &prepareRule("-A FW_IPCOP_FORWARD -i $FW::interfaces{$inIface}{'IFACE'} -j FW_PINHOLES"); } - elsif ($FW::interfaces{$inIface}{'COLOR'} eq "ORANGE_COLOR") { - # dmzholes for orange + if ($FW::interfaces{$inIface}{'COLOR'} ne "RED_COLOR") { + # add 'Pinholes' for all policies and all 'our' interfaces except for RED. + # Policy 'open' also needs Pinholes to be able to define a block or log rule. &prepareRule("-A FW_IPCOP_FORWARD -i $FW::interfaces{$inIface}{'IFACE'} -j FW_PINHOLES"); } - elsif ($FW::interfaces{$inIface}{'COLOR'} eq "RED_COLOR") { + else { # always allow ping on red my @serviceXYZ = &buildServiceParamsDefault('Ping', ""); @@ -1063,11 +1061,6 @@ } # forward END } # if ($ifacePolicies{$inIface}{'POLICY'} eq 'open') { - elsif ($FW::interfaces{$inIface}{'COLOR'} =~ /^GREEN_COLOR|IPSEC_COLOR|OVPN_COLOR$/) { - # add 'Pinholes' in case policy is 'half-open' or 'closed'. - # Blue and Orange are special and have pinholes included elsewhere - &prepareRule("-A FW_IPCOP_FORWARD -i $FW::interfaces{$inIface}{'IFACE'} -j FW_PINHOLES"); - } # default Logging (if enabled) + DROP/REJECT rules per interface $defaultRule = "-A FW_LOG -i $FW::interfaces{$inIface}{'IFACE'} -j"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <owes@us...> - 2010-08-26 04:46:46
|
Revision: 4877 http://ipcop.svn.sourceforge.net/ipcop/?rev=4877&view=rev Author: owes Date: 2010-08-26 04:46:40 +0000 (Thu, 26 Aug 2010) Log Message: ----------- Revert to previous image Modified Paths: -------------- IPCopDoc/trunk/de/admin/images/extalias.png Modified: IPCopDoc/trunk/de/admin/images/extalias.png =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |