Architecture Connectivity Siemens Logo 8.4 ~15 min read

PLC Connectivity Options

How to get data from a Siemens Logo 8.4 on the factory floor into your MQTT broker — from simple wired Ethernet to wireless LoRaWAN. An architectural guide to the real-world trade-offs.

The Problem

The Siemens Logo 8.4 can publish MQTT natively. The protocol side is solved — the PLC speaks your language. The real challenge is the transport layer: getting a network connection to the machine in the first place.

In a manufacturing facility, running Ethernet cable to each machine is often the single most expensive part of a UNS deployment. It's not the PLC, not the software, not the broker — it's the cable drop.

Why Ethernet Drops Are Expensive

This guide covers two approaches: wired Ethernet (when it makes sense) and wireless LoRaWAN (when it doesn't).

i
Constraints. This guide assumes WiFi and 4G/5G cellular are not available — whether due to facility policy, interference, coverage, or ongoing cost. These are common constraints in industrial environments. LoRaWAN is the remaining viable wireless option.

Option 1: Wired Ethernet

If you can run a cable, run a cable. Wired Ethernet is the simplest, most reliable, and lowest-latency way to connect a Logo 8.4 to your MQTT broker. There is no protocol translation, no bridge device, no wireless complexity.

Architecture

Logo 8.4 MQTT Publisher 192.168.1.101 Ethernet Switch LAN Ethernet MQTT Broker Mosquitto / EMQX Port 1883

The Logo connects directly to your LAN via Ethernet. It publishes MQTT messages to the broker. No intermediate devices, no protocol conversion. This is the architecture described in the Siemens Logo 8.4 MQTT guide.

When Wired Ethernet Works Well

✅ Short Cable Runs

Machine is within 10–20 metres of an existing network switch or patch panel. A single cable run with minimal trunking.

✅ New Builds

Network infrastructure is being installed alongside the machines. Cable drops are planned into the build cost from day one.

✅ Fixed Machines

Equipment that will never move. Permanent installations where the cable investment is a one-time cost.

✅ Real-Time Requirements

Applications needing sub-second latency or high-frequency data. Wired Ethernet has no duty cycle limits or airtime constraints.

Advantages

Disadvantages

For the full step-by-step wired setup, see the Siemens Logo 8.4 → MQTT guide. It covers network configuration, Logo setup, Mosquitto broker installation, and testing.

Option 2: Wireless LoRaWAN

When Ethernet drops are impractical, LoRaWAN provides a wireless transport layer. It's long-range, low-power, licence-free, and designed for exactly this kind of industrial IoT use case.

Why LoRa?

With WiFi and 4G/5G excluded, the viable wireless options narrow quickly. LoRaWAN stands out for industrial environments:

PropertyLoRaWAN
Range2–5 km urban, up to 15 km rural
FrequencyEU868 (Europe), US915 (USA) — licence-free ISM bands
PowerVery low — battery operation possible (years)
Payload51–242 bytes per message
CostNo subscriptions, no SIM cards, no airtime fees
InterferenceDesigned for noisy RF environments (spread spectrum)

The Fundamental Issue

You cannot run native MQTT over LoRa. MQTT requires a persistent TCP/IP connection with keep-alive packets. LoRa is a packet radio — it transmits short bursts of data, not continuous streams. The EU868 band has a 1% duty cycle limit (36 seconds of airtime per hour). MQTT keep-alives alone would exhaust this.

This means you need a bridge device at each machine. The bridge sits between the Logo's Ethernet port and the LoRa radio. It receives MQTT messages from the Logo over a short local Ethernet cable, repackages the data into LoRa packets, and transmits wirelessly to a central gateway.

At the gateway end, the process reverses: LoRa packets are received, decoded, and republished as MQTT messages to your broker.

LoRa System Architecture

MACHINE FLOOR WIRELESS BUILDING HUB Logo 8.4 MQTT Publisher 1m ETH MQTT→LoRa Bridge Device WISE-6610 V2 LoRa 868 MHz Logo 8.4 MQTT Publisher 1m ETH MQTT→LoRa Bridge Device WISE-6610 V2 Logo 8.4 Machine N MQTT→LoRa Bridge N LoRaWAN Gateway MultiTech Conduit Ethernet MQTT Broker Mosquitto / EMQX

At Each Machine: Bridge Device

Each Logo 8.4 connects via a short Ethernet cable (1–2 metres) to a bridge device mounted alongside it on the DIN rail. The bridge:

  1. Connects to the Logo's Ethernet port as an MQTT client
  2. Subscribes to the Logo's MQTT topics
  3. Repackages messages into compact LoRa packets
  4. Transmits wirelessly on EU868 or US915

Recommended device: Advantech WISE-6610 V2

SpecificationDetails
ManufacturerAdvantech (Taiwan)
InterfaceEthernet RJ45 (10/100 Mbps)
ProtocolsMQTT, Modbus TCP, BACnet/IP, OPC UA
LoRa ChipsetSemtech SX1302
FrequencyEU868, US915, AS923, AU915
Power12–24V DC or PoE
MountingDIN rail or wall mount
Operating Temp-40°C to +75°C
SoftwareNode-RED, EdgeLink
i
Why this device? The WISE-6610 V2 has more features than you need (Modbus, BACnet, OPC UA). You'll ignore most of them. But removing those features doesn't make a cheaper product exist. You're paying for the industrial enclosure, DIN rail mounting, certifications (CE, FCC), and the fact that it works out of the box. Configure it as a simple MQTT-to-LoRa bridge and move on.

Central Hub: LoRaWAN Gateway

One gateway in the building receives LoRa transmissions from all bridge devices and publishes the data as MQTT messages to your broker over Ethernet.

Recommended device: MultiTech Conduit 300

SpecificationDetails
ManufacturerMultiTech Systems (USA — Minnesota)
LoRaWAN8-channel (via mCard)
FrequencyEU868 or US915
BackhaulEthernet + optional 4G LTE
ProtocolsMQTT, HTTP/HTTPS
SoftwareBuilt-in network server, Node-RED
PowerPoE (802.3af) or DC
MountingDIN rail or wall mount
Operating Temp-40°C to +70°C
i
Why MultiTech? USA manufactured, 50+ years in business, active commitment to LoRaWAN (unlike Cisco, who discontinued their IXM gateway in 2024 and exited the LoRaWAN market entirely). Native MQTT publishing, programmable with Node-RED, and excellent documentation.

EU alternative: Kerlink Wirnet iStation — manufactured in France, 10-channel, IP67 outdoor rated, carrier-grade. A strong choice if you prefer EU-manufactured equipment.

LoRa Limitations

LoRaWAN is not a drop-in replacement for Ethernet. It has real constraints that affect what you can and cannot do.

ParameterValueImpact
Data Rate0.3–50 kbpsSufficient for PLC telemetry, not for streaming
Latency1–10 secondsNot suitable for real-time control loops
Duty Cycle1% (EU868)Max 36 seconds of airtime per hour
Payload51–242 bytesEnough for register data, not for large payloads
DirectionPrimarily uplinkDownlink (control commands) is limited

✅ Suitable For

Monitoring and data collection. Alarm notifications. Slow-changing process values (temperature, pressure, cycle counts). Remote status checking. Non-critical control commands. Polling intervals of 30 seconds or more.

❌ Not Suitable For

Real-time control applications. High-frequency polling (< 10 seconds). Large data transfers. Safety-critical operations. Closed-loop control systems. Applications requiring guaranteed sub-second delivery.

Do not use LoRaWAN for safety-critical control. If a missed or delayed message could cause harm, use wired Ethernet. LoRa is a monitoring and telemetry transport — not a control bus.

Decision Matrix

DimensionWired EthernetWireless LoRaWAN
Cost per Machine£1,500–2,000 (cable drop)~£400 (bridge device)
Latency< 1 ms1–10 seconds
ReliabilityVery highHigh (with retries)
Setup ComplexityLow (cable + config)Medium (bridge + gateway + config)
FlexibilityLow (fixed cable)High (wireless, machines can move)
Protocol TranslationNone — native MQTTMQTT → LoRa → MQTT
Ongoing CostsNoneNone
Real-Time ControlYesNo
Devices in Path0 (direct)2 (bridge + gateway)
Best ForShort runs, new builds, real-timeRetrofit, many machines, monitoring
Rule of thumb: If you have fewer than 5 machines near existing network infrastructure, use Ethernet. If you have 10+ machines spread across a facility with no network drops, use LoRa.

Cost Analysis

10 Machines — Wired Ethernet

ComponentQtyUnit CostTotal
Ethernet cable drops10£2,000£20,000
Network switch1£200£200
Configuration10£50£500
Total£20,700

10 Machines — LoRaWAN

ComponentQtyUnit CostTotal
WISE-6610 V2 bridge10£400£4,000
Short Ethernet cables (1m)10£10£100
MultiTech Conduit 3001£1,200£1,200
LoRaWAN mCard1£170£170
Antenna1£80£80
Installation & config£1,000
Total£6,550
Saving: ~£14,000 for 10 machines. At 20 machines the saving approaches £30,000. The economics improve with scale.

Approved Manufacturers

All recommended equipment is manufactured in the EU, UK, USA, or Taiwan. No products sourced from China.

ManufacturerCountryProductRole
Siemens🇩🇪 GermanyLogo 8.4PLC — MQTT publisher
Advantech🇹🇼 TaiwanWISE-6610 V2MQTT-to-LoRa bridge (at machine)
MultiTech🇺🇸 USAConduit 300LoRaWAN gateway (central hub)
Kerlink🇫🇷 FranceWirnet iStationLoRaWAN gateway (EU alternative)
EclipseOpen SourceMosquittoMQTT broker
i
Cisco exited LoRaWAN. The Cisco IXM Wireless Gateway was discontinued in late 2024 (last order date: January 2025, end of support: December 2029). There is no migration path. Do not specify Cisco for new LoRaWAN deployments.

Next Steps

StepDescription
Wired SetupFollow the Siemens Logo 8.4 → MQTT guide for the full Ethernet configuration
Pilot ProjectFor LoRa — start with 2–3 machines to validate range, reliability, and data flow before scaling
Site SurveyTest LoRa coverage in your facility — walls, metal structures, and EMI affect range
UNS TopicsAdopt the UNS Framework topic hierarchy for consistent MQTT topic structure
fn-uns IntegrationConnect to the fn-uns data pipeline for KPIs, historian, and analytics

Guide Version: 1.0 · Applies To: Siemens Logo 8.4, Advantech WISE-6610 V2, MultiTech Conduit 300

Last updated March 2026.