https://github.com/pualien/vmware-snort3
VMware Debian 8.1 image with snort3 and snort2 preconfigured
https://github.com/pualien/vmware-snort3
Last synced: 3 months ago
JSON representation
VMware Debian 8.1 image with snort3 and snort2 preconfigured
- Host: GitHub
- URL: https://github.com/pualien/vmware-snort3
- Owner: pualien
- License: gpl-2.0
- Created: 2015-10-21T11:51:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-23T15:39:37.000Z (over 9 years ago)
- Last Synced: 2025-01-09T07:13:04.169Z (5 months ago)
- Homepage:
- Size: 828 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VMware-Snort3
VMware Debian 8.1 image with snort3 and snort2 preconfigured:* Memory: 724 MBytes
* Processor: 1
* Hard Disk: 50 GBytes (6.1 GBytes occupied, 41.9 GBytes free)
* Network Adapter: NATFeel free to customize these settings.
### Download
Download virtual machine image @ [Debian 8.1+snort3+snort2.zip][mega] size: 2.32 GBytes, uncompressed 6.56 GBytes.### Login
To login digit:
* “user”, as username,
* “password”, as password.### Root
To execute root operations, digit ```$ su``` command and then write “toor” as password.### Running snort as root
snort3 version 3.0.0-a2-167:
```
$ snort3a
```
snort3 version 3.0.0-a2-172:
```
$ snort3b
```
snort2 version 2.9.7.6 GRE (Build 285):
```
$ snort2
```### Notes
#####Snort3 environment
Before lunching snort3, don't forget to set up the environment:
```
$ export LUA_PATH=$SNORT3_PATH/include/snort/lua/\?.lua\;\;
$ export SNORT_LUA_PATH=$SNORT3_PATH/etc/snort
```##### Installing next versions of snort3
Download snort3 from official repository:
```
$ git clone git://github.com/snortadmin/snort3.git
$ cd snort3/
```
Create and define installation folder:
```
$ mkdir -p /path/to/snorty
$ export my_path=/path/to/snorty
```
/path/to/snorty could be for example: /opt/snort3_new_versionConfigure and install into my_path:
```
$ autoreconf -isvf
$ ./configure --prefix=$my_path && make -j 8 install
```
Create link to lunch snorty in terminal:
```
$ su ln -s /path/to/snorty/bin/snort /usr/sbin/snorty
```##### Installing next versions of snort2
Easy download and install stable snort2 releases through apt-get:
```
$ su apt-get install snort
```[mega]: