HOME   ·Î±×ÀΠ  ȸ¿ø°¡ÀÔ
    
ȸ¿ø°¡ÀÔ
ºñ¹Ð¹øÈ£ ã±â ÀÚµ¿·Î±ä
ÀÌÀü°Ô½ÃÆÇ
   free_board
   °Ç°­°Ô½ÃÆÇ
   ¿À¶óŬDB
   Linux
   HTML/javascript
   Áú¹®°ú ´ä
È£¼­±â
   À̹ÌÁö°Ô½ÃÆÇ  
   °Ç°­°Ô½ÃÆÇ  
   À½¾ÇÀÚ·á  
   ¼ºÁØÀÌ °Ô½ÃÆÇ  
 Hit : 3999
 À̸§ : È£¼®  (211.¢½.74.31)
 ³¯Â¥ : 2006-08-25 14:01:32
 Á¦¸ñ : ½ºÆԾ½Å(SpamAssassin) ¼³Ä¡ ¹× »ç¿ë

°¡. ¼³Ä¡(Linux)

SpamAssassin - http://spamassassin.apache.org/

1. Download

[root@ihelpers src]# wget http://ftp.apache-kr.org/spamassassin/source/Mail-SpamAssassin-3.1.1.tar.gz

2. Pre-requisite

[root@ihelpers src]# tar xvfz Mail-SpamAssassin-3.1.1.tar.gz
[root@ihelpers src]# cd Mail-SpamAssassin-3.1.1
[root@ihelpers Mail-SpamAssassin-3.1.1]# perl Makefile.PL

~~~

REQUIRED module missing: Digest::SHA1
REQUIRED module missing: HTML::Parser
optional module missing: DB_File
optional module missing: Net::DNS
optional module missing: Mail::SPF::Query
optional module missing: IP::Country
optional module missing: Razor2
optional module missing: Net::Ident
optional module missing: IO::Socket::INET6
optional module missing: IO::Socket::SSL
optional module missing: Time::HiRes
optional module missing: DBI
optional module missing: LWP::UserAgent
optional module missing: HTTP::Date
optional module missing: Archive::Tar
optional module missing: IO::Zlib

[root@ihelpers src]# perl -MCPAN -e shell
cpan> o conf prerequisites_policy follow
prerequisites_policy follow

cpan> install Digest::SHA1 HTML::Parser DB_File Net::DNS Mail::SPF::Query IP::Country cpan> install Mail::Audit::Razor Net::Ident IO::Socket::INET6 IO::Socket::SSL Time::HiRes DBI LWP::UserAgent HTTP::Date Archive::Tar IO::Zlib

cpan> quit


À§¿Í °°Àº ¹æ¹ýÀ¸·Î ÇÊ¿äÇÑ ¸ðµâµéÀ» ¼³Ä¡ÇÏ°í ¹®Á¦°¡ µÇ´Â °ÍÀº ¾Æ·¡¿Í °°Àº ¹æ¹ýÀ¸·Î °³º°ÀûÀ¸·Î ¼³Ä¡ÇÏ½Ã¸é µË´Ï´Ù.

Perl Module Search - http://search.cpan.org/

[root@ihelpers src]# wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.11.tar.gz
[root@ihelpers src]# tar xvfz Digest-SHA1-2.11.tar.gz
[root@ihelpers Digest-SHA1-2.11]# perl Makefile.PL
[root@ihelpers Digest-SHA1-2.11]# make
[root@ihelpers Digest-SHA1-2.11]# make install

[root@ihelpers src]# wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Parser-3.51.tar.gz
[root@ihelpers src]# cd HTML-Parser-3.51
[root@ihelpers src]# tar xvfz HTML-Parser-3.51.tar.gz

[root@ihelpers HTML-Parser-3.51]# perl Makefile.PL
Warning: prerequisite HTML::Tagset 3 not found.
Writing Makefile for HTML::Parser

