Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
a57d0e88
Commit
a57d0e88
authored
Jun 09, 2017
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
intrusion detection: undo previous, switch to --pcap=intX
parent
6223e0b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
8 deletions
+26
-8
rc.conf.d
src/opnsense/service/templates/OPNsense/IDS/rc.conf.d
+25
-3
suricata.yaml
src/opnsense/service/templates/OPNsense/IDS/suricata.yaml
+1
-5
No files found.
src/opnsense/service/templates/OPNsense/IDS/rc.conf.d
View file @
a57d0e88
{
#
Macro
import
#
}
{%
from
'
OPNsense
/
Macros
/
interface
.
macro
'
import
physical_interface
%}
{%
if
helpers
.
exists
(
'
OPNsense
.
IDS
.
general
'
)
and
OPNsense
.
IDS
.
general
.
enabled
|
default
(
"0"
)
==
"1"
%}
suricata_opnsense_bootup_run
=
"/usr/local/opnsense/scripts/suricata/setup.sh"
suricata_enable
=
"YES"
suricata_opnsense_bootup_run
=
"/usr/local/opnsense/scripts/suricata/setup.sh"
{%
if
OPNsense
.
IDS
.
general
.
ips
|
default
(
"0"
)
==
"1"
%}
suricata_netmap
=
"YES"
#
IPS
mode
,
switch
to
netmap
suricata_netmap
=
YES
{%
else
%}
#
IDS
mode
,
pcap
live
mode
suricata_flags
=
"-D --pcap"
{%
set
addFlags
=[]
%}
{%
for
intfName
in
OPNsense
.
IDS
.
general
.
interfaces
.
split
(
','
)
%}
{%
if
loop
.
index
==
1
%}
{
#
enable
first
interface
#
}
suricata_interface
=
"{{ physical_interface(intfName) }}"
{%
else
%}
{
#
store
additional
interfaces
to
addFlags
#
}
{%
do
addFlags
.
append
(
physical_interface
(
intfName
))
%}
{%
endif
%}
{%
endfor
%}
{
#
append
additional
interfaces
#
}
suricata_flags
=
"-D {%
for intf in addFlags
%} --pcap={{ intf }} {% endfor
%} "
{%
endif
%}
{%
else
%}
suricata_enable
=
"NO"
{%
endif
%}
src/opnsense/service/templates/OPNsense/IDS/suricata.yaml
View file @
a57d0e88
...
...
@@ -748,12 +748,8 @@ logging:
format
:
"
[%i]
<%d>
--
"
pcap
:
{
%
if helpers.exists('OPNsense.IDS.general.interfaces') %
}
{
%
for intfName in OPNsense.IDS.general.interfaces.split('
,
'
)
%}
-
interface:
{{physical_interface(intfName)}}
- interface
:
default
promisc
:
{
%
if helpers.exists('OPNsense.IDS.general.promisc') and OPNsense.IDS.general.promisc|default('0') == '1' %
}
yes
{
%
else %
}
no
{
%
endif %
}
# promiscuous mode
{
%
endfor %
}
{
%
endif %
}
pcap-file
:
# Possible values are:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment