2016-04-25 16:25:05 +02:00
|
|
|
About mbusd
|
|
|
|
===========
|
|
|
|
|
2016-04-25 17:13:13 +02:00
|
|
|
**mbusd** is open-source [Modbus TCP to Modbus RTU (RS-232/485)](https://en.wikipedia.org/wiki/Modbus) gateway.
|
2016-04-25 16:25:05 +02:00
|
|
|
|
|
|
|
Features:
|
|
|
|
---------
|
|
|
|
|
|
|
|
* Small footprint - suitable to run on embedded devices and SBCs like Raspberry Pi
|
|
|
|
* Multi-master - multiple TCP masters can access slave devices in RTU network using same gateway
|
|
|
|
* Robustness - can retry requests with mismatched response CRC
|
|
|
|
* Flexible RTU modes - speed/parity/stop-bits/timeouts can be configured for RTU network
|
|
|
|
* Support for both of automatic and manual (using RTS bit) direction control types for RS-485 transceivers
|
|
|
|
|
|
|
|
Supported function codes:
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
* 01: Read coil status
|
|
|
|
* 02: Read input status
|
|
|
|
* 03: Read holding registers
|
|
|
|
* 04: Read input registers
|
|
|
|
* 05: Force single coil
|
|
|
|
* 06: Preset single register
|
|
|
|
* 07: Read exception status
|
|
|
|
* 15: Force multiple coils
|
|
|
|
* 16: Preset multiple registers
|
|
|
|
|
|
|
|
Please note all other function codes (including vendor-specific extensions) are supported on a "best-effort" basis and most likely will fail.
|
|
|
|
|
|
|
|
Configuring and compilation:
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
$ git clone https://github.com/3cky/mbusd.git mbusd.git
|
|
|
|
$ cd mbusd.git
|
|
|
|
$ ./configure
|
|
|
|
$ make
|
|
|
|
# make install
|
|
|
|
$ make clean
|
|
|
|
</pre>
|
|
|
|
|
2017-11-22 09:46:28 +01:00
|
|
|
Compilation using cmake
|
|
|
|
<pre>
|
|
|
|
$ git clone https://github.com/3cky/mbusd.git mbusd.git
|
|
|
|
$ cd mbusd.git
|
|
|
|
$ mkdir -p output.dir && cd output.dir
|
|
|
|
$ cmake ../
|
|
|
|
$ make
|
|
|
|
</pre>
|
|
|
|
|
2016-04-25 16:25:05 +02:00
|
|
|
Usage:
|
|
|
|
------
|
|
|
|
|
|
|
|
mbusd [-h] [-d] [-t] [-v level] [-L logfile] [-p device] [-s speed] [-m mode] \
|
|
|
|
[-P port] [-C maxconn] [-N retries] [-R pause] [-W wait] [-T timeout]
|
|
|
|
|
|
|
|
-h Usage help.
|
|
|
|
-d Instruct mbusd not to fork itself (non-daemonize).
|
2017-11-29 11:39:40 +01:00
|
|
|
-L logfile
|
|
|
|
Specifies log file name ('-' for logging to STDOUT only, default is /var/log/mbusd.log).
|
2016-04-25 16:25:05 +02:00
|
|
|
-v level
|
|
|
|
Specifies log verbosity level (0 for errors only, 1 for warnings
|
|
|
|
and 2 for also information messages.) If mbusd was compiled in debug mode,
|
|
|
|
valid log levels are up to 9, where log levels above 2 forces
|
|
|
|
logging of information about additional internal events.
|
2017-11-29 11:39:40 +01:00
|
|
|
-c cfgfile
|
|
|
|
Read configuration from cfgfile.
|
2016-04-25 16:25:05 +02:00
|
|
|
-p device
|
|
|
|
Specifies serial port device name.
|
|
|
|
-s speed
|
|
|
|
Specifies serial port speed.
|
|
|
|
-m mode
|
|
|
|
Specifies serial port mode (like 8N1).
|
|
|
|
-P port
|
|
|
|
Specifies TCP port number (default 502).
|
2017-11-29 11:39:40 +01:00
|
|
|
-t Enable RTS RS-485 data direction control (if not disabled while compile).
|
|
|
|
-y file
|
|
|
|
Enable RS-485 direction data direction control by writing '1' to file
|
|
|
|
for transmitter enable and '0' to file for transmitter disable
|
|
|
|
-Y file
|
|
|
|
Enable RS-485 direction data direction control by writing '0' to file
|
|
|
|
for transmitter enable and '1' to file for transmitter disable
|
2016-04-25 16:25:05 +02:00
|
|
|
-C maxconn
|
|
|
|
Specifies maximum number of simultaneous TCP connections.
|
|
|
|
-N retries
|
|
|
|
Specifies maximum number of request retries (0 disables retries).
|
|
|
|
-R pause
|
|
|
|
Specifies pause between requests in milliseconds.
|
|
|
|
-W wait
|
|
|
|
Specifies response wait time in milliseconds.
|
|
|
|
-T timeout
|
|
|
|
Specifies connection timeout value in seconds (0 disables timeout).
|
|
|
|
|
|
|
|
Please note running **mbusd** on default Modbus TCP port (502) requires root privileges!
|
|
|
|
|
2017-11-29 11:39:40 +01:00
|
|
|
Configuration file:
|
|
|
|
-------------------
|
|
|
|
**mbusd** can read the configuration from a file specified by `-c` command line flag.
|
|
|
|
Please see [example configuration file](conf/mbusd.conf.example)
|
|
|
|
for complete list of available configuration options.
|
|
|
|
|
2017-11-02 21:28:24 +01:00
|
|
|
systemd:
|
|
|
|
---------------
|
|
|
|
|
2017-11-29 11:39:40 +01:00
|
|
|
**mbusd** has [systemd](https://wiki.archlinux.org/index.php/systemd) support.
|
|
|
|
The build system detects whether the system has systemd after which `sudo make install`
|
|
|
|
installs the `mbusd@.service` file on systems with systemd active.
|
|
|
|
|
2017-11-02 21:28:24 +01:00
|
|
|
The **mbusd** service can be started via:
|
|
|
|
|
2017-11-23 11:09:03 +01:00
|
|
|
# systemctl start mbusd@<serial port>.service
|
|
|
|
|
|
|
|
where `<serial port>` is serial port device name (like `ttyUSB0`).
|
2017-11-02 21:28:24 +01:00
|
|
|
|
2017-11-29 11:39:40 +01:00
|
|
|
**mbusd** started by systemd will read its configuration from file named `/etc/mbusd/mbusd-<serial port>.conf`.
|
|
|
|
This way it's possible to run multiple **mbusd** instances with different configurations.
|
|
|
|
|
2017-11-02 21:35:02 +01:00
|
|
|
To see the **mbusd** service status:
|
|
|
|
|
2017-11-23 11:09:03 +01:00
|
|
|
# systemctl status mbusd@<serial port>.service
|
2017-11-02 21:35:02 +01:00
|
|
|
|
|
|
|
To monitor the **mbusd** service:
|
|
|
|
|
2017-11-23 11:09:03 +01:00
|
|
|
# journalctl -u mbusd@<serial port>.service -f -n 10
|
2017-11-02 21:35:02 +01:00
|
|
|
|
2017-11-02 21:28:24 +01:00
|
|
|
To start the **mbusd** service on system boot:
|
|
|
|
|
2017-11-23 11:09:03 +01:00
|
|
|
# systemctl enable mbusd@<serial port>.service
|
2017-11-02 21:28:24 +01:00
|
|
|
|
|
|
|
Please check systemd documentation for other usefull systemd [commands](https://wiki.archlinux.org/index.php/systemd)
|
|
|
|
|
2016-04-25 16:25:05 +02:00
|
|
|
Reporting bugs:
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Please file [issue](https://github.com/3cky/mbusd/issues) with attached debug log in verbose (`-v9`) mode, i.e.:
|
|
|
|
|
|
|
|
# mbusd -L/tmp/mbusd.log -p /dev/ttyUSB0 -s 9600 -P 502 -d -v9
|
|
|
|
|
2017-11-29 11:39:40 +01:00
|
|
|
Unless you were prompted so or there is another pertinent reason (e.g. GitHub fails to accept the bug report),
|
|
|
|
please do not send bug reports via personal email.
|
2016-04-25 16:25:05 +02:00
|
|
|
|
|
|
|
Contributing:
|
|
|
|
-------------
|
|
|
|
|
|
|
|
1. Fork it and clone forked repository
|
|
|
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
|
|
3. Make your changes
|
|
|
|
4. Commit your changes (`git commit -am 'Add some feature'`)
|
|
|
|
5. Push to the branch (`git push origin my-new-feature`)
|
|
|
|
6. Create new Pull Request
|
|
|
|
|
|
|
|
Author:
|
|
|
|
-------
|
|
|
|
|
2016-04-25 17:13:13 +02:00
|
|
|
Victor Antonovich (<v.antonovich@gmail.com>)
|
2016-04-25 16:25:05 +02:00
|
|
|
|
|
|
|
Credits:
|
|
|
|
--------
|
|
|
|
|
2016-04-25 17:13:13 +02:00
|
|
|
Andrew Denysenko (<nitr0@seti.kr.ua>):
|
2016-04-25 16:25:05 +02:00
|
|
|
- RTS RS-485 data direction control
|
|
|
|
- RTU response receiving by length
|
|
|
|
|
2017-02-16 23:43:24 +01:00
|
|
|
James Jarvis (<jj@aprsworld.com>):
|
|
|
|
- file based RS-485 data direction control
|
|
|
|
|
2017-11-29 11:39:40 +01:00
|
|
|
Luuk Loeffen (<luukloeffen@hotmail.com>):
|
|
|
|
- systemd support
|
|
|
|
|
2016-04-25 16:25:05 +02:00
|
|
|
License:
|
|
|
|
--------
|
|
|
|
|
2017-02-16 23:43:24 +01:00
|
|
|
This project is distributed under the BSD license. See the [LICENSE](LICENSE) file for the full license text.
|