in reply to Extracting data from a firewall log
Here is my little script so far:
#!/usr/bin/perl
#This script will be run against our Firewall logs. It will extract the information we want and send it to a new log.
#Open the firewall script to allow Perl to read it and gather data
open(FWLOG,"firewall.txt");
while(<FWLOG>)
#Close the file
close FWLOG;
It is not much, but I am trying to grasp the basic and understand it all.
Tarballed
|
|---|