[root@ihelpers src]# wget http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.10.tar.gz
[root@ihelpers src]# tar xvfz HTML-Tagset-3.10.tar.gz
[root@ihelpers src]# cd HTML-Tagset-3.10
[root@ihelpers HTML-Tagset-3.10]# make
[root@ihelpers HTML-Tagset-3.10]# make install

[root@ihelpers HTML-Parser-3.51]# perl Makefile.PL
Writing Makefile for HTML::Parser
[root@ihelpers HTML-Parser-3.51]# make
[root@ihelpers HTML-Parser-3.51]# make install

3. Install

[root@ihelpers src]# tar xvfz Mail-SpamAssassin-3.1.1.tar.gz
[root@ihelpers src]# cd Mail-SpamAssassin-3.1.1
[root@ihelpers Mail-SpamAssassin-3.1.1]# perl Makefile.PL
What email address or URL should be used in the suspected-spam report
text for users who want more information on your filter installation?
(In particular, ISPs should change this to a local Postmaster contact)
default text: [the administrator of that system]

NOTE: settings for "make test" are now controlled using "t/config.dist".
See that file if you wish to customise what tests are run, and how.

checking module dependencies and their versions...

***************************************************************************
NOTE: the optional Razor2 (version 2.61) module is not installed.

Used to check message signatures against Vipul's Razor collaborative
filtering network. Razor has a large number of dependencies on CPAN
modules. Feel free to skip installing it, if this makes you nervous;
SpamAssassin will still work well without it.

More info on installing and using Razor can be found
at http://wiki.apache.org/spamassassin/InstallingRazor .

Net::Ident::_export_hooks() called too early to check prototype at /usr/lib/perl5/site_perl/5.8.0/Net/Ident.pm line 29.
optional module missing: Razor2

warning: some functionality may not be available,
please read the above report before continuing!

Writing Makefile for Mail::SpamAssassin
Makefile written by ExtUtils::MakeMaker 6.03


[root@ihelpers Mail-SpamAssassin-3.1.1]# make
[root@ihelpers Mail-SpamAssassin-3.1.1]# make test
[root@ihelpers Mail-SpamAssassin-3.1.1]# make install

4. Test

[root@ihelpers Mail-SpamAssassin-3.1.1]# spamassassin -t < sample-nonspam.txt
[root@ihelpers Mail-SpamAssassin-3.1.1]# spamassassin -t < sample-spam.txt


³ª. SpamAssassin Daemon ( 'spamd' Daemon ) ½ÇÇà - sendmail

1. »ç¿ëÀÚ Ãß°¡

groupadd spamd
useradd -g spamd spamd

2. ½ºÅ©¸³Æ® ¹× ¼­ºñ½º µî·Ï

vi /etc/sysconfig/spamassassin
# Hint : if you want to enable SpamAssassin debugging
# (the debug output goes to /var/log/maillog) then use :
# SPAMDOPTIONS="-x -u spamd -H /home/spamd -d -D"
# Don't leave debugging turned on unnecessarily though,
# because it will slow down a busy server.
#
# Otherwise, for normal operation (debugging disabled) use :
SPAMDOPTIONS="-x -u spamd -H /home/spamd -d"


[root@ihelpers init.d]# cp redhat-rc-script.sh /etc/rc.d/init.d/spamd
[root@ihelpers init.d]# chkconfig --add spamd
[root@ihelpers init.d]# vi /etc/mail/spamassassin/local.cf
[root@ihelpers init.d]# /etc/rc.d/init.d/spamd start

procmailÀº ¼ö½Å¸ÞÀÏÀ» spamc¿¡ Àü´ÞÇÏ°í spamc´Â µ¥¸ó¿¡ ¿¬°áÇÏ¿© À̸ÞÀÏÀ» È®ÀÎÇϵµ·Ï ÇÑ´Ù. spamd µ¥¸óÀº Ç×»ó ½ÇÇà»óÅ¿¡ ÀÖÀ¸¸ç Àü´Þ¹ÞÀº ¸ÞÀÏÀ» ½ºÄµÇØ ½ºÆÔÀÎ °æ¿ì º°µµÀÇ ½ºÆÔÇ¥½Ã¸¦ ÇÑ´Ù.

3. procmailrc ¼³Á¤

[root@ihelpers root]# cat /etc/procmailrc
#
# SpamAssassin procmail
#
OPPRIVS=yes
:0fw
* < 256000
| /usr/bin/spamc


´Ù. ȯ°æ¼³Á¤

1. spamassassin ¼³Á¤ÆÄÀÏ Ãß°¡ ¹× ¼öÁ¤

[root@ihelpers root]# cat /etc/mail/spamassassin/local.cf

# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# Only a small subset of options are listed below
#
###########################################################################

# Add *****SPAM***** to the Subject header of spam e-mails
#
rewrite_header Subject *****SPAM*****

# Save spam messages as a message/rfc822 MIME attachment instead of
# modifying the original message (0: off, 2: use text/plain instead)
#
report_safe 0

# Language
#
ok_locales en ko
ok_languages en ko

# Set which networks or hosts are considered 'trusted' by your mail
# server (i.e. not spammers)
#
# trusted_networks 212.17.35.

# Set file-locking method (flock is not safe over NFS, but is faster)
#
lock_method flock

# Set the threshold at which a message is considered spam (default: 5.0)
#
required_score 8.0

# Use Bayesian classifier (default: 1)
#
use_bayes 1

# Bayesian classifier auto-learning (default: 1)
#
bayes_auto_learn 1

# Set headers which may provide inappropriate cues to the Bayesian
# classifier
#
bayes_ignore_header X-Bogosity
bayes_ignore_header X-Spam-Flag
bayes_ignore_header X-Spam-Status

# Rules for all senders
score HEADER_8BITS 0
score HTML_COMMENT_8BITS 0
score SUBJ_FULL_OF_8BITS 0

2. µ¥¸ó Àç ½ÇÇà

[root@ihelpers root]# /etc/rc.d/init.d/spamd restart
Shutting down spamd: [ È®ÀÎ ]
Starting spamd: [ È®ÀÎ ]

3. SpamAssassin Configuration Tool

http://www.yrex.com/spam/spamconfig.php

¶ó. ½ºÆÔ ÇÊÅ͸µ °á°ú È®ÀÎ

1. Outlook ¿¡¼­ ¸ÞÀÏ È®ÀÎ

½ºÆԾ½Å(SpamAssassin)

2. ½ºÆÔ ¸ÞÀÏ ³»¿ë

