X10 Community Forum

📸Cameras & Camera Software => Camera General Discussion => Topic started by: Ski on September 13, 2009, 12:51:53 PM

Title: Vanguard Vs. Iwatch
Post by: Ski on September 13, 2009, 12:51:53 PM
Hi all,

I have Active Home Pro on my computer, I then added Vanguard. Once I added Vanguard it messed up my system so bad, that I had to reload windows to fix the problem (twice!). Computer is ONLY used for home security. No other programs are on it (except LogMeIn).

OK, so that does not work. I am now looking at adding the Iwatch module to my AHP. What are the trade offs? What does Vanguard do that the Iwatch does not do, or the other way around???

Or is it just more $$$$$.

THANKS for ANY help or advice.

Greg
Title: Re: Vanguard Vs. Iwatch
Post by: arefin1 on October 18, 2009, 04:30:59 AM
You can use Iwatch its better then venguard . To use Iwatch

iWatch is very simple to use, suppose you want to watch the change in /etc filesystem, you just need to run it in the console

$ iwatch /etc

and iwatch will tell you if something changes in this directory. And if you want to be notified per email:

$ iwatch -m admin@smsgw.local /etc

In this case, the admin will get email notification (maybe you can use your sms gateway account, so you will be alarmed immediately anytime and anywhere). And if you want to monitor many difference directories you can use a configuration file. This configuration file is an xml file with an easy understandable structure.

Code: [Select]
<config>
  <guard email="iwatch@localhost" name="iWatch"/>
  <watchlist>
    <title>Operating System</title>
    <contactpoint email="admin@localhost" name="admin"/>
    <path type="single">/etc</path>
    <path type="single">/sbin</path>
    <path type="recursive">/dev</path>
    <path type="exception">/dev/pts</path>
  </watchlist>
  <watchlist>
    <title>Website</title>
    <contactpoint email="webmaster@localhost" name="webmaster"/>
    <path type="recursive">/var/www/localhost/htdocs</path>
  </watchlist>
</config>
__________
 customer finder (http://oynetwork.com/)
Title: Re: Vanguard Vs. Iwatch
Post by: Ski on October 28, 2009, 03:13:43 PM
Thanks Arefin1.