This is a discussion on RE: [Snort-users] OpenAanval Intrusion Detection Console problem within the Snort forums, part of the System Security and Security Related category; -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I had a similar problem, but I think I got it figured out. I ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 I had a similar problem, but I think I got it figured out. I sent an email to OA, here is the relevant portion: I think I have it working. As your documentation is kind of skimpy, I'll outline my trouble shooting steps. I ran the ids_background.pl file without backgrounding it so I could see the errors. It was complaining about an invalid function, mysql_connect();. Since my website is written in php, I knew it was available. I figured php as a cgi must have it's own php.ini. It did. I added "extention=mysql.so" to it and all was right with the world. A few note worth items about Debian: There isn't a /usr/bin/php on some installs. There is a /usr/bin/php4. I had to make a symlynk (ln -s /usr/bin/php /usr/bin/php4). PHP is install as a mod (mod_php4) and a cgi. Their php.ini files are /etc/php4/apache/php.ini and /etc/php4/cgi/php.ini respectively. Tobias You must run the two perl scripts that come bundled with the package. ../apps/ids_background.pl > /dev/null & ../apps/ids_misc.pl > /dev/null & You must run them from your install directory. Oh, by the way...Aanval is shaping up nicely...for those interested - -----Original Message----- From: snort-users-admin@lists.sourceforge.net [mailto:snort-users-admin@lists.sourceforge.net] On Behalf Of Alejandro Flores Sent: Thursday, April 01, 2004 7:46 PM To: faizaln@celcom.com.my Cc: slave_tothe_box@yahoo.com; snort-users@lists.sourceforge.net Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console problem Hello, I tried to install this program, but in the readme.txt, it tells you to add some tables to your snort database, But, it have a table with the same name of snort, so when you try to add it, mysql complains about a table with same name (signature). The problem that you pointed is happening 'cause you didn't created the tables. Look in where/is/openAnval/db/ . Regards, Alejandro Flores |> For your information, I'm using IE version 6.0.28. |> Could anybody guide me to extensive installation manual. |> |> TQVM |> |> |> Message: 13 |> Date: Thu, 1 Apr 2004 07:13:19 -0800 (PST) |> From: James Nonya <slave_tothe_box@yahoo.com> |> Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console problem |> To: snort-users@lists.sourceforge.net |> |> On Thu, 1 Apr 2004 17:57:32 +0800 |> faizaln@celcom.com.my wrote: |> | |>> > |>> > |>> > |>> > |>> > I'm having problem to get OpenAanval Intrusion | |> Detection Console works with | |>> > snort. |>> > I managed to installed :- |>> > |>> > 1) openaanval-latest-stable.tar.gz |>> > 2) snort version 2.1.0 with MySQL enable |>> > 3) MySQL server version 4.0.12 |>> > 4) Redhat 9 |>> > 5) httpd version 2.0.45 + php ver 4.3.1 |>> > |>> > I received error message at the url when click on | |> LIVE Monitor (view a or | |>> > b) : |>> > "ERROR: No Active Sensors - ( You may receive a | |> javascript error ) | |>> > |>> > Could anybody assist me on the situation. |>> > Thank you. |>> > | |> |> >From the website: |> |> A: The OpenAanval Console ONLY supports MSIE 5.x and |> above. |> |> Are you running IE as your browser? Heh...seems like |> a stupid restriction to me.... |> |> |> |> ------------------------------------------------------- |> This SF.Net email is sponsored by: IBM Linux Tutorials |> Free Linux tutorial presented by Daniel Robbins, President and CEO of |> GenToo technologies. Learn everything from fundamentals to system |> administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click |> _______________________________________________ |> Snort-users mailing list |> Snort-users@lists.sourceforge.net |> Go to this URL to change user options or unsubscribe: |> https://lists.sourceforge.net/lists/...fo/snort-users |> Snort-users list archive: |> http://www.geocrawler.com/redir-sf.p...st=snort-users |> - --TriForSec http://www.triforsec.com.br/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFAcav6RJX8S0T0CkURAu1uAKCCKs5BqRAlq3dw1NPjHy G6WdJ8VgCgtHKv AcW9E+yiTkl7T7sdYzj1cZI= =yv93 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ Snort-users mailing list Snort-users@lists.sourceforge.net Go to this URL to change user options or unsubscribe: https://lists.sourceforge.net/lists/...fo/snort-users Snort-users list archive: http://www.geocrawler.com/redir-sf.p...st=snort-users |
|
|||
|
FIX:
The older versions, like 1.1 and 1.2 contain a working database file in the db directory. You can either use this one, or you can just drop the tables it complains about from your database... The tables it is complaining about are static and used for informational purposes. Aanval told me that they placed it in the latest version because many people's snort installations have it missing. Also mentioned, was the next version 1.5 is going to contain auto-table creation. Upon the first run of openaanval it will check for the existance of tables and create them if they do not exist. They have pretty good support, just give them a shout. rice@up.edu (Tobias Rice) wrote in message news:<c4sabu$2dtj$1@FreeBSD.csie.NCTU.edu.tw>... > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > I had a similar problem, but I think I got it figured out. I sent an > email to OA, here is the relevant portion: > > I think I have it working. As your documentation is kind of skimpy, I'll > outline my trouble shooting steps. I ran the ids_background.pl file > without backgrounding it so I could see the errors. It was complaining > about an invalid function, mysql_connect();. Since my website is written > in php, I knew it was available. I figured php as a cgi must have it's > own php.ini. It did. I added "extention=mysql.so" to it and all was > right with the world. > A few note worth items about Debian: > There isn't a /usr/bin/php on some installs. There is a /usr/bin/php4. I > had to make a symlynk (ln -s /usr/bin/php /usr/bin/php4). > PHP is install as a mod (mod_php4) and a cgi. Their php.ini files are > /etc/php4/apache/php.ini and /etc/php4/cgi/php.ini respectively. > > > Tobias > > > You must run the two perl scripts that come bundled with the package. > > ./apps/ids_background.pl > /dev/null & > ./apps/ids_misc.pl > /dev/null & > > You must run them from your install directory. > > Oh, by the way...Aanval is shaping up nicely...for those interested > > > > - -----Original Message----- > From: snort-users-admin@lists.sourceforge.net > [mailto:snort-users-admin@lists.sourceforge.net] On Behalf Of Alejandro > Flores > Sent: Thursday, April 01, 2004 7:46 PM > To: faizaln@celcom.com.my > Cc: slave_tothe_box@yahoo.com; snort-users@lists.sourceforge.net > Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console > problem > > Hello, > > I tried to install this program, but in the readme.txt, it tells > you to > add some tables to your snort database, But, it have a table with the > same name of snort, so when you try to add it, mysql complains about a > table with same name (signature). > The problem that you pointed is happening 'cause you didn't > created the > tables. Look in where/is/openAnval/db/ . > > Regards, > Alejandro Flores > > > > > |> For your information, I'm using IE version 6.0.28. > |> Could anybody guide me to extensive installation manual. > |> > |> TQVM > |> > |> > |> Message: 13 > |> Date: Thu, 1 Apr 2004 07:13:19 -0800 (PST) > |> From: James Nonya <slave_tothe_box@yahoo.com> > |> Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console > > problem > > |> To: snort-users@lists.sourceforge.net > |> > |> On Thu, 1 Apr 2004 17:57:32 +0800 > |> faizaln@celcom.com.my wrote: > |> > > |>> > > |>> > > |>> > > |>> > > |>> > I'm having problem to get OpenAanval Intrusion > > |> Detection Console works with > > |>> > snort. > |>> > I managed to installed :- > |>> > > |>> > 1) openaanval-latest-stable.tar.gz > |>> > 2) snort version 2.1.0 with MySQL enable > |>> > 3) MySQL server version 4.0.12 > |>> > 4) Redhat 9 > |>> > 5) httpd version 2.0.45 + php ver 4.3.1 > |>> > > |>> > I received error message at the url when click on > > |> LIVE Monitor (view a or > > |>> > b) : > |>> > "ERROR: No Active Sensors - ( You may receive a > > |> javascript error ) > > |>> > > |>> > Could anybody assist me on the situation. > |>> > Thank you. > |>> > > > > |> >From the website: > |> > |> A: The OpenAanval Console ONLY supports MSIE 5.x and > |> above. > |> > |> Are you running IE as your browser? Heh...seems like > |> a stupid restriction to me.... > |> > |> > |> > |> ------------------------------------------------------- > |> This SF.Net email is sponsored by: IBM Linux Tutorials > |> Free Linux tutorial presented by Daniel Robbins, President and CEO of > |> GenToo technologies. Learn everything from fundamentals to system > |> administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > |> _______________________________________________ > |> Snort-users mailing list > |> Snort-users@lists.sourceforge.net > |> Go to this URL to change user options or unsubscribe: > |> https://lists.sourceforge.net/lists/...fo/snort-users > |> Snort-users list archive: > |> http://www.geocrawler.com/redir-sf.p...st=snort-users > |> > > > > > > - --TriForSec > http://www.triforsec.com.br/ > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.3 (MingW32) > Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org > > iD8DBQFAcav6RJX8S0T0CkURAu1uAKCCKs5BqRAlq3dw1NPjHy G6WdJ8VgCgtHKv > AcW9E+yiTkl7T7sdYzj1cZI= > =yv93 > -----END PGP SIGNATURE----- > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > Snort-users mailing list > Snort-users@lists.sourceforge.net > Go to this URL to change user options or unsubscribe: > https://lists.sourceforge.net/lists/...fo/snort-users > Snort-users list archive: > http://www.geocrawler.com/redir-sf.p...st=snort-users |
|
|||
|
I just downloaded 1.4 again on a different box this afternoon and I
got a whole different install then 1 week ago. (same 1.4 download) The installer is much cleaner and now auto-creates all tables and even a few of snorts tables which might not exist. Very hand! I didn't see much of a feature change, so these might be minor sub-version changes. But still it might be a good idea to give it a shot if you had or are having trouble. porksnack@ntusecure.com (Pork Snack SPAM) wrote in message news:<4562534f.0404061139.4cc3e3d@posting.google.c om>... > FIX: > > The older versions, like 1.1 and 1.2 contain a working database file > in the db directory. You can either use this one, or you can just drop > the tables it complains about from your database... The tables it is > complaining about are static and used for informational purposes. > > Aanval told me that they placed it in the latest version because many > people's snort installations have it missing. Also mentioned, was the > next version 1.5 is going to contain auto-table creation. Upon the > first run of openaanval it will check for the existance of tables and > create them if they do not exist. > > They have pretty good support, just give them a shout. > > rice@up.edu (Tobias Rice) wrote in message news:<c4sabu$2dtj$1@FreeBSD.csie.NCTU.edu.tw>... > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > I had a similar problem, but I think I got it figured out. I sent an > > email to OA, here is the relevant portion: > > > > I think I have it working. As your documentation is kind of skimpy, I'll > > outline my trouble shooting steps. I ran the ids_background.pl file > > without backgrounding it so I could see the errors. It was complaining > > about an invalid function, mysql_connect();. Since my website is written > > in php, I knew it was available. I figured php as a cgi must have it's > > own php.ini. It did. I added "extention=mysql.so" to it and all was > > right with the world. > > A few note worth items about Debian: > > There isn't a /usr/bin/php on some installs. There is a /usr/bin/php4. I > > had to make a symlynk (ln -s /usr/bin/php /usr/bin/php4). > > PHP is install as a mod (mod_php4) and a cgi. Their php.ini files are > > /etc/php4/apache/php.ini and /etc/php4/cgi/php.ini respectively. > > > > > > Tobias > > > > > > You must run the two perl scripts that come bundled with the package. > > > > ./apps/ids_background.pl > /dev/null & > > ./apps/ids_misc.pl > /dev/null & > > > > You must run them from your install directory. > > > > Oh, by the way...Aanval is shaping up nicely...for those interested > > > > > > > > - -----Original Message----- > > From: snort-users-admin@lists.sourceforge.net > > [mailto:snort-users-admin@lists.sourceforge.net] On Behalf Of Alejandro > > Flores > > Sent: Thursday, April 01, 2004 7:46 PM > > To: faizaln@celcom.com.my > > Cc: slave_tothe_box@yahoo.com; snort-users@lists.sourceforge.net > > Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console > > problem > > > > Hello, > > > > I tried to install this program, but in the readme.txt, it tells > > you to > > add some tables to your snort database, But, it have a table with the > > same name of snort, so when you try to add it, mysql complains about a > > table with same name (signature). > > The problem that you pointed is happening 'cause you didn't > > created the > > tables. Look in where/is/openAnval/db/ . > > > > Regards, > > Alejandro Flores > > > > > > > > > > |> For your information, I'm using IE version 6.0.28. > > |> Could anybody guide me to extensive installation manual. > > |> > > |> TQVM > > |> > > |> > > |> Message: 13 > > |> Date: Thu, 1 Apr 2004 07:13:19 -0800 (PST) > > |> From: James Nonya <slave_tothe_box@yahoo.com> > > |> Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console > > > > problem > > > > |> To: snort-users@lists.sourceforge.net > > |> > > |> On Thu, 1 Apr 2004 17:57:32 +0800 > > |> faizaln@celcom.com.my wrote: > > |> > > > |>> > > > |>> > > > |>> > > > |>> > > > |>> > I'm having problem to get OpenAanval Intrusion > > > |> Detection Console works with > > > |>> > snort. > > |>> > I managed to installed :- > > |>> > > > |>> > 1) openaanval-latest-stable.tar.gz > > |>> > 2) snort version 2.1.0 with MySQL enable > > |>> > 3) MySQL server version 4.0.12 > > |>> > 4) Redhat 9 > > |>> > 5) httpd version 2.0.45 + php ver 4.3.1 > > |>> > > > |>> > I received error message at the url when click on > > > |> LIVE Monitor (view a or > > > |>> > b) : > > |>> > "ERROR: No Active Sensors - ( You may receive a > > > |> javascript error ) > > > |>> > > > |>> > Could anybody assist me on the situation. > > |>> > Thank you. > > |>> > > > > > > > |> >From the website: > > |> > > |> A: The OpenAanval Console ONLY supports MSIE 5.x and > > |> above. > > |> > > |> Are you running IE as your browser? Heh...seems like > > |> a stupid restriction to me.... > > |> > > |> > > |> > > |> ------------------------------------------------------- > > |> This SF.Net email is sponsored by: IBM Linux Tutorials > > |> Free Linux tutorial presented by Daniel Robbins, President and CEO of > > |> GenToo technologies. Learn everything from fundamentals to system > > |> administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > |> _______________________________________________ > > |> Snort-users mailing list > > |> Snort-users@lists.sourceforge.net > > |> Go to this URL to change user options or unsubscribe: > > |> https://lists.sourceforge.net/lists/...fo/snort-users > > |> Snort-users list archive: > > |> http://www.geocrawler.com/redir-sf.p...st=snort-users > > |> > > > > > > > > > > > > - --TriForSec > > http://www.triforsec.com.br/ > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v1.2.3 (MingW32) > > Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org > > > > iD8DBQFAcav6RJX8S0T0CkURAu1uAKCCKs5BqRAlq3dw1NPjHy G6WdJ8VgCgtHKv > > AcW9E+yiTkl7T7sdYzj1cZI= > > =yv93 > > -----END PGP SIGNATURE----- > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux Tutorials > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > GenToo technologies. Learn everything from fundamentals to system > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > _______________________________________________ > > Snort-users mailing list > > Snort-users@lists.sourceforge.net > > Go to this URL to change user options or unsubscribe: > > https://lists.sourceforge.net/lists/...fo/snort-users > > Snort-users list archive: > > http://www.geocrawler.com/redir-sf.p...st=snort-users |
|
|||
|
the docs don't exist yet so we have been told. But the official forum
has quick response times to most problems. http://www.aanval.com/forum/phpBB2/ bm0714@hotmail.com (BM) wrote in message news:<6338798c.0404121854.8c0e484@posting.google.c om>... > I just downloaded 1.4 again on a different box this afternoon and I > got a whole different install then 1 week ago. (same 1.4 download) > > The installer is much cleaner and now auto-creates all tables and even > a few of snorts tables which might not exist. Very hand! > > I didn't see much of a feature change, so these might be minor > sub-version changes. But still it might be a good idea to give it a > shot if you had or are having trouble. > > porksnack@ntusecure.com (Pork Snack SPAM) wrote in message news:<4562534f.0404061139.4cc3e3d@posting.google.c om>... > > FIX: > > > > The older versions, like 1.1 and 1.2 contain a working database file > > in the db directory. You can either use this one, or you can just drop > > the tables it complains about from your database... The tables it is > > complaining about are static and used for informational purposes. > > > > Aanval told me that they placed it in the latest version because many > > people's snort installations have it missing. Also mentioned, was the > > next version 1.5 is going to contain auto-table creation. Upon the > > first run of openaanval it will check for the existance of tables and > > create them if they do not exist. > > > > They have pretty good support, just give them a shout. > > > > rice@up.edu (Tobias Rice) wrote in message news:<c4sabu$2dtj$1@FreeBSD.csie.NCTU.edu.tw>... > > > -----BEGIN PGP SIGNED MESSAGE----- > > > Hash: SHA1 > > > > > > I had a similar problem, but I think I got it figured out. I sent an > > > email to OA, here is the relevant portion: > > > > > > I think I have it working. As your documentation is kind of skimpy, I'll > > > outline my trouble shooting steps. I ran the ids_background.pl file > > > without backgrounding it so I could see the errors. It was complaining > > > about an invalid function, mysql_connect();. Since my website is written > > > in php, I knew it was available. I figured php as a cgi must have it's > > > own php.ini. It did. I added "extention=mysql.so" to it and all was > > > right with the world. > > > A few note worth items about Debian: > > > There isn't a /usr/bin/php on some installs. There is a /usr/bin/php4. I > > > had to make a symlynk (ln -s /usr/bin/php /usr/bin/php4). > > > PHP is install as a mod (mod_php4) and a cgi. Their php.ini files are > > > /etc/php4/apache/php.ini and /etc/php4/cgi/php.ini respectively. > > > > > > > > > Tobias > > > > > > > > > You must run the two perl scripts that come bundled with the package. > > > > > > ./apps/ids_background.pl > /dev/null & > > > ./apps/ids_misc.pl > /dev/null & > > > > > > You must run them from your install directory. > > > > > > Oh, by the way...Aanval is shaping up nicely...for those interested > > > > > > > > > > > > - -----Original Message----- > > > From: snort-users-admin@lists.sourceforge.net > > > [mailto:snort-users-admin@lists.sourceforge.net] On Behalf Of Alejandro > > > Flores > > > Sent: Thursday, April 01, 2004 7:46 PM > > > To: faizaln@celcom.com.my > > > Cc: slave_tothe_box@yahoo.com; snort-users@lists.sourceforge.net > > > Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console > > > problem > > > > > > Hello, > > > > > > I tried to install this program, but in the readme.txt, it tells > > > you to > > > add some tables to your snort database, But, it have a table with the > > > same name of snort, so when you try to add it, mysql complains about a > > > table with same name (signature). > > > The problem that you pointed is happening 'cause you didn't > > > created the > > > tables. Look in where/is/openAnval/db/ . > > > > > > Regards, > > > Alejandro Flores > > > > > > > > > > > > > > > |> For your information, I'm using IE version 6.0.28. > > > |> Could anybody guide me to extensive installation manual. > > > |> > > > |> TQVM > > > |> > > > |> > > > |> Message: 13 > > > |> Date: Thu, 1 Apr 2004 07:13:19 -0800 (PST) > > > |> From: James Nonya <slave_tothe_box@yahoo.com> > > > |> Subject: Re: [Snort-users] OpenAanval Intrusion Detection Console > > > > > > problem > > > > > > |> To: snort-users@lists.sourceforge.net > > > |> > > > |> On Thu, 1 Apr 2004 17:57:32 +0800 > > > |> faizaln@celcom.com.my wrote: > > > |> > > > > |>> > > > > |>> > > > > |>> > > > > |>> > > > > |>> > I'm having problem to get OpenAanval Intrusion > > > > |> Detection Console works with > > > > |>> > snort. > > > |>> > I managed to installed :- > > > |>> > > > > |>> > 1) openaanval-latest-stable.tar.gz > > > |>> > 2) snort version 2.1.0 with MySQL enable > > > |>> > 3) MySQL server version 4.0.12 > > > |>> > 4) Redhat 9 > > > |>> > 5) httpd version 2.0.45 + php ver 4.3.1 > > > |>> > > > > |>> > I received error message at the url when click on > > > > |> LIVE Monitor (view a or > > > > |>> > b) : > > > |>> > "ERROR: No Active Sensors - ( You may receive a > > > > |> javascript error ) > > > > |>> > > > > |>> > Could anybody assist me on the situation. > > > |>> > Thank you. > > > |>> > > > > > > > > > > |> >From the website: > > > |> > > > |> A: The OpenAanval Console ONLY supports MSIE 5.x and > > > |> above. > > > |> > > > |> Are you running IE as your browser? Heh...seems like > > > |> a stupid restriction to me.... > > > |> > > > |> > > > |> > > > |> ------------------------------------------------------- > > > |> This SF.Net email is sponsored by: IBM Linux Tutorials > > > |> Free Linux tutorial presented by Daniel Robbins, President and CEO of > > > |> GenToo technologies. Learn everything from fundamentals to system > > > |> administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > > |> _______________________________________________ > > > |> Snort-users mailing list > > > |> Snort-users@lists.sourceforge.net > > > |> Go to this URL to change user options or unsubscribe: > > > |> https://lists.sourceforge.net/lists/...fo/snort-users > > > |> Snort-users list archive: > > > |> http://www.geocrawler.com/redir-sf.p...st=snort-users > > > |> > > > > > > > > > > > > > > > > > > - --TriForSec > > > http://www.triforsec.com.br/ > > > -----BEGIN PGP SIGNATURE----- > > > Version: GnuPG v1.2.3 (MingW32) > > > Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org > > > > > > iD8DBQFAcav6RJX8S0T0CkURAu1uAKCCKs5BqRAlq3dw1NPjHy G6WdJ8VgCgtHKv > > > AcW9E+yiTkl7T7sdYzj1cZI= > > > =yv93 > > > -----END PGP SIGNATURE----- > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by: IBM Linux Tutorials > > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > > GenToo technologies. Learn everything from fundamentals to system > > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > > _______________________________________________ > > > Snort-users mailing list > > > Snort-users@lists.sourceforge.net > > > Go to this URL to change user options or unsubscribe: > > > https://lists.sourceforge.net/lists/...fo/snort-users > > > Snort-users list archive: > > > http://www.geocrawler.com/redir-sf.p...st=snort-users |
![]() |
| Thread Tools | |
| Display Modes | |
|
|