return-Path: <nicegir331s@hanmail.net>
X-Spam-Flag: YES
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on ihelpers
X-Spam-Level: ****************************************
X-Spam-Status: Yes, score=40.4 required=6.0 tests=DNS_FROM_RFC_POST,
FORGED_IMS_HTML,FORGED_IMS_TAGS,FORGED_MSGID_YAHOO,FORGED_MUA_IMS,
HEAD_ILLEGAL_CHARS,HTML_FONT_BIG,HTML_MESSAGE,HTML_MIME_NO_HTML_TAG,
MIME_BOUND_DD_DIGITS,MIME_HTML_ONLY,MIME_HTML_ONLY_MULTI,
MISSING_MIMEOLE,MPART_ALT_DIFF,MSGID_SPAM_CAPS,MSGID_YAHOO_CAPS,
RCVD_IN_DSBL,RCVD_IN_SBL,RCVD_IN_WHOIS_INVALID,RCVD_IN_XBL,
RCVD_NUMERIC_HELO,REPTO_QUOTE_IMS,REPTO_QUOTE_YAHOO,SPF_SOFTFAIL,
SUBJ_ILLEGAL_CHARS,UNPARSEABLE_RELAY autolearn=unavailable
version=3.1.1
X-Spam-Report:
* 1.3 MSGID_YAHOO_CAPS Message-ID has
ALLCAPS@yahoo.com
* 3.6 MIME_BOUND_DD_DIGITS Spam tool pattern in MIME boundary
* 3.5 MSGID_SPAM_CAPS Spam tool Message-Id: (caps variant)
* 1.5 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail)
* [SPF failed: Please see
http://www.openspf.org/why.html?sender=nicegir331s%40hanmail.net&ip=61.149.130.107&receiver=ihelpers]
* 3.4 SUBJ_ILLEGAL_CHARS Subject: has too many raw illegal characters
* 1.3 RCVD_NUMERIC_HELO Received: contains an IP address used for HELO
* 1.5 HEAD_ILLEGAL_CHARS Headers have too many raw illegal characters
* 0.0 UNPARSEABLE_RELAY Informational: message has unparseable relay
* lines
* 0.0 HTML_MESSAGE BODY: HTML included in message
* 0.3 HTML_FONT_BIG BODY: HTML tag for a big font size
* 0.1 MPART_ALT_DIFF BODY: HTML and text parts are different
* 0.0 MIME_HTML_ONLY BODY: Message only has text/html MIME parts
* 3.1 RCVD_IN_XBL RBL: Received via a relay in Spamhaus XBL
* [61.149.130.107 listed in sbl-xbl.spamhaus.org]
* 1.8 RCVD_IN_DSBL RBL: Received via a relay in list.dsbl.org
* [<
http://dsbl.org/listing?61.149.130.107>]
* 2.2 RCVD_IN_WHOIS_INVALID RBL: CompleteWhois: sender on invalid IP
* block
* [61.149.130.107 listed in combined-HIB.dnsiplists.completewhois.com]
* 2.7 RCVD_IN_SBL RBL: Received via a relay in Spamhaus SBL
* [61.149.130.107 listed in sbl-xbl.spamhaus.org]
* 1.4 DNS_FROM_RFC_POST RBL: Envelope sender in
* postmaster.rfc-ignorant.org
* 0.5 HTML_MIME_NO_HTML_TAG HTML-only message, but there is no HTML tag
* 0.0 MIME_HTML_ONLY_MULTI Multipart message only has text/html MIME
* parts
* 1.4 MISSING_MIMEOLE Message has X-MSMail-Priority, but no X-MimeOLE
* 1.2 FORGED_MUA_IMS Forged mail pretending to be from IMS
* 0.0 REPTO_QUOTE_IMS IMS doesn't do quoting like this
* 2.2 REPTO_QUOTE_YAHOO Yahoo! doesn't do quoting like this
* 2.3 FORGED_IMS_HTML IMS can't send HTML message only
* 3.2 FORGED_MSGID_YAHOO Message-ID is forged, (yahoo.com)
* 2.1 FORGED_IMS_TAGS IMS mailers can't send HTML in this format
Received: from 61.149.130.107 ([61.149.130.107])
by mail.ihelpers.co.kr (8.12.8/8.12.8) with SMTP id k3I6vd13010844;
Tue, 18 Apr 2006 15:57:41 +0900
Received: from 16.206.104.64 by ; Tue, 18 Apr 2006 03:44:36 -0300
Message-ID: <YQHTHNXMPQMJBQZSBQRNCEBIP@yahoo.com>
From: "°íÀº¹Ì" <nicegir331s@hanmail.net>
Reply-To: "Áö¼Ò¿¬" <nicegir331s@hanmail.net>
To: jinjiny@ihelpers.co.kr
Subject: *****SPAM***** ±ÝÀ¶~¾÷ü ¸¹½À´Ï´Ù ±Ý¸®½Î°í ¾ÈÀüÇÑ°÷À» ¼±ÅÃÇϼ¼¿ä
Date: Tue, 18 Apr 2006 10:46:36 +0400
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="--969256130084464"
X-Priority: 3
X-MSMail-Priority: Normal
X-Spam-Prev-Subject: ±ÝÀ¶~¾÷ü ¸¹½À´Ï´Ù ±Ý¸®½Î°í ¾ÈÀüÇÑ°÷À» ¼±ÅÃÇϼ¼¿ä
Status:

----969256130084464
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable


=C1=F8=BF=F8B-6=B</P></TD></TR></TBODY></TABLE></P></DIV> <SCRIPT language=JavaScript src="/common/js/viewer-1.1.2.1.js"></SCRIPT> <SCRIPT type=text/javascript> var viewer_image_url = "http://blogimgs.naver.com/blog20/blog/layout_photo/viewer/"; var photo = new PhotoLayer(parent.parent.parent); photo.Initialized(); window.onunload = function() { photo.oPhotoFrame.doFrameMainClose(); }.bind(this); </SCRIPT></span> <!-- Å×·¯ ÅÂ±× ¹æÁö¿ë --> </xml></xmp><a href=""></a><a href=''></a> </td></tr></table></td> </tr> </table> </td> </tr> </table> <!-- ÄÚ¸àÆ® ³»¿ë --> <!-- ¸µÅ© --> <table align=center width=100% align=center border=0 cellpadding=0 cellspacing=0> <tr> <td width=90% height=30> <a href="./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&page=2"><img src='./bbs/skin/board/mando_board/list.jpg' border='0'></a> </td> <td width=10% align=right> </td> </tr> </table> <table width='100%' align=center><tr><td align=center> <table align=center width=100%> <tr> <form name=fcategory method=get action='./'> <input type=hidden name=doc value='bbs/gnuboard.php'> <td width=50%> <select name=ca_id onchange="location='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=ca_id&stext='+this.value;" class=select> <option value=''>Àüü</option> <option value='1'>ÀϹÝ</option> <option value='2'>Áú¹®</option> <option value='3'>´äº¯</option> <option value='4'>¾Ë¸²</option> </select> </td> </form> <td width=50% align=right><span class=etc>°Ô½Ã¹° 121°Ç</span> </td> </tr> </table> <table width=100% border=0 cellspacing=0 cellpadding=3 > <tr><td height=1 bgcolor=#999999 colspan=8></td></tr> <form name=frmgblist method='post' action='gbdeleteall.php'> <tr align=center height=30 > <td width=50 bgcolor=#EEEEEE> <input type=hidden name=bo_table value='PG_LINUX'> <input type=hidden name=sselect value=''> <input type=hidden name=stext value=''> <input type=hidden name=section value=''> <input type=hidden name=page value='2'> <a href='./?doc=bbs/gnuboard.php&ssort=wr_num&sorder=asc&sselect=&stext=&page=2&bo_table=PG_LINUX&soperator='>¹øÈ£</a></td> <td width=40 bgcolor=#EEEEEE><a href='./?doc=bbs/gnuboard.php&ssort=ca_id&sorder=asc&sselect=&stext=&page=2&bo_table=PG_LINUX&soperator='>ºÐ·ù</a></td> <td width='' bgcolor=#EEEEEE><a href='./?doc=bbs/gnuboard.php&ssort=wr_subject&sorder=asc&sselect=&stext=&page=2&bo_table=PG_LINUX&soperator='>Á¦¸ñ</a></td> <td width=100 bgcolor=#EEEEEE><table align="center" border="0" cellpadding="0" cellspacing="0"> <tr> <td align=center width=100> <a href='./?doc=bbs/gnuboard.php&ssort=wr_name&sorder=asc&sselect=&stext=&page=2&bo_table=PG_LINUX&soperator='>À̸§</a> </td> </tr> </table> </td> <td width=60 bgcolor=#EEEEEE><a href='./?doc=bbs/gnuboard.php&ssort=wr_datetime&sorder=asc&sselect=&stext=&page=2&bo_table=PG_LINUX&soperator='>³¯Â¥</a></td> <td width=30 bgcolor=#EEEEEE><a href='./?doc=bbs/gnuboard.php&ssort=wr_hit&sorder=desc&sselect=&stext=&page=2&bo_table=PG_LINUX&soperator='>ÀÐÀ½</a></td> </tr><tr><td height=1 bgcolor=#999999 colspan=8></td></tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>85</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=131'>Nagios¼³Ä¡¹®¼­ LinuxTip [¼­¹ö¸ð´ÏÅ͸µ sms]</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer2', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer2', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>09-03-04</td> <td>3859</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>97</td> <td>ÀϹÝ</td> <td align=left>   <img src='bbs/skin/board/mando_board/icon_link.gif' align='absmiddle'> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=152'>¼­ºê¹öÁ¯ ¹öÁ¯°ü¸®Åø »ç¿ëÇϱâ</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer3', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer3', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>10-01-27</td> <td>3869</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>99</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=155'>¸®´ª½º ¼­¹ö°ü¸®¸¦ À§ÇÑ SSUÈ°¿ë¹ý</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer4', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer4', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>10-02-18</td> <td>3876</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>98</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=153'>ping ¸í·É¾î·Î ¼­¹ö¸¦ Á¡°ËÇÑ´Ù</a> <span style='font-size:8pt;'>(1)</span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer5', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer5', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>10-02-17</td> <td>3910</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>95</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=150'>¹é¾÷È­ÀÏ CD ·Î ±Á´Â¹æ¹ý</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer6', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer6', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>10-01-18</td> <td>3942</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>100</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=157'>iptables ¸¦ ÀÌ¿ëÇÑ ¾ÆÀÌÇÇ,Æ÷Æ® Â÷´Ü</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer7', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer7', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>10-04-09</td> <td>3950</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25><font color=crimson><b>¡æ</b></font></td> <td>ÀϹÝ</td> <td align=left>   <img src='bbs/skin/board/mando_board/icon_link.gif' align='absmiddle'> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=52'>½ºÆԾ½Å(SpamAssassin) ¼³Ä¡ ¹× »ç¿ë</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer8', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer8', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>06-08-25</td> <td>4000</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>90</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=138'>°ø°³ÇÁ·ÎÁ§Æ® GNU , GPL LICENSE</a> <span style='font-size:8pt;'>(1)</span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer9', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer9', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>09-03-23</td> <td>4104</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>94</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=149'>clientmqueue ½ÎÀÌÁî Áõ°¡½Ã Á¶Ä¡¹æ¹ý</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer10', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer10', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>09-12-23</td> <td>4104</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>92</td> <td>ÀϹÝ</td> <td align=left>      <img src='bbs/skin/board/mando_board/icon_reply.gif' align='absmiddle'> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=143'>MRTG ¼³Ä¡ ¼Ö¶ó¸®½º ,°ø°³ ¼Ò½º Æ®·¡ÇÈ °ü¸® Åø MRTG 100% È°¿ëÇϱâ</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer11', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer11', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>09-04-12</td> <td>4171</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25> </td> <td>ÀϹÝ</td> <td align=left>      <img src='bbs/skin/board/mando_board/icon_reply.gif' align='absmiddle'> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=147'>MRTG ¼³Ä¡ ¼Ö¶ó¸®½º</a> <span style='font-size:8pt;'>(1)</span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer12', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer12', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>09-09-11</td> <td>4201</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>86</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=132'>rrdtool ±×·¡ÇÁ snmp ÀÌ¿ë very good</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer13', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer13', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>09-03-06</td> <td>4214</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>42</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=56'>¼Ö¶ó¸®½º ½Ã½ºÅÛ Á¤º¸ ¸í·É¾î Á¤¸®</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer14', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer14', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>06-12-10</td> <td>4235</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>73</td> <td>ÀϹÝ</td> <td align=left>   <img src='bbs/skin/board/mando_board/icon_link.gif' align='absmiddle'> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=106'>phpMyAdmin ¼³Ä¡¹ý 2.10.1 ¹öÁ¯</a> <span style='font-size:8pt;'>(1)</span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer15', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer15', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>08-10-15</td> <td>4294</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> <tr align=center onMouseOver=this.style.backgroundColor='#fafafa' onMouseOut=this.style.backgroundColor=''> <td height=25>27</td> <td>ÀϹÝ</td> <td align=left>   <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=2&wr_id=36'>Server/Mail/qmail_install</a> <span style='font-size:8pt;'></span> <img src='bbs/skin/board/mando_board/icon_hot.gif' align='absmiddle'> </td> <td align=center nowrap> <span onmousedown="gblayeraction(event, 'gblayer16', 'visible')" style='cursor:hand;'><span title='hosuck'><span class=name>È£¼®</span></span></span><script language='JavaScript'>gblayer('gblayer16', 'hosuck', 'È£¼®', 'hosuck99@a.com', '', '1', './bbs');</script> </td> <td>06-03-28</td> <td>4297</td> </tr> <tr> <td colspan=6 height=1 background='./bbs/skin/board/mando_board/line_width.gif'></td> </tr> </form> <tr><td height=1 bgcolor=#999999 colspan=6></td></tr> </table> <table width=100%> <tr> <td width=50%> </td> <form name=fsearch method=get action='./'> <input type=hidden name=doc value='bbs/gnuboard.php'> <input type=hidden name=bo_table value='PG_LINUX'> <td width=50% align=right> <select name=sselect class=select> <option value='wr_subject|wr_content'>Á¦¸ñ+³»¿ë</option> <option value='wr_name'>À̸§</option> <option value='wr_num'>¹øÈ£</option> <option value='wr_datetime'>³¯Â¥</option> <option value='wr_subject'>Á¦¸ñ</option> <option value='wr_content'>³»¿ë</option> <option value='wr_hit'>ÀÐÀ½</option> </select><input type=text name=stext size=10 required itemname='°Ë»ö¾î' value='' class=input><input type=submit value='°Ë»ö' class=button> </td> </form> </tr> </table> <table align=center width=100%> <tr> <td align=right> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=1'><img src='./bbs/skin/board/heohero_board/img/first_prev.gif' width='14' height='12' border=0 alt='óÀ½' align='absmiddle'></a><img src='img/blank.gif' width='2'><a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=1'><img src='./bbs/skin/board/heohero_board/img/prev.gif' width='14' height='12' border=0 alt='ÀÌÀü' align='absmiddle'></a>  <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=1'><span class='page_count'>[1]</span></a> <span class='page_count_over'>2</span> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=3'><span class='page_count'>[3]</span></a> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=4'><span class='page_count'>[4]</span></a> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=5'><span class='page_count'>[5]</span></a> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=6'><span class='page_count'>[6]</span></a> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=7'><span class='page_count'>[7]</span></a> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=8'><span class='page_count'>[8]</span></a> <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=9'><span class='page_count'>[9]</span></a>  <a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=3'><img src='./bbs/skin/board/heohero_board/img/next.gif' width='14' height='12' border=0 alt='´ÙÀ½' align='absmiddle'></a><img src='img/blank.gif' width='2'><a href='./?doc=bbs/gnuboard.php&bo_table=PG_LINUX&sselect=&stext=&ssort=wr_hit&sorder=asc&soperator=&page=9'><img src='./bbs/skin/board/heohero_board/img/end_next.gif' width='14' height='12' border=0 alt='¸Ç³¡' align='absmiddle'></a> </td> </tr> </table> </td></tr></table>  </td> </tr> </table> <!-- °ø¹é --> <table width=100% height=5><tr><td></td></tr></table> <table width='100%' cellpadding=0 cellspacing=0> <tr><td height=1 bgcolor=#8C8C8C></td></tr> <tr> <td height=30 align=right><font color=#9B9B9B>Copyright © <B>zenos.pe.kr</B>. All rights reserved.</font> </td> </tr> </table> </td></tr></table> <script language='JavaScript' src='./wrest.js'></script> <!-- »ç¿ë skin board : bbs/skin/board/mando_board outlogin : bbs/skin/outlogin/basic member : bbs/skin/member/basic latest : bbs/skin/latest/basic vote : bbs/skin/vote/basic --> </body> </html>