init III
This commit is contained in:
BIN
Perl syslog server/syslog.exe
Normal file
BIN
Perl syslog server/syslog.exe
Normal file
Binary file not shown.
33
Perl syslog server/syslog.perlapp
Normal file
33
Perl syslog server/syslog.perlapp
Normal file
@@ -0,0 +1,33 @@
|
||||
#!C:\Program Files\ActiveState Perl Dev Kit 9.0.1\bin\perlapp-gui.exe
|
||||
PAP-Version: 1.0
|
||||
Packer: C:\Program Files\ActiveState Perl Dev Kit 9.0.1\bin\perlapp.exe
|
||||
Script: syslog.pl
|
||||
Cwd: D:\Daten\Users\AWisniewski\Google Drive\Skripte\___PERL\syslog server
|
||||
Clean: 0
|
||||
Date: 2012-08-15 16:18:49
|
||||
Debug:
|
||||
Dependent: 0
|
||||
Dyndll: 0
|
||||
Exe: syslog.exe
|
||||
Force: 0
|
||||
Gui: 0
|
||||
Hostname: NFMADW085
|
||||
Manifest:
|
||||
No-Compress: 0
|
||||
No-Logo: 0
|
||||
Runlib:
|
||||
Shared: none
|
||||
Tmpdir:
|
||||
Verbose: 0
|
||||
Version-Comments:
|
||||
Version-CompanyName:
|
||||
Version-FileDescription:
|
||||
Version-FileVersion:
|
||||
Version-InternalName:
|
||||
Version-LegalCopyright:
|
||||
Version-LegalTrademarks:
|
||||
Version-OriginalFilename:
|
||||
Version-ProductName:
|
||||
Version-ProductVersion:
|
||||
Warnings: 0
|
||||
Xclude: 0
|
||||
242
Perl syslog server/syslog.pl
Normal file
242
Perl syslog server/syslog.pl
Normal file
@@ -0,0 +1,242 @@
|
||||
#!/bin/perl
|
||||
use Net::Syslogd;
|
||||
use Thread;
|
||||
use Tk;
|
||||
use strict;
|
||||
|
||||
my $LOGFILE :shared;
|
||||
$LOGFILE = "syslog.txt";
|
||||
|
||||
#my $sysloghandle :shared;
|
||||
|
||||
# Main Window
|
||||
my $mw = MainWindow->new();
|
||||
my $mbar = $mw -> Menu();
|
||||
my $i;
|
||||
|
||||
my $stlab = $mw -> Label(-height=>1, -text=>"received");
|
||||
my $orlab = $mw -> Label(-height=>1, -text=>"origin");
|
||||
my $iplab = $mw -> Label(-height=>1, -text=>"sender");
|
||||
my $falab = $mw -> Label(-height=>1, -text=>"facility");
|
||||
my $selab = $mw -> Label(-height=>1, -text=>"severity");
|
||||
my $tilab = $mw -> Label(-height=>1, -text=>"time");
|
||||
my $holab = $mw -> Label(-height=>1, -text=>"hostname");
|
||||
my $melab = $mw -> Label(-height=>1, -text=>"message");
|
||||
|
||||
my $sttxt;# = $mw -> Text(-width=>21, -wrap=>"none");
|
||||
my $ortxt;
|
||||
my $iptxt;# = $mw -> Text(-width=>16, -wrap=>"none");
|
||||
my $fatxt;# = $mw -> Text(-width=>8, -wrap=>"none");
|
||||
my $setxt;# = $mw -> Text(-width=>15, -wrap=>"none");
|
||||
my $titxt;# = $mw -> Text(-width=>15, -wrap=>"none");
|
||||
my $hotxt;# = $mw -> Text(-width=>15, -wrap=>"none");
|
||||
my $metxt;# = $meframe -> Text(-width=>15, -wrap=>"none");#-width=>10, -height=>10, -wrap=>"none");
|
||||
|
||||
# Frame für Messagetext und Scrollbalken
|
||||
#my $meframe = $mw->Frame();
|
||||
|
||||
# Vertikaler Scrollbalken für Textfelder
|
||||
my $srl_y = $mw -> Scrollbar();
|
||||
|
||||
# Horizontaler Scrollbalken für Textfelder
|
||||
my $srl_x = $mw -> Scrollbar();
|
||||
|
||||
# Definition der Textfelder
|
||||
my $textboxes = [ $sttxt = $mw -> Text(-width=>21, -wrap=>"none"),
|
||||
$ortxt = $mw -> Text(-width=>16, -wrap=>"none"),
|
||||
$iptxt = $mw -> Text(-width=>16, -wrap=>"none"),
|
||||
$fatxt = $mw -> Text(-width=>8, -wrap=>"none"),
|
||||
$setxt = $mw -> Text(-width=>15, -wrap=>"none"),
|
||||
$titxt = $mw -> Text(-width=>15, -wrap=>"none"),
|
||||
$hotxt = $mw -> Text(-width=>15, -wrap=>"none"),
|
||||
$metxt = $mw -> Text(-width=>15, -wrap=>"none"),
|
||||
];
|
||||
|
||||
# y-Achse
|
||||
# This method is called when one Listbox is scrolled with the keyboard
|
||||
# It makes the Scrollbar reflect the change, and scrolls the other lists
|
||||
sub scroll_textboxes_y {
|
||||
my ($sb, $scrolled, $lbs, @args) = @_;
|
||||
$sb->set(@args); # tell the Scrollbar what to display
|
||||
my ($top, $bottom) = $scrolled->yview( );
|
||||
foreach my $list (@$lbs) {
|
||||
$list->yviewMoveto($top); # adjust each lb
|
||||
}
|
||||
}
|
||||
# x-Achse
|
||||
sub scroll_textboxes_x {
|
||||
my ($sb, $scrolled, $lbs, @args) = @_;
|
||||
$sb->set(@args); # tell the Scrollbar what to display
|
||||
my ($top, $bottom) = $scrolled->xview( );
|
||||
foreach my $list (@$lbs) {
|
||||
$list->xviewMoveto($top); # adjust each lb
|
||||
}
|
||||
}
|
||||
|
||||
# Configure each Listbox to call &scroll_textboxes, y-Achse
|
||||
foreach my $list (@$textboxes) {
|
||||
$list->configure(-yscrollcommand => [ \&scroll_textboxes_y, $srl_y, $list, $textboxes ]);
|
||||
}
|
||||
|
||||
# Configure each Listbox to call &scroll_textboxes, x-Achse
|
||||
foreach my $list (@$textboxes) {
|
||||
$list->configure(-xscrollcommand => [ \&scroll_textboxes_x, $srl_x, $list, $textboxes ]);
|
||||
}
|
||||
|
||||
# y-Achse
|
||||
# Configure the Scrollbar to scroll each Listbox
|
||||
$srl_y->configure(-orient=>'v', -command => sub { foreach my $list (@$textboxes) {
|
||||
$list->yview(@_);
|
||||
}});
|
||||
# Vertikaler Scrollbalken für Textfelder Ende
|
||||
# x-Achse
|
||||
$srl_x->configure(-orient=>'h', -command => sub { foreach my $list (@$textboxes) {
|
||||
$list->xview(@_);
|
||||
}});
|
||||
|
||||
|
||||
# Horizontaler Scrollbalken für Messages Textbox
|
||||
#my $srl_x = $mw -> Scrollbar(-orient=>'h',-command=>[xview => $metxt]);
|
||||
#$metxt -> configure(-yscrollcommand=>['set', $srl_y], -xscrollcommand=>['set',$srl_x]);
|
||||
# Horizontaler Scrollbalken für Messages Textbox Ende
|
||||
|
||||
# Menüleiste
|
||||
$mw -> configure(-menu => $mbar);
|
||||
my $help = $mbar -> cascade(-label =>"Help", -underline=>0, -tearoff => 0);
|
||||
$help -> command(-label =>"About", -command => sub {return; });
|
||||
# Menüleiste Ende
|
||||
|
||||
$stlab -> grid (-row=>5, -column=>5);
|
||||
$orlab -> grid (-row=>5, -column=>8);
|
||||
$iplab -> grid (-row=>5, -column=>10);
|
||||
$falab -> grid (-row=>5, -column=>15);
|
||||
$selab -> grid (-row=>5, -column=>20);
|
||||
$tilab -> grid (-row=>5, -column=>25);
|
||||
$holab -> grid (-row=>5, -column=>30);
|
||||
$melab -> grid (-row=>5, -column=>35);
|
||||
|
||||
$sttxt -> grid(-row=>10,-column=>5, -sticky=>"NSEW");
|
||||
$ortxt -> grid(-row=>10,-column=>8, -sticky=>"NSEW");
|
||||
$iptxt -> grid(-row=>10,-column=>10, -sticky=>"NSEW");
|
||||
$fatxt -> grid(-row=>10,-column=>15, -sticky=>"NSEW");
|
||||
$setxt -> grid(-row=>10,-column=>20, -sticky=>"NSEW");
|
||||
$titxt -> grid(-row=>10,-column=>25, -sticky=>"NSEW");
|
||||
$hotxt -> grid(-row=>10,-column=>30, -sticky=>"NSEW");
|
||||
$metxt -> grid(-row=>10,-column=>35, -sticky=>"NSEW");
|
||||
#$meframe -> grid(-row=>10,-column=>7, -sticky=>"NSEW");
|
||||
|
||||
|
||||
#$mw->gridColumnconfigure(0, -weight => 1);
|
||||
$mw->gridColumnconfigure(5, -weight => 0);
|
||||
$mw->gridColumnconfigure(8, -weight => 0);
|
||||
$mw->gridColumnconfigure(10, -weight => 0);
|
||||
$mw->gridColumnconfigure(15, -weight => 0);
|
||||
$mw->gridColumnconfigure(20, -weight => 0);
|
||||
$mw->gridColumnconfigure(25, -weight => 0);
|
||||
$mw->gridColumnconfigure(30, -weight => 0);
|
||||
$mw->gridColumnconfigure(35, -weight => 1);
|
||||
#$meframe->gridColumnconfigure(1, -weight => 1);
|
||||
|
||||
$mw->gridRowconfigure(10, -weight => 1);
|
||||
#$meframe->gridRowconfigure(1, -weight => 1);
|
||||
|
||||
$srl_y -> grid(-row=>10,-column=>1,-sticky=>"ns");
|
||||
$srl_x -> grid(-row=>15,-column=>5,-columnspan=>35,-sticky=>"ew");
|
||||
|
||||
|
||||
my $thr = new Thread \&syslogdeamon;
|
||||
|
||||
|
||||
MainLoop;
|
||||
|
||||
#$sysloghandle->close();
|
||||
print "Tschüss'n\n";
|
||||
|
||||
|
||||
sub syslogdeamon {
|
||||
my $sysloghandle = Net::Syslogd->new() or die "Error creating Syslogd listener: ", Net::Syslogd->error;
|
||||
|
||||
# Logfile einlesen
|
||||
open SYSLOG, "<$LOGFILE";
|
||||
foreach (<SYSLOG>) {
|
||||
chomp;
|
||||
my $la; my $b; my $c; my $d; my $e; my $f; my $g; my $h;
|
||||
($a,$b,$c,$d,$e,$f,$g,$h) = split/\|/,$_;
|
||||
|
||||
$sttxt->insert("1.0", "$a\n");
|
||||
$ortxt->insert("1.0", "$b\n");
|
||||
$iptxt->insert("1.0", "$c\n");
|
||||
$fatxt->insert("1.0", "$d\n");
|
||||
$setxt->insert("1.0", "$e\n");
|
||||
$titxt->insert("1.0", "$f\n");
|
||||
$hotxt->insert("1.0", "$g\n");
|
||||
$metxt->insert("1.0", "$h\n");
|
||||
}
|
||||
close SYSLOG;
|
||||
|
||||
while (1) {
|
||||
my $message = $sysloghandle->get_message();
|
||||
|
||||
if (!defined($message)) {
|
||||
printf "$0: %s\n", Net::Syslogd->error;
|
||||
exit 1;
|
||||
} elsif ($message == 0) {
|
||||
next;
|
||||
}
|
||||
|
||||
if (!defined($message->process_message())) {
|
||||
printf "$0: %s\n", Net::Syslogd->error;
|
||||
} else {
|
||||
my $peeraddr = $message->peeraddr;
|
||||
my $port = $message->peerport;
|
||||
my $facility = $message->facility;
|
||||
my $severity = $message->severity;
|
||||
my $time = $message->time;
|
||||
my $hostname = $message->hostname;
|
||||
my $message = $message->message;
|
||||
my $localt = localtime;
|
||||
|
||||
($localt) = $localt =~ /.{3} (.*)/;
|
||||
|
||||
chomp($peeraddr); chomp($port); chomp($facility); chomp($severity); chomp($time); chomp($hostname); chomp($message);
|
||||
|
||||
#printf "A:%s F:%s S:%s T:%s H:%s M:%s\n", $peeraddr, $facility, $severity, $time, $hostname, $message;
|
||||
|
||||
my $sender = $peeraddr;
|
||||
|
||||
$time = "" if ($time == "0");
|
||||
$hostname = "" if ($hostname == "0");
|
||||
|
||||
if ($message =~ /^Address=/) {
|
||||
$hostname = "";
|
||||
if ($message =~ /^Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/) {
|
||||
($peeraddr, $time, undef, $message) = $message =~ /^Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/;
|
||||
$message =~ s/$peeraddr//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
else {
|
||||
($peeraddr, $message) = $message =~ /^Address=([^\s]*) (.*)/;
|
||||
$message =~ s/^Address=$peeraddr//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
}
|
||||
$message =~ s/\s{2,}/ /;
|
||||
|
||||
# Logfile schreiben
|
||||
my $log = sprintf "%s|%s|%s|%s|%s|%s|%s|%s\n", $localt, $peeraddr, $sender, $facility, $severity, $time, $hostname, $message;
|
||||
open SYSLOG, ">>$LOGFILE";
|
||||
printf SYSLOG "$log";
|
||||
close SYSLOG;
|
||||
|
||||
$sttxt->insert("1.0", "$localt\n");
|
||||
$ortxt->insert("1.0", "$peeraddr\n");
|
||||
$iptxt->insert("1.0", "$sender\n");
|
||||
$fatxt->insert("1.0", "$facility\n");
|
||||
$setxt->insert("1.0", "$severity\n");
|
||||
$titxt->insert("1.0", "$time\n");
|
||||
$hotxt->insert("1.0", "$hostname\n");
|
||||
$metxt->insert("1.0", "$message\n");
|
||||
#$txt -> configure(-state=>"disabled");
|
||||
}
|
||||
}
|
||||
}
|
||||
299
Perl syslog server/syslog.txt
Normal file
299
Perl syslog server/syslog.txt
Normal file
@@ -0,0 +1,299 @@
|
||||
Feb 7 14:46:30 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 7 14:46:29||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 7 14:51:23 2011|10.10.11.14|10.10.12.36|local4|Informational|Feb 7 14:51:21||ports: port D17 is now off-line # fwd. by 10.10.12.36
|
||||
Feb 7 16:38:35 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:10.241.1.12
|
||||
Feb 7 16:38:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.12 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:38:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.12 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:38:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.12 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:38:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.12 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:40:51 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:40:56 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:41:01 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:41:06 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:41:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:41:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:41:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:41:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:42:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:43:55 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:44:55 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:45:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:45:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:45:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:45:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:45:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:45:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:45:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:46:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:46:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:46:55 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.11 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:32 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:10.241.1.13
|
||||
Feb 7 16:47:32 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:37 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:42 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:47 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:52 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:47:57 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:48:02 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:48:06 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:48:09 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:0.0.0.0
|
||||
Feb 7 16:48:09 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host identity:255.255.255.255
|
||||
Feb 7 16:48:09 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302015: Built inbound UDP connection 10156 for inside:0.0.0.0/68 (0.0.0.0/68) to identity:255.255.255.255/67 (255.255.255.255/67)
|
||||
Feb 7 16:48:09 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-604103: DHCP daemon interface inside: address granted 0178.ca39.7d92.2e (192.168.100.114)
|
||||
Feb 7 16:48:09 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:192.168.100.114
|
||||
Feb 7 16:48:09 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302015: Built outbound UDP connection 10157 for inside:192.168.100.114/68 (192.168.100.114/68) to identity:192.168.100.2/67 (192.168.100.2/67)
|
||||
Feb 7 16:48:11 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:48:16 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:48:21 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:48:26 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:48:31 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.13 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:49:37 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:49:42 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:49:46 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:49:51 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:49:56 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:01 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:06 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:11 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302016: Teardown UDP connection 10156 for inside:0.0.0.0/68 to identity:255.255.255.255/67 duration 0:02:01 bytes 300
|
||||
Feb 7 16:50:11 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302016: Teardown UDP connection 10157 for inside:192.168.100.114/68 to identity:192.168.100.2/67 duration 0:02:01 bytes 309
|
||||
Feb 7 16:50:11 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:16 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:21 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:26 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:41 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 16:50:43 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609002: Teardown local-host inside:10.241.1.11 duration 0:10:26
|
||||
Feb 7 17:37:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:37:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:40:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:40:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:40:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:40 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609002: Teardown local-host inside:10.241.1.22 duration 0:10:26
|
||||
Feb 7 17:41:45 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:10.241.1.22
|
||||
Feb 7 17:41:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:41:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:45:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:45:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:45:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:45:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:46:55 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:47:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:47:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:47:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:11 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:26 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:31 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:36 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:41 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:46 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:51 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 17:59:56 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:00:01 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:00:06 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:00:11 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:00:16 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:00:21 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:00:26 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:09:08 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:10:23 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:10:28 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:10:33 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:10:38 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:10:43 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:18 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:23 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:28 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:33 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:38 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:43 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:48 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:53 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:11:58 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:12:03 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:12:08 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:12:13 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:12:18 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:12:48 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:12:53 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:12:58 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:02 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:07 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609002: Teardown local-host inside:10.241.1.22 duration 0:10:25
|
||||
Feb 7 18:13:07 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:10.241.1.22
|
||||
Feb 7 18:13:07 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:12 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:17 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:22 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:27 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:32 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:13:37 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:16 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:21 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:26 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:31 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:36 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:41 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:46 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:51 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:17:54 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:0.0.0.0
|
||||
Feb 7 18:17:54 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host identity:255.255.255.255
|
||||
Feb 7 18:17:54 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302015: Built inbound UDP connection 12020 for inside:0.0.0.0/68 (0.0.0.0/68) to identity:255.255.255.255/67 (255.255.255.255/67)
|
||||
Feb 7 18:17:54 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-604103: DHCP daemon interface inside: address granted 0178.ca39.7d92.2e (192.168.100.114)
|
||||
Feb 7 18:17:54 2011|192.168.100.2|192.168.100.2|local4|Debug|||%ASA-7-609001: Built local-host inside:192.168.100.114
|
||||
Feb 7 18:18:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:18:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:18:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:18:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:18:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:18:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:18:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:18:55 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:41 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:55 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:19:56 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302016: Teardown UDP connection 12020 for inside:0.0.0.0/68 to identity:255.255.255.255/67 duration 0:02:01 bytes 300
|
||||
Feb 7 18:19:56 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302016: Teardown UDP connection 12021 for inside:192.168.100.114/68 to identity:192.168.100.2/67 duration 0:02:01 bytes 309
|
||||
Feb 7 18:20:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:30 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:35 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:20:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:23:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:25:40 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:25:45 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:25:50 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:25:56 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:26:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:26:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:26:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:27:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:27:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:27:25 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:28:00 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:28:05 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:28:10 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:28:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:28:20 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:28:34 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:28:41 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:29:04 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:29:09 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:29:15 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:30:09 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:09 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:14 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:19 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:24 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:29 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:34 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:39 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:44 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:31:59 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:04 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:09 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:14 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:19 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:24 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:29 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:34 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:39 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:32:39 2011|192.168.100.2|192.168.100.2|local4|Informational|||%ASA-6-302010: 1 in use, 14 most used
|
||||
Feb 7 18:32:44 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:33:19 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:33:44 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:34:09 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:34:54 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:14 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:19 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:24 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:29 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:34 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:39 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:44 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:49 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:54 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:35:59 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:36:04 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:36:09 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 7 18:36:14 2011|192.168.100.2|192.168.100.2|local4|Notice|||%ASA-5-305013: Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src inside:192.168.100.117 dst inside:10.241.1.22 (type 8, code 0) denied due to NAT reverse path failure
|
||||
Feb 8 06:24:28 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:24:27||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:25:19 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:25:17||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:28:15 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:28:14||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:34:04 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:34:03||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:37:53 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:37:52||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:48:45 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:48:44||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:50:28 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:50:27||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:54:08 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:54:06||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 06:56:32 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 06:56:31||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 07:01:57 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 07:01:56||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 07:08:21 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 07:08:19||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 07:22:08 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 07:22:07||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 07:27:31 2011|10.10.11.14|10.10.12.36|local4|Informational|Feb 8 07:27:28||ports: port C9 is now off-line # fwd. by 10.10.12.36
|
||||
Feb 8 07:29:13 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 07:29:12||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 07:29:57 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 07:29:55||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 07:31:06 2011|10.10.11.4|10.10.12.36|local4|Informational|Feb 8 07:31:05||mgr: SME SSH from 10.61.1.10 - MANAGER Mode # fwd. by 10.10.12.36
|
||||
Feb 8 07:40:24 2011|10.10.11.41|10.10.12.36|local4|Warning|Feb 8 07:40:21||00329 FFI: port A16-Excessive CRC/alignment errors. See help. # fwd. by 10.10.12.36
|
||||
Feb 8 07:41:35 2011|10.10.11.14|10.10.12.36|local4|Informational|Feb 8 07:41:32||ports: port D13 is now on-line # fwd. by 10.10.12.36
|
||||
Feb 8 07:41:39 2011|10.10.11.14|10.10.12.36|local4|Informational|Feb 8 07:41:36||ports: port D9 is Blocked by STP # fwd. by 10.10.12.36
|
||||
Feb 8 07:41:42 2011|10.10.11.14|10.10.12.36|local4|Informational|Feb 8 07:41:39||ports: port D9 is now on-line # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:06 2011|10.10.11.11|10.10.12.36|local4|Informational|Feb 8 07:42:03||ports: port F22 is now off-line # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:09 2011|10.10.11.11|10.10.12.36|local4|Informational|Feb 8 07:42:05||ports: port F24 is now off-line # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:10 2011|10.10.11.11|10.10.12.36|local4|Informational|Feb 8 07:42:06||ports: port F22 is Blocked by STP # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:10 2011|10.10.11.11|10.10.12.36|local4|Informational|Feb 8 07:42:06||ports: port F22 is now on-line # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:11 2011|10.10.11.11|10.10.12.36|local4|Informational|Feb 8 07:42:07||ports: port F24 is Blocked by STP # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:11 2011|10.10.11.11|10.10.12.36|local4|Informational|Feb 8 07:42:07||ports: port F24 is now on-line # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:30 2011|10.10.11.11|10.10.12.36|local4|Warning|Feb 8 07:42:27||FFI: port F22-Excessive Broadcasts. See help. # fwd. by 10.10.12.36
|
||||
Feb 8 07:42:30 2011|10.10.11.11|10.10.12.36|local4|Warning|Feb 8 07:42:27||FFI: port F24-Excessive Broadcasts. See help. # fwd. by 10.10.12.36
|
||||
207
Perl syslog server/syslog_fr.pl
Normal file
207
Perl syslog server/syslog_fr.pl
Normal file
@@ -0,0 +1,207 @@
|
||||
#!/bin/perl
|
||||
use Net::Syslogd;
|
||||
use Thread;
|
||||
use Tk;
|
||||
use strict;
|
||||
|
||||
my $LOGFILE :shared;
|
||||
$LOGFILE = "syslog.txt";
|
||||
|
||||
|
||||
# Main Window
|
||||
my $mw = new MainWindow;
|
||||
my $mbar = $mw -> Menu();
|
||||
my $i;
|
||||
|
||||
my $stlab = $mw -> Label(-height=>1, -text=>"received");
|
||||
my $iplab = $mw -> Label(-height=>1, -text=>"IP");
|
||||
my $falab = $mw -> Label(-height=>1, -text=>"facility");
|
||||
my $selab = $mw -> Label(-height=>1, -text=>"severity");
|
||||
my $tilab = $mw -> Label(-height=>1, -text=>"time");
|
||||
my $holab = $mw -> Label(-height=>1, -text=>"hostname");
|
||||
my $melab = $mw -> Label(-height=>1, -text=>"message");
|
||||
|
||||
my $sttxt;# = $mw -> Text(-width=>21, -wrap=>"none");
|
||||
my $iptxt;# = $mw -> Text(-width=>16, -wrap=>"none");
|
||||
my $fatxt;# = $mw -> Text(-width=>8, -wrap=>"none");
|
||||
my $setxt;# = $mw -> Text(-width=>15, -wrap=>"none");
|
||||
my $titxt;# = $mw -> Text(-width=>15, -wrap=>"none");
|
||||
my $hotxt;# = $mw -> Text(-width=>15, -wrap=>"none");
|
||||
my $metxt;# = $meframe -> Text(-width=>15, -wrap=>"none");#-width=>10, -height=>10, -wrap=>"none");
|
||||
|
||||
# Frame für Messagetext und Scrollbalken
|
||||
my $meframe = $mw->Frame();
|
||||
|
||||
# Vertikaler Scrollbalken für Textfelder
|
||||
my $srl_y = $meframe -> Scrollbar();
|
||||
|
||||
# Definition der Textfelder
|
||||
my $textboxes = [ $sttxt = $mw -> Text(-width=>21, -wrap=>"none"),
|
||||
$metxt = $meframe -> Text(-width=>15, -wrap=>"none"),
|
||||
$iptxt = $mw -> Text(-width=>16, -wrap=>"none"),
|
||||
$fatxt = $mw -> Text(-width=>8, -wrap=>"none"),
|
||||
$setxt = $mw -> Text(-width=>15, -wrap=>"none"),
|
||||
$titxt = $mw -> Text(-width=>15, -wrap=>"none"),
|
||||
$hotxt = $mw -> Text(-width=>15, -wrap=>"none"),
|
||||
];
|
||||
|
||||
# This method is called when one Listbox is scrolled with the keyboard
|
||||
# It makes the Scrollbar reflect the change, and scrolls the other lists
|
||||
sub scroll_textboxes {
|
||||
my ($sb, $scrolled, $lbs, @args) = @_;
|
||||
$sb->set(@args); # tell the Scrollbar what to display
|
||||
my ($top, $bottom) = $scrolled->yview( );
|
||||
foreach my $list (@$lbs) {
|
||||
$list->yviewMoveto($top); # adjust each lb
|
||||
}
|
||||
}
|
||||
|
||||
# Configure each Listbox to call &scroll_textboxes
|
||||
foreach my $list (@$textboxes) {
|
||||
$list->configure(-yscrollcommand => [ \&scroll_textboxes, $srl_y,
|
||||
$list, $textboxes ]);
|
||||
}
|
||||
|
||||
# Configure the Scrollbar to scroll each Listbox
|
||||
$srl_y->configure(-command => sub { foreach my $list (@$textboxes) {
|
||||
$list->yview(@_);
|
||||
}});
|
||||
# Vertikaler Scrollbalken für Textfelder Ende
|
||||
|
||||
|
||||
# Horizontaler Scrollbalken für Messages Textbox
|
||||
my $srl_x = $meframe -> Scrollbar(-orient=>'h',-command=>[xview => $metxt]);
|
||||
$metxt -> configure(-yscrollcommand=>['set', $srl_y], -xscrollcommand=>['set',$srl_x]);
|
||||
# Horizontaler Scrollbalken für Messages Textbox Ende
|
||||
|
||||
# Menüleiste
|
||||
$mw -> configure(-menu => $mbar);
|
||||
my $help = $mbar -> cascade(-label =>"Help", -underline=>0, -tearoff => 0);
|
||||
$help -> command(-label =>"About", -command => sub {return; });
|
||||
# Menüleiste Ende
|
||||
|
||||
$stlab -> grid (-row=>5, -column=>1);
|
||||
$iplab -> grid (-row=>5, -column=>2);
|
||||
$falab -> grid (-row=>5, -column=>3);
|
||||
$selab -> grid (-row=>5, -column=>4);
|
||||
$tilab -> grid (-row=>5, -column=>5);
|
||||
$holab -> grid (-row=>5, -column=>6);
|
||||
$melab -> grid (-row=>5, -column=>7);
|
||||
|
||||
$sttxt -> grid(-row=>10,-column=>1, -sticky=>"NSEW");
|
||||
$iptxt -> grid(-row=>10,-column=>2, -sticky=>"NSEW");
|
||||
$fatxt -> grid(-row=>10,-column=>3, -sticky=>"NSEW");
|
||||
$setxt -> grid(-row=>10,-column=>4, -sticky=>"NSEW");
|
||||
$titxt -> grid(-row=>10,-column=>5, -sticky=>"NSEW");
|
||||
$hotxt -> grid(-row=>10,-column=>6, -sticky=>"NSEW");
|
||||
$metxt -> grid(-row=>1,-column=>1, -sticky=>"NSEW");
|
||||
$meframe -> grid(-row=>10,-column=>7, -sticky=>"NSEW");
|
||||
|
||||
|
||||
#$mw->gridColumnconfigure(0, -weight => 1);
|
||||
$mw->gridColumnconfigure(1, -weight => 0);
|
||||
$mw->gridColumnconfigure(2, -weight => 0);
|
||||
$mw->gridColumnconfigure(3, -weight => 0);
|
||||
$mw->gridColumnconfigure(4, -weight => 0);
|
||||
$mw->gridColumnconfigure(5, -weight => 0);
|
||||
$mw->gridColumnconfigure(6, -weight => 0);
|
||||
$mw->gridColumnconfigure(7, -weight => 1);
|
||||
$meframe->gridColumnconfigure(1, -weight => 1);
|
||||
|
||||
$mw->gridRowconfigure(10, -weight => 1);
|
||||
$meframe->gridRowconfigure(1, -weight => 1);
|
||||
|
||||
$srl_y -> grid(-row=>1,-column=>2,-sticky=>"ns");
|
||||
$srl_x -> grid(-row=>2,-column=>1,-sticky=>"ew");
|
||||
|
||||
|
||||
my $thr = new Thread \&syslogd;
|
||||
|
||||
|
||||
MainLoop;
|
||||
|
||||
sub syslogd {
|
||||
my $syslogd = Net::Syslogd->new() or die "Error creating Syslogd listener: ", Net::Syslogd->error;
|
||||
|
||||
# Logfile einlesen
|
||||
open SYSLOG, "<$LOGFILE";
|
||||
foreach (<SYSLOG>) {
|
||||
chomp;
|
||||
my $la; my $b; my $c; my $d; my $e; my $f; my $g;
|
||||
($a,$b,$c,$d,$e,$f,$g) = split/\|/,$_;
|
||||
|
||||
$sttxt->insert("1.0", "$a\n");
|
||||
$iptxt->insert("1.0", "$b\n");
|
||||
$fatxt->insert("1.0", "$c\n");
|
||||
$setxt->insert("1.0", "$d\n");
|
||||
$titxt->insert("1.0", "$e\n");
|
||||
$hotxt->insert("1.0", "$f\n");
|
||||
$metxt->insert("1.0", "$g\n");
|
||||
}
|
||||
close SYSLOG;
|
||||
|
||||
while (1) {
|
||||
my $message = $syslogd->get_message();
|
||||
|
||||
if (!defined($message)) {
|
||||
printf "$0: %s\n", Net::Syslogd->error;
|
||||
exit 1;
|
||||
} elsif ($message == 0) {
|
||||
next;
|
||||
}
|
||||
|
||||
if (!defined($message->process_message())) {
|
||||
printf "$0: %s\n", Net::Syslogd->error;
|
||||
} else {
|
||||
my $peeraddr = $message->peeraddr;
|
||||
my $port = $message->peerport;
|
||||
my $facility = $message->facility;
|
||||
my $severity = $message->severity;
|
||||
my $time = $message->time;
|
||||
my $hostname = $message->hostname;
|
||||
my $message = $message->message;
|
||||
my $localt = localtime;
|
||||
|
||||
($localt) = $localt =~ /.{3} (.*)/;
|
||||
|
||||
chomp($peeraddr); chomp($port); chomp($facility); chomp($severity); chomp($time); chomp($hostname); chomp($message);
|
||||
|
||||
#printf "A:%s F:%s S:%s T:%s H:%s M:%s\n", $peeraddr, $facility, $severity, $time, $hostname, $message;
|
||||
|
||||
my $sender = $peeraddr;
|
||||
|
||||
$time = "" if ($time == "0");
|
||||
$hostname = "" if ($hostname == "0");
|
||||
|
||||
if ($message =~ /^Address=/) {
|
||||
$hostname = "";
|
||||
if ($message =~ /^Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/) {
|
||||
($peeraddr, $time, undef, $message) = $message =~ /^Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/;
|
||||
$message =~ s/$peeraddr//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
else {
|
||||
($peeraddr, $message) = $message =~ /^Address=([^\s]*) (.*)/;
|
||||
$message =~ s/^Address=$peeraddr//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
}
|
||||
$message =~ s/\s{2,}/ /;
|
||||
|
||||
# Logfile schreiben
|
||||
my $log = sprintf "%s|%s|%s|%s|%s|%s|%s\n", $localt, $peeraddr, $facility, $severity, $time, $hostname, $message;
|
||||
open SYSLOG, ">>$LOGFILE";
|
||||
printf SYSLOG "$log";
|
||||
close SYSLOG;
|
||||
|
||||
$sttxt->insert("1.0", "$localt\n");
|
||||
$iptxt->insert("1.0", "$peeraddr\n");
|
||||
$fatxt->insert("1.0", "$facility\n");
|
||||
$setxt->insert("1.0", "$severity\n");
|
||||
$titxt->insert("1.0", "$time\n");
|
||||
$hotxt->insert("1.0", "$hostname\n");
|
||||
$metxt->insert("1.0", "$message\n");
|
||||
#$txt -> configure(-state=>"disabled");
|
||||
}
|
||||
}
|
||||
}
|
||||
221
Perl syslog server/syslog_tab.pl
Normal file
221
Perl syslog server/syslog_tab.pl
Normal file
@@ -0,0 +1,221 @@
|
||||
#!/bin/perl
|
||||
use strict;
|
||||
|
||||
use Tk;
|
||||
use Tk::Table;
|
||||
use POE qw/ Loop::TkActiveState /;
|
||||
use POE::Component::Server::Syslog;
|
||||
use Thread;
|
||||
|
||||
my $LOGFILE = "syslog.txt";
|
||||
|
||||
my $thr = new Thread \&dummy_thread;
|
||||
|
||||
POE::Session->create(
|
||||
inline_states => {
|
||||
_start => \&build_gui,
|
||||
ev_syslog => \&syslogdeamonpoe,
|
||||
ev_loop => \&loop,
|
||||
}
|
||||
);
|
||||
|
||||
my $table;
|
||||
|
||||
$poe_kernel->run();
|
||||
print "Tschüss'n\n";
|
||||
exit 0;
|
||||
|
||||
sub dummy_thread {
|
||||
while (1) {
|
||||
#print "I'm alive!\n";
|
||||
sleep (10);
|
||||
}
|
||||
}
|
||||
|
||||
sub build_gui {
|
||||
my ($kernel, $session, $heap) = @_[KERNEL, SESSION, HEAP];
|
||||
my $mbar = $poe_main_window->Menu();
|
||||
|
||||
# Menüleiste
|
||||
$poe_main_window -> configure(-menu => $mbar);
|
||||
my $help = $mbar -> cascade(-label =>"Help", -underline=>0, -tearoff => 0);
|
||||
$help -> command(-label =>"About", -command => sub {return; });
|
||||
# Menüleiste Ende
|
||||
|
||||
|
||||
my $cols = 8;
|
||||
#my $tableFrame = $poe_main_window->Frame(-borderwidth => 2,-relief => 'raised');
|
||||
|
||||
#-columns => 8, -rows => 5,
|
||||
$table = $poe_main_window->Table(-columns => $cols, -rows => 20,
|
||||
-fixedrows => 1, -scrollbars => 'se',
|
||||
-relief => 'raised');
|
||||
|
||||
# Spaltenköpfe
|
||||
my @tableheader = qw /time origin ip facility severity time hostname message/;
|
||||
foreach my $c ( 0 .. $cols-1) {
|
||||
#my $hdr = "Sp " . $c;
|
||||
my $tmp = $tableheader[$c]; #$table->Label(-text => $tableheader[$c], -relief =>'flat');
|
||||
$table->put( 0, $c, "$tmp" );
|
||||
}
|
||||
|
||||
for my $i (1 .. 8) {
|
||||
for my $j (0 .. 7) {
|
||||
#my $tmp = $table->Label(-text => "$i,$j", -relief =>'sunken', -bg=>'white');
|
||||
my $tmp = "$i,$j";
|
||||
#$table->put( $i, $j, "$tmp" );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#foreach my $r ( 1 .. $rows ) {
|
||||
#my @tableheader = qw / time origin ip facility severity time hostname message/;
|
||||
# for ( 0 .. $cols ) {
|
||||
# my $tmp = $table->Label(-text => $tableheader[$_], -padx => 2, -anchor => 'nw', -background => 'white', -relief => 'groove');
|
||||
# #$tmp->bind('<Button>', [ \&toggleRow, $table ]);
|
||||
# $table->put( 1, $_, $tableheader[$_] );
|
||||
# }
|
||||
#}
|
||||
|
||||
|
||||
$table->grid (-row=>1, -column=>1, -sticky=>"NESW");
|
||||
$poe_main_window->gridColumnconfigure(1, -weight => 1);
|
||||
$poe_main_window->gridRowconfigure(1, -weight => 1);
|
||||
|
||||
#my $run=0;
|
||||
#$poe_main_window->repeat(1000 => \&run);
|
||||
|
||||
#my $thr = threads->new(\&syslogdeamon);
|
||||
$kernel->yield("ev_syslog");
|
||||
}
|
||||
|
||||
sub syslogdeamonpoe {
|
||||
POE::Component::Server::Syslog->spawn(
|
||||
BindAddress => 0.0.0.0,
|
||||
BindPort => 514,
|
||||
InputState => \&input,
|
||||
);
|
||||
$_[KERNEL]->yield("ev_loop");
|
||||
}
|
||||
|
||||
sub loop {
|
||||
#$_[HEAP]->{counter}++;
|
||||
#$poe_main_window->update; # Needed on SunOS & MacOS-X
|
||||
$_[KERNEL]->yield("ev_loop");
|
||||
}
|
||||
|
||||
sub input {
|
||||
print "$_[ARG0]\n";
|
||||
my $severity = $_[10]->{severity};
|
||||
my $facility = $_[10]->{facility};
|
||||
my $message = $_[10]->{msg};
|
||||
foreach my $key (keys %{$_[10]}) {
|
||||
print "$key : $_[10]{$key}\n";
|
||||
}
|
||||
print "----------------------------------\n";
|
||||
$table->put( 1, 4, "$severity" );
|
||||
$table->put( 1, 3, "$facility" );
|
||||
$table->put( 1, 7, "$message" );
|
||||
return;
|
||||
}
|
||||
|
||||
sub syslogdeamon {
|
||||
my $sysloghandle = Net::Syslogd->new() or die "Error creating Syslogd listener: ", Net::Syslogd->error;
|
||||
|
||||
# Logfile einlesen
|
||||
open SYSLOG, "<$LOGFILE";
|
||||
|
||||
my $i=1;
|
||||
#foreach (<SYSLOG>) {
|
||||
# chomp;
|
||||
# my $a; my $b; my $c; my $d; my $e; my $f; my $g; my $h;
|
||||
# ($a,$b,$c,$d,$e,$f,$g,$h) = split/\|/,$_;
|
||||
#
|
||||
# #$sttxt->insert("1.0", "$a\n");
|
||||
# $table->put( $i, 0, $a );
|
||||
# $i++;
|
||||
#}
|
||||
close SYSLOG;
|
||||
|
||||
while (1) {
|
||||
my $message = $sysloghandle->get_message();
|
||||
|
||||
if (!defined($message)) {
|
||||
printf "$0: %s\n", Net::Syslogd->error;
|
||||
exit 1;
|
||||
} elsif ($message == 0) {
|
||||
next;
|
||||
}
|
||||
|
||||
if (!defined($message->process_message())) {
|
||||
printf "$0: %s\n", Net::Syslogd->error;
|
||||
} else {
|
||||
my $peeraddr = $message->peeraddr;
|
||||
my $port = $message->peerport;
|
||||
my $facility = $message->facility;
|
||||
my $severity = $message->severity;
|
||||
my $time = $message->time;
|
||||
my $hostname = $message->hostname;
|
||||
my $message = $message->message;
|
||||
my $localt = localtime;
|
||||
|
||||
($localt) = $localt =~ /.{3} (.*)/;
|
||||
|
||||
chomp($peeraddr); chomp($port); chomp($facility); chomp($severity); chomp($time); chomp($hostname); chomp($message);
|
||||
|
||||
#printf "A:%s F:%s S:%s T:%s H:%s M:%s\n", $peeraddr, $facility, $severity, $time, $hostname, $message;
|
||||
|
||||
my $sender = $peeraddr;
|
||||
|
||||
$time = "" if ($time == "0");
|
||||
$hostname = "" if ($hostname == "0");
|
||||
|
||||
if ($message =~ /^Address=/) {
|
||||
$hostname = "";
|
||||
if ($message =~ /^Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/) {
|
||||
($peeraddr, $time, undef, $message) = $message =~ /^Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/;
|
||||
$message =~ s/$peeraddr//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
else {
|
||||
($peeraddr, $message) = $message =~ /^Address=([^\s]*) (.*)/;
|
||||
$message =~ s/^Address=$peeraddr//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
}
|
||||
$message =~ s/\s{2,}/ /;
|
||||
|
||||
# Logfile schreiben
|
||||
my $log = sprintf "%s|%s|%s|%s|%s|%s|%s|%s\n", $localt, $peeraddr, $sender, $facility, $severity, $time, $hostname, $message;
|
||||
open SYSLOG, ">>$LOGFILE";
|
||||
printf SYSLOG "$log";
|
||||
printf "$localt\n";
|
||||
close SYSLOG;
|
||||
|
||||
#my $tmp = $table->Label(-text => $localt, -padx => 2, -anchor => 'w', -background => 'white', -relief => 'groove');
|
||||
#$tmp->bind('<Button>', [ \&toggleRow, $table ]);
|
||||
#$tmp->bind('Label', "$localt");
|
||||
#$table->put( 1, 1, "$localt" );
|
||||
#$table->update;
|
||||
|
||||
#my $tmp = $table->Label(-text => $localt, -relief =>'flat'); #
|
||||
$table->put( 0, 0, "$localt" );
|
||||
#$table->clear();
|
||||
|
||||
|
||||
#$table->Lable( 1, 1, "$localt" );
|
||||
#my $widget = $table->get(0,0);
|
||||
#print "$widget\n";
|
||||
|
||||
#$sttxt->insert("1.0", "$localt\n");
|
||||
#$ortxt->insert("1.0", "$peeraddr\n");
|
||||
#$iptxt->insert("1.0", "$sender\n");
|
||||
#$fatxt->insert("1.0", "$facility\n");
|
||||
#$setxt->insert("1.0", "$severity\n");
|
||||
#$titxt->insert("1.0", "$time\n");
|
||||
#$hotxt->insert("1.0", "$hostname\n");
|
||||
#$metxt->insert("1.0", "$message\n");
|
||||
#$txt -> configure(-state=>"disabled");
|
||||
}
|
||||
}
|
||||
}
|
||||
225
Perl syslog server/syslog_tixgrid.pl
Normal file
225
Perl syslog server/syslog_tixgrid.pl
Normal file
@@ -0,0 +1,225 @@
|
||||
#!/bin/perl
|
||||
use strict;
|
||||
|
||||
use Tk;
|
||||
use Tk::TixGrid;
|
||||
|
||||
use POE qw (Loop::TkActiveState);
|
||||
use POE::Loop::TkActiveState;
|
||||
use POE::Kernel;
|
||||
use POE::Session;
|
||||
use POE::Resource::Aliases;
|
||||
use POE::Resource::Events;
|
||||
use POE::Resource::Extrefs;
|
||||
use POE::Resource::FileHandles;
|
||||
use POE::Resource::Sessions;
|
||||
use POE::Resource::SIDs;
|
||||
use POE::Resource::Signals;
|
||||
#use POE::Resource::Statistics;
|
||||
use POE::Component::Server::Syslog;
|
||||
|
||||
my @severity = qw /Emergency Alert Critical Error Warning Notice Informational Debug/;
|
||||
my @facility = qw /kernel user-level mail-system system-daemons security-auth-4 internal line-printer network-news UUCP clock-9 security-auth-10 FTP NTP log-audit log-alert clock-15 local0 local1 local2 local3 local4 local5 local6 local7/;
|
||||
my $LOGFILE = "syslog.txt";
|
||||
|
||||
POE::Session->create(
|
||||
inline_states => {
|
||||
#loop => \&loop,
|
||||
syslog => \&syslogdeamonpoe,
|
||||
gui => \&build_gui,
|
||||
_start => sub {
|
||||
$_[KERNEL]->yield($_) for qw( syslog gui);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
my $tixgrid;
|
||||
my @entbox;
|
||||
#x y x y
|
||||
@entbox=(0,1,2,1);
|
||||
my $selection=0;
|
||||
|
||||
$poe_kernel->run();
|
||||
print "Tschüss'n\n";
|
||||
exit 0;
|
||||
|
||||
sub reformattxgrid {
|
||||
#$tixgrid->formatGrid( @entbox, -bg => 'RED' , -xon => 0, -xoff => 1, -yon => 0, -yoff => 1);
|
||||
for (my $x=1;$x<=7;$x++) {
|
||||
for (my $y=1;$y<=$entbox[3]-1;$y++) {
|
||||
$tixgrid->formatBorder(1,1,$x,$y,-relief=>'groove'); #-background / -bg -borderwidth / -bd -filled -relief -selectbackground -xoff -xon -yoff -yon
|
||||
}
|
||||
}
|
||||
for (my $y=1;$y<=$entbox[3]-1;$y++) {
|
||||
#$tixgrid->formatGrid(1,$y,7,$y, -background => 'RED');
|
||||
}
|
||||
}
|
||||
sub get_cell {
|
||||
my ($x, $y)=@_;
|
||||
if ($x<=7 and $y<$entbox[3] and $x>0 and $y>0) {
|
||||
#printf "$x $y", $tixgrid->entrycget($x,$y, -text);
|
||||
}
|
||||
$selection=$y;
|
||||
print "aktuelle selection (left click) $selection\n";
|
||||
}
|
||||
sub tix_right_click {
|
||||
print "aktuelle selection (right click) $selection\n";
|
||||
}
|
||||
sub build_gui {
|
||||
#my ($kernel, $session, $heap) = @_[KERNEL, SESSION, HEAP];
|
||||
my $mbar = $poe_main_window->Menu();
|
||||
|
||||
# Menüleiste
|
||||
$poe_main_window -> configure(-menu => $mbar);
|
||||
my $help = $mbar -> cascade(-label =>"Help", -underline=>0, -tearoff => 0);
|
||||
$help -> command(-label =>"About", -command => sub {return; });
|
||||
# Menüleiste Ende
|
||||
|
||||
$tixgrid = $poe_main_window->TixGrid(-floatingrows => 1,
|
||||
-floatingcols => 0,
|
||||
-formatcmd => \&reformattxgrid,
|
||||
#-scrollbars => 'se',
|
||||
#-highlightcolor => 'RED',
|
||||
-selectbackground => 'LIGHTBLUE',
|
||||
-font => 'Arial 8',
|
||||
-width => 8,
|
||||
-height => 8,
|
||||
-borderwidth => 0,
|
||||
-relief => 'solid', # must be flat, groove, raised, ridge, solid, or sunken
|
||||
-state => 'normal', # must be normal or disabled
|
||||
-pady => 1,
|
||||
-padx => 1,
|
||||
#-leftmargin => 0,
|
||||
-browsecmd => \&get_cell,
|
||||
);
|
||||
|
||||
$tixgrid->set(0,0, -itemtype=>'text', -text=>"");
|
||||
$tixgrid->sizeColumn(0, -size=>0);
|
||||
|
||||
$tixgrid->set(1,0, -itemtype=>'text', -text=>"localtime");
|
||||
$tixgrid->sizeColumn(1, -size=>'auto');
|
||||
|
||||
$tixgrid->set(2,0, -itemtype=>'text', -text=>"sender");
|
||||
$tixgrid->sizeColumn(2, -size=>'auto');
|
||||
|
||||
$tixgrid->set(3,0, -itemtype=>'text', -text=>"origin");
|
||||
$tixgrid->sizeColumn(3, -size=>'auto');
|
||||
|
||||
$tixgrid->set(4,0, -itemtype=>'text', -text=>"facility");
|
||||
$tixgrid->sizeColumn(4, -size=>'auto');
|
||||
|
||||
$tixgrid->set(5,0, -itemtype=>'text', -text=>"severity");
|
||||
$tixgrid->sizeColumn(5, -size=>'auto');
|
||||
|
||||
$tixgrid->set(6,0, -itemtype=>'text', -text=>"time");
|
||||
$tixgrid->sizeColumn(6, -size=>'auto');
|
||||
|
||||
$tixgrid->set(7,0, -itemtype=>'text', -text=>"message");
|
||||
$tixgrid->sizeColumn(7, -size=>'auto');
|
||||
|
||||
my $srl_x = $poe_main_window -> Scrollbar(-orient=>'h',-command=>[xview => $tixgrid]);
|
||||
my $srl_y = $poe_main_window -> Scrollbar(-orient=>'v',-command=>[yview => $tixgrid]);
|
||||
$tixgrid -> configure(-yscrollcommand=>['set', $srl_y], -xscrollcommand=>['set',$srl_x]);
|
||||
|
||||
$tixgrid->grid(-row=>1, -column=>1, -sticky=>"NESW");
|
||||
$srl_y -> grid(-row=>1, -column=>2, -sticky=>"ns");
|
||||
$srl_x -> grid(-row=>2, -column=>1, -sticky=>"ew");
|
||||
|
||||
$tixgrid->bind('<ButtonRelease-3>' => [\&tix_right_click]);
|
||||
|
||||
$poe_main_window->gridColumnconfigure(1, -weight => 1);
|
||||
$poe_main_window->gridRowconfigure(1, -weight => 1);
|
||||
|
||||
#$kernel->yield("ev_loop");
|
||||
}
|
||||
sub syslogdeamonpoe {
|
||||
#my ($kernel, $session, $heap) = @_[KERNEL, SESSION, HEAP];
|
||||
POE::Component::Server::Syslog::UDP->spawn(
|
||||
#Type => 'udp',
|
||||
BindAddress => '0.0.0.0',
|
||||
BindPort => 514,
|
||||
InputState => \&input,
|
||||
);
|
||||
#$_[KERNEL]->yield("ev_loop");
|
||||
}
|
||||
sub loop {
|
||||
my ($kernel, $session, $heap) = @_[KERNEL, SESSION, HEAP];
|
||||
#$_[HEAP]->{counter}++;
|
||||
#$poe_main_window->update; # Needed on SunOS & MacOS-X
|
||||
#sleep 1;
|
||||
print "$kernel, $session, $heap\n";
|
||||
#$_[KERNEL]->yield("ev_loop");
|
||||
}
|
||||
sub input {
|
||||
#print "$_[ARG0]\n";
|
||||
my $sever = $_[10]->{severity};
|
||||
my $facil = $_[10]->{facility};
|
||||
my $message = $_[10]->{msg};
|
||||
my $sender = $_[10]->{host};
|
||||
my $stime = $_[10]->{time};
|
||||
|
||||
($sender) = $sender =~ /([^.]*)\./;
|
||||
|
||||
#von reihe 1 bis ende eine zeile nach unten verschieben
|
||||
$tixgrid->moveRow(1,$entbox[3],1);
|
||||
@entbox=(0, 1, $entbox[2], $entbox[3]+1);
|
||||
|
||||
#my $hostname;
|
||||
my $origin;
|
||||
#my $otime;
|
||||
|
||||
|
||||
|
||||
if ($message =~ /Address=/) {
|
||||
#$hostname = "";
|
||||
if ($message =~ /Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/) {
|
||||
($origin, $stime, undef, $message) = $message =~ /Address=([^\s]*) (.*:[0-9]{1,2}) ([^\s]*) (.*)/;
|
||||
$message =~ s/$origin//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
else {
|
||||
($origin, $message) = $message =~ /Address=([^\s]*) (.*)/i;
|
||||
$message =~ s/Address=$origin//;
|
||||
$message .= " # fwd. by $sender";
|
||||
}
|
||||
}
|
||||
else {
|
||||
$origin=$sender;
|
||||
if ($message =~ /[a-z]{3} [0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{3}/i) {
|
||||
($stime) = $message =~ /([a-z]{3} [0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{3})/i;
|
||||
$message =~ s/$stime//;
|
||||
}
|
||||
elsif ($message =~ /[a-z]{3} [0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/i) {
|
||||
($stime) = $message =~ /([a-z]{3} [0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2})/i;
|
||||
$message =~ s/$stime//;
|
||||
}
|
||||
}
|
||||
$message =~ s/\s{2,}/ /;
|
||||
|
||||
$tixgrid->selectionClear(0,0,'max','max');
|
||||
$selection++;
|
||||
print "setze selection (new msg) $selection\n";
|
||||
$tixgrid->selectionSet(0,$selection,7,$selection);
|
||||
|
||||
|
||||
my $localt=localtime;
|
||||
|
||||
$tixgrid->set(1,1, -itemtype=>'text', -text=>"$localt"); # ok
|
||||
#$tg->bind('<ButtonRelease-3>' => [\&test, 1, 1]);
|
||||
|
||||
|
||||
$tixgrid->set(2,1, -itemtype=>'text', -text=>"$sender"); # sender
|
||||
$tixgrid->set(3,1, -itemtype=>'text', -text=>"$origin"); # origin
|
||||
|
||||
$tixgrid->set(4,1, -itemtype=>'text', -text=>"$facility[$facil]"); # ok
|
||||
$tixgrid->set(5,1, -itemtype=>'text', -text=>"$severity[$sever]"); # ok
|
||||
|
||||
$tixgrid->set(6,1, -itemtype=>'text', -text=>"$stime"); # ok
|
||||
$tixgrid->set(7,1, -itemtype=>'text', -text=>"$message"); # message
|
||||
|
||||
#print "$localt|$sender|$origin|$facility[$facil]|$severity[$sever]|$stime|$message\n";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
52
Perl syslog server/test.pl
Normal file
52
Perl syslog server/test.pl
Normal file
@@ -0,0 +1,52 @@
|
||||
#! /usr/bin/perl
|
||||
|
||||
use warnings;
|
||||
use strict;
|
||||
use Tk;
|
||||
use Tk::Table;
|
||||
|
||||
my $mw = new MainWindow;
|
||||
my $top = $mw->Table(-rows => 2, -columns => 2);
|
||||
foreach my $r (0..1) {
|
||||
foreach my $c (0..1) {
|
||||
$top->put($r,$c,"$r,$c");
|
||||
}
|
||||
}
|
||||
my $button = $mw->Button(-text => 'Resize', -command => [\&resize_, $top]);
|
||||
|
||||
$button->grid (-row=>1, -column=>1);
|
||||
$top->grid (-row=>2, -column=>1);
|
||||
|
||||
MainLoop;
|
||||
|
||||
sub resize {
|
||||
my ($table) = @_;
|
||||
|
||||
print "old table dimensions: ",
|
||||
$table->totalRows, " rows and ",
|
||||
$table->totalColumns, " columns\n";
|
||||
$table->configure(-rows => 5, -columns => 5);
|
||||
print "new table dimensions: ",
|
||||
$table->totalRows, " rows and ",
|
||||
$table->totalColumns, " columns\n";
|
||||
}
|
||||
|
||||
# Try filling the new area in:
|
||||
|
||||
sub resize_ {
|
||||
my ($table) = @_;
|
||||
|
||||
print "old table dimensions: ",
|
||||
$table->totalRows, " rows and ",
|
||||
$table->totalColumns, " columns\n";
|
||||
$table->configure(-rows => 5, -columns => 5);
|
||||
foreach my $r (2..4) {
|
||||
foreach my $c (2..4) {
|
||||
$table->put($r,$c,"$r,$c");
|
||||
}
|
||||
}
|
||||
$table->put(1,1,"KUCK");
|
||||
print "new table dimensions: ",
|
||||
$table->totalRows, " rows and ",
|
||||
$table->totalColumns, " columns\n";
|
||||
}
|
||||
Reference in New Issue
Block a user