<![CDATA[Messages posted by "Yuno"]]> /hvaonline/posts/listByUser/126801.html JForum - http://www.jforum.net xin các anh(chị) chỉ giáo, tạo 1 server /hvaonline/posts/preList/44253/273344.html#273344 /hvaonline/posts/preList/44253/273344.html#273344 GMT Cách học Tiếng Anh Hiệu quả nhất? /hvaonline/posts/preList/41753/273284.html#273284 /hvaonline/posts/preList/41753/273284.html#273284 GMT Chạy nodejs như 1 service trong Centos 5.8 Code:
command=/usr/local/bin/node /usr/local/lib/node_modules/testserver.js
]]>
/hvaonline/posts/preList/44217/273249.html#273249 /hvaonline/posts/preList/44217/273249.html#273249 GMT
Chạy nodejs như 1 service trong Centos 5.8 Code:
[supervisord]
http_port=/var/tmp/supervisor.sock ; (default is to run a UNIX domain socket server)
;http_port=127.0.0.1:9001  ; (alternately, ip_address:port specifies AF_INET)
;sockchmod=0700              ; AF_UNIX socketmode (AF_INET ignore, default 0700)
;sockchown=nobody.nogroup     ; AF_UNIX socket uid.gid owner (AF_INET ignores)
;umask=022                   ; (process file creation umask;default 022)
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
logfile_maxbytes=50MB       ; (max main logfile bytes b4 rotation;default 50MB)
logfile_backups=10          ; (num of main logfile rotation backups;default 10)
loglevel=info               ; (logging level;default info; others: debug,warn)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
nodaemon=false              ; (start in foreground if true;default false)
minfds=1024                 ; (min. avail startup file descriptors;default 1024)
minprocs=200                ; (min. avail process descriptors;default 200)

;nocleanup=true              ; (don't clean up tempfiles at start;default false)
;http_username=user          ; (default is no username (open system))
;http_password=123           ; (default is no password (open system))
;childlogdir=/tmp            ; ('AUTO' child log dir, default $TEMP)
;user=chrism                 ; (default is current user, required if root)
;directory=/tmp              ; (default is not to cd during start)
;environment=KEY=value       ; (key value pairs to add to environment)

[supervisorctl]
serverurl=unix:///var/tmp/supervisor.sock ; use a unix:// URL  for a unix socket
;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
;username=chris              ; should be same as http_username if set
;password=123                ; should be same as http_password if set
;prompt=mysupervisor         ; cmd line prompt (default "supervisor")

; The below sample program section shows all possible program subsection values,
; create one or more 'real' program: sections to be able to control them under
; supervisor.

[program:nodejs]
command=node /usr/local/lib/node_modules/testserver.js  ; the program (relative uses PATH, can take args)
process_name=%node
;priority=999                ; the relative start priority (default 999)
autostart=true              ; start at supervisord start (default: true)
autorestart=true            ; retstart at unexpected quit (default: true)
;startsecs=10                ; number of secs prog must stay running (def. 10)
;startretries=3              ; max # of serial start failures (default 3)
;exitcodes=0,2               ; 'expected' exit codes for process (default 0,2)
;stopsignal=QUIT             ; signal used to kill process (default TERM)
;stopwaitsecs=10             ; max num secs to wait before SIGKILL (default 10)
;user=chrism                 ; setuid to this UNIX account to run the program
log_stdout=true             ; if true, log program stdout (default true)
log_stderr=true             ; if true, log program stderr (def false)
logfile=/var/log/node.log    ; child log path, use NONE for none; default AUTO
logfile_maxbytes=1MB        ; max # logfile bytes b4 rotation (default 50MB)
;logfile_backups=10          ; # of logfile backups (default 10)
supervisord trong init.d Code:
#!/bin/bash
#
# supervisord   This scripts turns supervisord on
#
# Author:       Mike McGrath <mmcgrath@redhat.com> (based off yumupdatesd)
#
# chkconfig:    - 95 04
#
# description:  supervisor is a process control utility.  It has a web based
#               xmlrpc interface as well as a few other nifty features.
# processname:  supervisord
# config: /etc/supervisord.conf
# pidfile: /var/run/supervisord.pid
#

# source function library
. /etc/rc.d/init.d/functions

RETVAL=0

start() {
        echo -n $"Starting supervisord: "
        daemon supervisord
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch /var/lock/subsys/supervisord
}

stop() {
        echo -n $"Stopping supervisord: "
        killproc supervisord
        echo
        [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/supervisord
}

restart() {
        stop
        start
}

case "$1" in
  start)
        start
        ;;
  stop) 
        stop
        ;;
  restart|force-reload|reload)
        restart
        ;;
  condrestart)
        [ -f /var/lock/subsys/supervisord ] && restart
        ;;
  status)
        status supervisord
        RETVAL=$?
        ;;
  *)
        echo $"Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
        exit 1
