Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,18 @@ https://docs.zeek.org/en/current/install/install.html#required-dependencies

### Patch Installation
1. Switch to a snapshot of the Zeek repository that is compatible with the GOOSE parser.
```cd <zeek_dir>/
```
cd <zeek_dir>/
git checkout aff3f4
git submodule update --init --recursive
cd ..
```
2. Apply the GOOSE parser as a patch. The whitespace warnings may be ignored.
<br/>`git apply --reject --whitespace=fix goose_parser.patch`
```
git clone https://github.com/smartgridadsc/Goose-protocol-parser-for-Zeek-IDS
mv Goose-protocol-parser-for-Zeek-IDS/patch/goose_parser.patch zeek/ && cd zeek
git apply --reject --whitespace=fix goose_parser.patch
```
<br/>Note: Please refer to the User Guide in the [doc/](doc) folder for the full list of modified files.

3. Build and install from source. Some commands may require root privileges.
Expand Down