PyModbus.server端口502未打开StartTcpServer

时间:2017-11-13 12:41:41

标签: python modbus

我正在Linux PC上设置Modbus TCP服务器。 当我运行下面的代码时,我的计算机上没有打开端口502,当我用nmap检查时。

任何人都有这方面的经验吗?

https://pymodbus.readthedocs.io/en/latest/examples/synchronous-server.html

from pymodbus.server.async import StartTcpServer

from pymodbus.device import ModbusDeviceIdentification
from pymodbus.datastore import ModbusSequentialDataBlock
from pymodbus.datastore import ModbusSlaveContext, ModbusServerContext

store = ModbusSlaveContext(
    di = ModbusSequentialDataBlock(0, [17]*100),
    co = ModbusSequentialDataBlock(0, [17]*100),
    hr = ModbusSequentialDataBlock(0, [17]*100),
    ir = ModbusSequentialDataBlock(0, [17]*100))
context = ModbusServerContext(slaves=store, single=True)

    #---------------------------------------------------------------------------# 
# initialize the server information
#---------------------------------------------------------------------------# 
# If you don't set this or any fields, they are defaulted to empty strings.
    #---------------------------------------------------------------------------# 
identity = ModbusDeviceIdentification()
identity.VendorName  = 'Pymodbus'
identity.ProductCode = 'PM'
identity.VendorUrl   = 'http://github.com/riptideio/pymodbus/'
identity.ProductName = 'Pymodbus Server'
identity.ModelName   = 'Pymodbus Server'
identity.MajorMinorRevision = '1.0'

    #---------------------------------------------------------------------------#
# run the server you want
    #---------------------------------------------------------------------------# 
# Tcp:
StartTcpServer(context, identity=identity, address=('localhost', 502))

编辑: 如果我在同一台计算机上使用客户端连接到服务器,则服务器正在运行。如果我关闭服务器,客户端响应端口502关闭。

1 个答案:

答案 0 :(得分:3)

您在此次通话中提供的'localhost'字符串作为服务器的收听地址:

StartTcpServer(context, identity=identity, address=('localhost', 502))

告诉您的服务器仅侦听与服务器在同一系统上运行的客户端的连接。如果您希望服务器接受来自其他系统的连接,则将空字符串''作为地址而不是'localhost'。空字符串告诉服务器监听所有这个系统的接口。