esac

exit $RETVAL
Chân thành cám ơn !]]>
/hvaonline/posts/preList/44217/273222.html#273222 /hvaonline/posts/preList/44217/273222.html#273222 GMT
Chạy nodejs như 1 service trong Centos 5.8 /hvaonline/posts/preList/44217/273162.html#273162 /hvaonline/posts/preList/44217/273162.html#273162 GMT Chạy nodejs như 1 service trong Centos 5.8 Code:
#!/bin/sh
#
# nodejs - this script starts and stops the nodejs
# chkconfig:   - 85 15 
# description:  node /usr/local/lib/node_modules/testserver.js
#               
# processname: node
# config:      
# pidfile:     

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0

nodejs="/usr/local/bin/node"
prog=$(basename $nodejs)

NODEJS_CONF_FILE="/usr/local/lib/node_modules/testserver.js"

lockfile=/var/lock/subsys/nodejs

start() {
    [ -x $nodejs ] || exit 5
    [ -f $NODEJS_CONF_FILE ] || exit 6
    echo -n $"Starting $prog: "
    supervisor $nodejs $NODEJS_CONF_FILE  # hoac node $NODEJS_CONF_FILE
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}

stop() {
    echo -n $"Stopping $prog: "
    killall -9 $prog
    killall -9 nodejs
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}

restart() {
    configtest || return $?
    stop
    start
}

reload() {
    configtest || return $?
    echo -n $"Reloading $prog: "
    killall -9 $nodejs
    killall -9 nodejs
    RETVAL=$?
    echo
}

force_reload() {
    restart
}

configtest() {
  $nodejs $NODEJS_CONF_FILE
}

rh_status() {
    status $prog
}

rh_status_q() {
    rh_status >/dev/null 2>&1
}

case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
            ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
        exit 2
esac
]]>
/hvaonline/posts/preList/44217/273137.html#273137 /hvaonline/posts/preList/44217/273137.html#273137 GMT
Giúp em đưa ra giải pháp thiết kế mô hình mạng về mua Switch và Router /hvaonline/posts/preList/38779/237655.html#237655 /hvaonline/posts/preList/38779/237655.html#237655 GMT Mỗi tháng một công cụ http://sourceforge.net/search/?q=iperf Tutorial : http://openmaniak.com/iperf.php ]]> /hvaonline/posts/preList/10498/227099.html#227099 /hvaonline/posts/preList/10498/227099.html#227099 GMT Cacti không hiển thị được graph.
Nếu chưa chạy được poller.php thì cmd.php cũng không thực thi được. Bác quata giúp với.]]>
/hvaonline/posts/preList/34738/214242.html#214242 /hvaonline/posts/preList/34738/214242.html#214242 GMT
Cacti không hiển thị được graph. Check cacti's poller First make sure that crontab always shows poller.php. This program will either call cmd.php, the PHP based poller _or_ cactid, the fast alternative, written in C. Define the poller you're using at Settings, Poller. Cactid has to be implemented seperately, it does not come with cacti by default. Now, clear ./log/cacti.log (or rename it to get a fresh start) Then, change Settings, Poller Logging Level to DEBUG for _one_ polling cycle. You may rename this log as well to avoid more stuff added to it with subsequent polling cycles. Now, find the host/data source in question. The Host[<id>] is given numerically, the <id> being a specific number for that host. Find this <id> from the Devices menue when editing the host: The url contains a string like id=<id> Check, whether the output is as expected. If not, check your script (e.g. /full/path/to/perl). If ok, proceed to next step This procedure may be replaced by running the poller manually for the failing host only. To do so, you need the <id>, again. If you're using cmd.php, set the DEBUG logging level as defined above and run php -q cmd.php <id> <id> If you're using cactid, you may override logging level when calling the poller: ./cactid --verbosity=5 <id> <id> All output is printed to STDOUT in both cases. This procdure allows for repeated tests without waiting for the next polling interval. And there's no need to manually search for the failing host between hundreds of lines of output.   ]]> /hvaonline/posts/preList/34738/214087.html#214087 /hvaonline/posts/preList/34738/214087.html#214087 GMT Ai dùng qua USB 3G rồi tư vấn giúp mình với ? /hvaonline/posts/preList/34713/214042.html#214042 /hvaonline/posts/preList/34713/214042.html#214042 GMT Cacti không hiển thị được graph. Code:
RRDTool Command:

