diff --git a/bin/feeder/pystemon-feeder.py b/bin/feeder/pystemon-feeder.py index d36ed66f..770655bc 100755 --- a/bin/feeder/pystemon-feeder.py +++ b/bin/feeder/pystemon-feeder.py @@ -36,7 +36,11 @@ if not os.path.exists(configfile): cfg = ConfigParser.ConfigParser() cfg.read(configfile) -zmq_url = cfg.get("ZMQ_Global", "address") +if cfg.has_option("ZMQ_Global", "bind"): + zmq_url = cfg.get("ZMQ_Global", "bind") +else: + zmq_url = "tcp://127.0.0.1:5556" + pystemonpath = cfg.get("Directories", "pystemonpath") context = zmq.Context() diff --git a/bin/packages/config.cfg.sample b/bin/packages/config.cfg.sample index 79bd402b..f2e8285d 100644 --- a/bin/packages/config.cfg.sample +++ b/bin/packages/config.cfg.sample @@ -132,6 +132,7 @@ path = indexdir #address = tcp://crf.circl.lu:5556 address = tcp://127.0.0.1:5556 channel = 102 +bind = tcp://127.0.0.1:5556 [ZMQ_Url] address = tcp://127.0.0.1:5004