is firewall of server blocking my script ... ?!

hello and this is one of my first scripts, which are not executable at present.
one year ago, there was no problem to use this script as shell-script (not yet in perl) like here :

#!/bin/bash
awk '{
for (i = 1; i <= NF; i++)
if ($i ~ /^SRC=/)
print substr($i, 5)
}' /var/log/syslog | sort -u | while read ip;
do
printf ' INVALID STATE ' && printf ' === %s ===\n' "$ip"
whois "$ip" >> log-002.txt;
done

I have used this script to filter syslog output after connections who are knocking on
the phone-lines ...

Now this script seems always to be stopped by the firewall of my provider. One year ago or 6 months ago this script was not stopped by third person (or program).

the output of today is the same like as one week ago:

INVALID STATE === fe80:0000:0000:0000:0a95:2aff:fe7a:bca7 ===

Is this the firewall of the provider stopping my script ?!

1 Comment

Your post is not a real blog post, it's rather a question. It's not Perl related, either. Why to post such a shell question on a Perl blog site? You might get more answers at Stack Overflow.

Leave a comment

About hulkTM

user-pic new to blogging sites ...