c:/cacti/rrdtool.exe graph - \
--imgformat=PNG \
--start=-86400 \
--end=-300 \
--title="My windows - Used Space - C: Label:Window" \
--rigid \
--base=1024 \
--height=120 \
--width=500 \
--alt-autoscale-max \
--lower-limit=0 \
--vertical-label="bytes" \
--slope-mode \
DEF:a="C\:/AppServ/www/cacti/rra/my_windows_hdd_total_49.rrd":hdd_total:AVERAGE \
DEF:b="C\:/AppServ/www/cacti/rra/my_windows_hdd_total_49.rrd":hdd_used:AVERAGE \
AREA:a#002A97:"Total"  \
GPRINT:a:LAST:"Current\:%8.2lf %s"  \
GPRINT:a:AVERAGE:"Average\:%8.2lf %s"  \
GPRINT:a:MAX:"Maximum\:%8.2lf %s\n"  \
AREA:b#F51D30:"Used"  \
GPRINT:b:LAST:" Current\:%8.2lf %s"  \
GPRINT:b:AVERAGE:"Average\:%8.2lf %s"  \
GPRINT:b:MAX:"Maximum\:%8.2lf %s\n" 

RRDTool Says:

ERROR: opening 'C:/AppServ/www/cacti/rra/my_windows_hdd_total_49.rrd': No such file or directory
Phân quyền trên thư mục rra đều full control hết rồi. mà có chỗ này không hiểu có đúng không nữa Code:
DEF:a="C\:/AppServ/www/cacti/rra/my_windows_hdd_total_49.rrd":hdd_total:AVERAGE \
DEF:b="C\:/AppServ/www/cacti/rra/my_windows_hdd_total_49.rrd":hdd_used:AVERAGE \
Trong thư mục rra có 1 file duy nhất là ".placeholder". Cái log lúc trước không còn lỗi nữa rồi.]]>
/hvaonline/posts/preList/34738/214039.html#214039 /hvaonline/posts/preList/34738/214039.html#214039 GMT
Cacti không hiển thị được graph. Code:
RRDTool Command:

c:/cacti/rrdtool.exe graph - \
--imgformat=PNG \
--start=-86400 \
--end=-300 \
--title="My win - Used Space - Physical Memory" \
--rigid \
--base=1024 \
--height=120 \
--width=500 \
--alt-autoscale-max \
--lower-limit=0 \
--vertical-label="bytes" \
--slope-mode \
DEF:a="C\:/AppServ/www/cacti/rra/my_win_hdd_total_28.rrd":hdd_total:AVERAGE \
DEF:b="C\:/AppServ/www/cacti/rra/my_win_hdd_total_28.rrd":hdd_used:AVERAGE \
AREA:a#002A97:"Total"  \
GPRINT:a:LAST:"Current\:%8.2lf %s"  \
GPRINT:a:AVERAGE:"Average\:%8.2lf %s"  \
GPRINT:a:MAX:"Maximum\:%8.2lf %s\n"  \
AREA:b#F51D30:"Used"  \
GPRINT:b:LAST:" Current\:%8.2lf %s"  \
GPRINT:b:AVERAGE:"Average\:%8.2lf %s"  \
GPRINT:b:MAX:"Maximum\:%8.2lf %s\n" 

RRDTool Says:
Tôi đã làm rất kỹ theo hướng dẫn của cacti, nhưng không hiểu sao vẫn không hiển thĩ được graph.]]>
/hvaonline/posts/preList/34738/213994.html#213994 /hvaonline/posts/preList/34738/213994.html#213994 GMT
Cacti không hiển thị được graph.

