# set date to your spec: this is month/day/yr/hr/min/sec:
the result shows the devices with their errorcount.i like to be able to check if the devices community names is "privator" then the device should should show equal to zero, otherwise show me the number of hits that soeone try to hack the device.Please advices or help!!!!
Last edited by pludi; 10-20-2009 at 03:27 PM..
Reason: code tags!!!!!
all i wanted to know if there is someone who is trying to hack my devices.
thats all
if there any command i can use to see if if my device is been hacked or not.
Thanks lemseffer
---------- Post updated at 12:04 PM ---------- Previous update was at 12:03 PM ----------
thanks rdcwayx, but i'm looking for a code to help me get this result
not a tool.
Thanks
---------- Post updated at 08:36 AM ---------- Previous update was at 07:59 AM ----------
good morning all,
here is what i did :
but the answer is wrong cause i get the errorcount.
i want to be able to see all the devices equal to zero if the community name is privator
thanks for your help
---------- Post updated at 03:58 PM ---------- Previous update was at 08:36 AM ----------
hello all,
i want to Perform an SNMP set request in SNMP agent. return 0 if the connect succeeded.
here is what i did :
LIST = 'ypcat hosts|| sort | awk '{print $2}''
for Devices in $LIST
do
Errorcount=`snmpget -v1 -c privator $Devices snmpInBadCommunityNames.O |awk '{print $4}' `
if [ Errorcount > 0 ]; then
Devices=$Errorcount
echo $Devices
# line added
echo "$sysdate $Devices" >> /tmp/hosthistory.txt
fi
done
but the answer is wrong cause i'm getting an errorcount.
Last edited by Franklin52; 10-21-2009 at 11:41 AM..
Reason: Please use code tags!
hi,
i am trying this while loop and i only want that it should only read food as pizza....no other entry should be taken here.
#!/usr/bin/perl -w
$food = " ";
while ( $food ne 'pizza' )
{
print 'enter what you had last night: ';
chomp ($food = <STDIN>);
#print $food ;
}
... (2 Replies)
I was trying out some new series to get it print
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
and the seond one is
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
but was unable to get the result. (5 Replies)
Hi All,
How do I code a password with multiple special characters in it.
Example: password is P#utar&@
None of the belwo options worked
1. passwd="P#utar&@"
2. passwd='P#utar&@'
Any help will be greatly appreciated. (3 Replies)
I want to compare some files.
say iam having 2 sets of files ,each is having some 10 files.
ie,
file1
1a.txt
1b.txt
1c.txt
...
file2
2a.txt
2b.txt
2c.txt
...
i need to read line by line of this files parralley..
ie.. i want to read file1 first line that is 1a.txt and file2... (2 Replies)
Hi,
iam having the file as follows:
ABCDEFGH|0987654321234567
ABCDEFGH|0987654321234523
ABCDEFGH|0987654321234556
ABCDEFGH|0987654321234545
POIUYTRE|1234567890890678
POIUYTRE|1209867757352567
POIUYTRE|5463879088797131
POIUYTRE|5468980091344456
pls provide me the split command
... (14 Replies)