mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-17 04:40:43 +01:00
24 lines
805 B
Bash
Executable File
24 lines
805 B
Bash
Executable File
#!/bin/bash
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
. $srcdir/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
template(name="outfmt" type="string" string="%$!mmdb_root%\n")
|
|
|
|
module(load="../plugins/mmdblookup/.libs/mmdblookup" container="!mmdb_root")
|
|
module(load="../plugins/mmnormalize/.libs/mmnormalize")
|
|
module(load="../plugins/imptcp/.libs/imptcp")
|
|
input(type="imptcp" port="'$TCPFLOOD_PORT'" ruleset="testing")
|
|
|
|
ruleset(name="testing") {
|
|
action(type="mmnormalize" rulebase=`echo $srcdir/mmdb.rb`)
|
|
action(type="mmdblookup" mmdbfile=`echo $srcdir/test.mmdb` key="$!ip" fields="city" )
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
|
|
}'
|
|
startup
|
|
tcpflood -m 1 -j "202.106.0.20\ "
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
content_check '{ "city": "Beijing" }'
|
|
exit_test
|