Setting của cacti
RDD tools:
Cacti log file
Poller Cache
quata copy link hình vào trình duyệt xem dùm yuno nhé, ko hiểu sao thẻ img lại không có tác dụng. :( ]]>
/hvaonline/posts/preList/34738/213627.html#213627 /hvaonline/posts/preList/34738/213627.html#213627 GMT
Cacti không hiển thị được graph. /hvaonline/posts/preList/34738/213581.html#213581 /hvaonline/posts/preList/34738/213581.html#213581 GMT Cacti không hiển thị được graph.

quanta wrote:
Kiểm tra lại một lần nữa để chắc chắn rằng: - snmpd đã chạy - firewall đã tắt 
Sorry quata vì 2 bữa nay làm phiền anh, đúng là firewall đang on và snmp đã chạy nhưng chưa có set trong phần services. Nhưng sau khi đã làm những bước trên hoàn chỉnh thì khi mình create host mới thì bị lỗi sau : Code:
Fatal error: Maximum execution time of 30 seconds exceeded in C:\AppServ\www\cacti\lib\functions.php on line 1221
Khi mình back lại trang trước thì nó lại báo save seccessful. Mình vào lại host mới tạo và click vào run this data query in debug mode trong mục Khi mình back lại trang trước thì nó lại báo save seccessful. Mình vào lại host mới tạo và click vào run this data query in debug mode trong mục Code:
Data Query [SNMP - Get Mounted Partitions] 	
Reload Associated Query
This data query returned 0 rows, perhaps there was a problem executing this data query. You can run this data query in debug mode to get more information.
nó lại bị lỗi Code:
Fatal error: Maximum execution time of 30 seconds exceeded in C:\AppServ\www\cacti\lib\functions.php on line 1221
Trường status của host vẫn bị Unknow. Không biết trong file php đã báo lỗi sai chỗ nào nữa vì tôi không rành php, mà những file đó hoàn toàn là của nhà sản xuất. Mong quata giúp đỡ và hướng dẫn cách giải quyết. ]]>
/hvaonline/posts/preList/34738/213488.html#213488 /hvaonline/posts/preList/34738/213488.html#213488 GMT
Cacti không hiển thị được graph.

quanta wrote:
snmpwalk.exe -v 2c -c public localhost system? 
nó báo : Timeout: No Response from localhost. Tôi đang cài cacti-0.8.6j, do bản này là bản mới nhất nên không biết có gì lỗi hay không? hay do net-snmp, rrdtools không hơp với version này. Tôi dùng hoàn toàn là những bản mới nhất.]]>
/hvaonline/posts/preList/34738/213457.html#213457 /hvaonline/posts/preList/34738/213457.html#213457 GMT
Cacti không hiển thị được graph. Code:
C:\usr\bin>snmpwalk.exe
No hostname specified. == ==> cái này là sao nhỉ ? chưa có host là sao, và phải vào đâu để cấu hình ??
USAGE: snmpwalk [OPTIONS] AGENT [OID]

  Version:  5.5
  Web:      http://www.net-snmp.org/
  Email:    net-snmp-coders@lists.sourceforge.net

OPTIONS:
  -h, --help            display this help message
  -H                    display configuration file directives understood
  -v 1|2c|3             specifies SNMP version to use
  -V, --version         display package version number
SNMP Version 1 or 2c specific
  -c COMMUNITY          set the community string
SNMP Version 3 specific
  -a PROTOCOL           set authentication protocol (MD5|SHA)
  -A PASSPHRASE         set authentication protocol pass phrase
  -e ENGINE-ID          set security engine ID (e.g. 800000020109840301)
  -E ENGINE-ID          set context engine ID (e.g. 800000020109840301)
  -l LEVEL              set security level (noAuthNoPriv|authNoPriv|authPriv)
  -n CONTEXT            set context name (e.g. bridge1)
  -u USER-NAME          set security name (e.g. bert)
  -x PROTOCOL           set privacy protocol (DES)
  -X PASSPHRASE         set privacy protocol pass phrase
  -Z BOOTS,TIME         set destination engine boots/time
General communication options
  -r RETRIES            set the number of retries
  -t TIMEOUT            set the request timeout (in seconds)
Debugging
  -d                    dump input/output packets in hexadecimal
  -D TOKEN[,...]        turn on debugging output for the specified TOKENs
                           (ALL gives extremely verbose debugging output)
General options
  -m MIB[:...]          load given list of MIBs (ALL loads everything)
  -M DIR[:...]          look in given list of directories for MIBs
  -P MIBOPTS            Toggle various defaults controlling MIB parsing:
                          u:  allow the use of underlines in MIB symbols
                          c:  disallow the use of "--" to terminate comments
                          d:  save the DESCRIPTIONs of the MIB objects
                          e:  disable errors when MIB symbols conflict
                          w:  enable warnings when MIB symbols conflict
                          W:  enable detailed warnings when MIB symbols conflict

                          R:  replace MIB symbols from latest module
  -O OUTOPTS            Toggle various defaults controlling output display:
                          0:  print leading 0 for single-digit hex characters
                          a:  print all strings in ascii format
                          b:  do not break OID indexes down
                          e:  print enums numerically
                          E:  escape quotes in string indices
                          f:  print full OIDs on output
                          n:  print OIDs numerically
                          q:  quick print for easier parsing
                          Q:  quick print with equal-signs
                          s:  print only last symbolic element of OID
                          S:  print MIB module-id plus last element
                          t:  print timeticks unparsed as numeric integers
                          T:  print human-readable text along with hex strings
                          u:  print OIDs using UCD-style prefix suppression
                          U:  don't print units
                          v:  print values only (not OID = value)
                          x:  print all strings in hex format
                          X:  extended index format
  -I INOPTS             Toggle various defaults controlling input parsing:
                          b:  do best/regex matching to find a MIB node
                          h:  don't apply DISPLAY-HINTs
                          r:  do not check values for range/type legality
                          R:  do random access to OID labels
                          u:  top-level OIDs must have '.' prefix (UCD-style)
                          s SUFFIX:  Append all textual OIDs with SUFFIX before
parsing
                          S PREFIX:  Prepend all textual OIDs with PREFIX before
 parsing
  -L LOGOPTS            Toggle various defaults controlling logging:
                          e:           log to standard error
                          o:           log to standard output
                          n:           don't log at all
                          f file:      log to the specified file
                          s facility:  log to syslog (via the specified facility
)

                          (variants)
                          [EON] pri:   log to standard error, output or /dev/nul
l for level 'pri' and above
                          [EON] p1-p2: log to standard error, output or /dev/nul
l for levels 'p1' to 'p2'
                          [FS] pri token:    log to file/syslog for level 'pri'
and above
                          [FS] p1-p2 token:  log to file/syslog for levels 'p1'
to 'p2'
  -C APPOPTS            Set various application specific behaviours:
                          p:  print the number of variables found
                          i:  include given OID in the search range
                          I:  don't include the given OID, even if no results ar
e returned
                          c:  do not check returned OIDs are increasing
                          t:  Display wall-clock time to complete the request
                          E {OID}:  End the walk at the specified OID
]]>
/hvaonline/posts/preList/34738/213450.html#213450 /hvaonline/posts/preList/34738/213450.html#213450 GMT
Cacti không hiển thị được graph.

quanta wrote:

Yuno wrote:
SNMP Information SNMP not in use ==> em đã kiểm tra SNMP của windows rồi, vận hoạt động bình thường.  
Bạn điền community string chưa nhỉ? 
community string : Public RRD Tool : 1.2 SNMP : 2.0 SNMP utility version : UCD-SNMP 4.x SNMP Port : 161 ]]>
/hvaonline/posts/preList/34738/213440.html#213440 /hvaonline/posts/preList/34738/213440.html#213440 GMT
Cacti không hiển thị được graph. Data Query Debug Information + Running data query [6]. + Found type = '4 '[script query]. + Found data query XML file at 'C:/AppServ/www/cacti/resource/script_queries/unix_disk.xml' + XML file parsed ok. + Executing script for list of indexes 'perl C:\AppServ\www\cacti\scripts\query_unix_partitions.pl index' + Executing script query 'perl C:\AppServ\www\cacti\scripts\query_unix_partitions.pl query device' + Executing script query 'perl C:\AppServ\www\cacti\scripts\query_unix_partitions.pl query mount' + Found data query XML file at 'C:/AppServ/www/cacti/resource/script_queries/unix_disk.xml' + Found data query XML file at 'C:/AppServ/www/cacti/resource/script_queries/unix_disk.xml' + Found data query XML file at 'C:/AppServ/www/cacti/resource/script_queries/unix_disk.xml' SNMP Information SNMP not in use ==> em đã kiểm tra SNMP của windows rồi, vận hoạt động bình thường. Tôi thấy trong log nó ghi như trên. Ah, tôi còn 1 vấn đề nữa mà không hiểu. Mỗi host tôi tạo ra thì trường Status đều là UnKnow hết :( kể có localhost. Mong anh quata giúp đỡ. Ah anh cho hỏi là có cái tools monitor nào khi gặp sự cố thì nó hú còi báo động không nhỉ Quata. (nó kêu bít bít bít ấy)]]> /hvaonline/posts/preList/34738/213417.html#213417 /hvaonline/posts/preList/34738/213417.html#213417 GMT Cacti không hiển thị được graph. /hvaonline/posts/preList/34738/213320.html#213320 /hvaonline/posts/preList/34738/213320.html#213320 GMT Cacti không hiển thị được graph. /hvaonline/posts/preList/34738/213274.html#213274 /hvaonline/posts/preList/34738/213274.html#213274 GMT Xin giúp đỡ viết 1 script chặn DDoS /hvaonline/posts/preList/32336/199480.html#199480 /hvaonline/posts/preList/32336/199480.html#199480 GMT Xin giúp đỡ viết 1 script chặn DDoS /hvaonline/posts/preList/32336/199473.html#199473 /hvaonline/posts/preList/32336/199473.html#199473 GMT Xin giúp đỡ viết 1 script chặn DDoS Code:
Oct 25 11:08:41 sip /usr/local/sbin/openser[7028]: radius_proxy_authorize ; M=INVITE ; F=sip:6943646285@222.255.236.134 ; T=sip:157637373737@222.255.236.134 ; IP=118.68.249.236 ; ID=9bc0bea3d677469c94db2e6762d5acef 
Oct 25 11:08:41 sip /usr/local/sbin/openser[7032]: radius_proxy_authorize ; M=INVITE ; F=sip:6943646285@222.255.236.134 ; T=sip:21314134314134@222.255.236.134 ; IP=118.68.249.236 ; ID=ac4fba3e703d46e7b6fe63cd4077f91e 
Oct 25 11:08:41 sip /usr/local/sbin/openser[7032]: radius_proxy_authorize ; M=INVITE ; F=sip:6943646285@222.255.236.134 ; T=sip:123434234242@222.255.236.134 ; IP=118.68.249.236 ; ID=ed463190eada4451ac03b3896705c6f9 
Oct 25 11:08:41 sip /usr/local/sbin/openser[7028]: radius_proxy_authorize ; M=INVITE ; F=sip:6943646285@222.255.236.134 ; T=sip:2134323445@222.255.236.134 ; IP=118.68.249.236 ; ID=737eb09dc6784644ae1b262b0f2976a7 
Oct 25 11:08:41 sip /usr/local/sbin/openser[7028]: radius_proxy_authorize ; M=INVITE ; F=sip:6943646285@222.255.236.134 ; T=sip:123214313413523@222.255.236.134 ; IP=118.68.249.236 ; ID=89ac6c34a98249f0945ddfa2655691ad
Tôi mong muốn mọi người giúp tôi xác định được IP DDoS từ file log, sau đó đưa nó vào cho firewall để chặn 1 cách tự động. và trên server thì cứ 5 phút script này chạy 1 lần file log : http://www.mediafire.com/?yz2njlm0kzj Mong nhận được sự giúp đỡ của các bạn @MOD : nếu có sai sót gì thì MOD cho tôi biết lý do để còn sửa đổi lại nhé.]]>
/hvaonline/posts/preList/32336/199376.html#199376 /hvaonline/posts/preList/32336/199376.html#199376 GMT
cần được giúp đỡ về project. /hvaonline/posts/preList/11568/66815.html#66815 /hvaonline/posts/preList/11568/66815.html#66815 GMT Re: Cần tìm 1 trình biên dịch cho C++ http://sourceforge.net/project/showfiles.php?group_id=10639 ]]> /hvaonline/posts/preList/11433/66514.html#66514 /hvaonline/posts/preList/11433/66514.html#66514 GMT Cần tìm 1 trình biên dịch cho C++ /hvaonline/posts/preList/11433/65884.html#65884 /hvaonline/posts/preList/11433/65884.html#65884 GMT prosses va thread làm ơn post lên cho em đi. /hvaonline/posts/preList/4417/26155.html#26155 /hvaonline/posts/preList/4417/26155.html#26155 GMT Re: cần những gì để bắt đầu học bảo mật /hvaonline/posts/preList/1116/5243.html#5243 /hvaonline/posts/preList/1116/5243.html#5243 GMT