Go to file
T ca382c0f8a move installation into install.sh 2019-02-01 19:17:16 +01:00
utils Added support for special functions 2018-11-01 14:59:44 -05:00
webserver dnp3 offsets starting on zero 2019-01-14 03:46:33 -06:00
Dockerfile move installation into install.sh 2019-02-01 19:17:16 +01:00
README.md use requirements.txt to fix python package versions 2019-02-01 16:26:49 +01:00
install.sh Tested with Dockerfile 2019-01-31 23:38:16 +01:00
requirements.txt use requirements.txt to fix python package versions 2019-02-01 16:26:49 +01:00

README.md

OpenPLC Runtime version 3

OpenPLC is an open-source Programmable Logic Controller that is based on easy to use software. Our focus is to provide a low cost industrial solution for automation and research. OpenPLC has been used in many research papers as a framework for industrial cyber security research, given that it is the only controller to provide the entire source code. The OpenPLC Project consists of three sub-projects:

  1. Runtime
  2. Programming editor
  3. HMI builder

Installation:

git clone https://github.com/thiagoralves/OpenPLC_v3.git
cd OpenPLC_v3
./install.sh [platform]

Where [platform] can be:

win - Install OpenPLC on Windows over Cygwin

linux - Install OpenPLC on a Debian-based Linux distribution

docker - Used by the Dockerfile (i.e. doesn't invoke sudo)

rpi - Install OpenPLC on a Raspberry Pi

custom - Skip all specific package installation and tries to install OpenPLC assuming your system already has all dependencies met. This option can be useful if you're trying to install OpenPLC on an unsuported Linux platform or had manually installed all the dependency packages before.

Building, Installing and Running inside Docker

Make sure docker is installed

Build

# instead of running install.sh as stated above, run:
docker build -t openplc:v3 .

RUN

Devices can be passed to the docker daemon using the -v flag (e.g. -v /dev/ttyACM0:/dev/ttyACM0)

docker run -it --rm --privileged -p 8080:8080 openplc:v3