-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix diagnostics information presented and update dependencies (#2157)
* Fix endpoint count diagnostics * Fix that sessions are not closed correctly. * Support syslog and systemd log formatters
- Loading branch information
1 parent
d527fdd
commit 1474383
Showing
29 changed files
with
392 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
version: "3.9" | ||
services: | ||
############################ | ||
# OPC PLC Simulation | ||
############################ | ||
opcplc: | ||
command: [ | ||
"--sph=True", | ||
"--spf=/shared/pn.json", | ||
"--pn=50000", | ||
"--fn=8000", | ||
"--aa=True", | ||
"--ut=True" | ||
] | ||
############################ | ||
# Network capture | ||
############################ | ||
pcap: | ||
container_name: pcap | ||
image: travelping/pcap | ||
cap_add: | ||
- NET_ADMIN | ||
network_mode: host | ||
volumes: | ||
- shared:/data:rw | ||
environment: | ||
IFACE: any | ||
FORMAT: pcapng | ||
MAXFILENUM: 10 | ||
MAXFILESIZE: 200 | ||
FILENAME: dump.pcap | ||
FILTER: "src or dst host 192.168.80.2" | ||
volumes: | ||
shared: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.