Docs

ABB Smart Communication Card (SCC)

The ABB Smart Communication Card (SCC) is an IT-OT gateway that connects field devices (Modbus RTU/TCP, OPC UA) to cloud-based systems and lets you run control logic via Node-RED. This guide shows how to:

  • Get on-network access to the SCC WebUI
  • Configure static or DHCP addressing
  • Enable Node-RED and OPC UA
  • Configure Modbus RTU
  • Test connectivity
  • Set up data flows and send data to Blockbax

Prerequisites
  1. ABB Smart Communication Card with default firmware
  2. PC with Ethernet port
  3. Network switch or router
  4. OPC UA client (e.g. UAExpert. Optional step that helps with debugging)
  5. Node-RED basic knowledge
  6. Modbus RTU device (e.g. TCN) and wiring accessories (if not shipped assembled)

1. Access the SCC WebUI

  1. Connect your PC to the SCC LAN port.
  2. SCC defaults to DHCP server on 192.168.2.0/24 and WebUI at 192.168.2.1.
  3. If that conflicts with another gateway, disconnect the conflicting device, then browse to http://192.168.2.1.

2. Configure LAN interface

A. DHCP client (preferred)

  1. In WebUI → Network → Interface → EDIT → DHCP client: Enable DHCP.
  2. Connect the LAN port to your DHCP-serving router or switch.
  3. Apply and reboot.
  4. Scan your network to find the SCC’s assigned IP.
LAN interface DHCP configuration

B. Static IP (Manual)

  1. In WebUI → Network → Interface → EDIT:
    • Set the protocol to Static address and confirm the SWITCH PROTOCOL.
    • Keep the default 192.168.2.1/24 address.
    • Add a secondary address: e.g. 192.168.20.23/24.
    • Set IPv4 gateway to your router’s IP (e.g. 192.168.20.1).
  2. Save & Apply.
Important note about setting static IP

Do not remove 192.168.2.1/24 or you’ll lose default access via LAN and need a factory reset.

LAN interface static IP configuration
  1. You can configure all the targets on the LAN interface to route to the gateway to which the SCC is connected.

    3.1. In WebUI → Network → Static Routes → ADD → Static IPv4 Routes:
    • Destination: 0.0.0.0/0
    • Gateway: your router’s IP (e.g. 192.168.20.1)

  2. Save & Apply.

Static IP routing

4. Verify network connectivity

  1. In WebUI → Diagnostics → Use the default URL or enter a public IP (e.g. 8.8.8.8).
  2. Click ping to confirm WAN reachability.
Static IP routing

5. Enable Node-RED

  1. In WebUI → System → Startup → node-red : Toggle Enable.
  2. Apply and wait for service start.
  3. Open http://<SCC_IP>:1880 in your browser.
Enable Node-Red

6. Enable OPC UA server (if not enabled)

  1. In WebUI → System → Startup → opc-ua : Toggle Enable.
  2. You can now confirm connection with any client. See the next step.
  3. Default credentials: user “abb”, password “abb”.

7. Verify with an OPC UA client (optional)

To confirm that the OPC UA server is reachable, you can use any client to test the connection. One industry standard tool for this is UAExpert. In order to use UAExpert follow these steps:

  1. Create a new server connection pointing to the SCC endpoint.
  2. Authenticate with the username “abb” and the password “abb”.
  3. Browse the address space and confirm that the device tags appear.

8. Configure Modbus RTU

  1. In WebUI → Services → Modbus:
    • Add a new instance or modify the existing.
    • Set baud rate, parity, and data bits according to your device specifications.
    • Override the default Device ID from 1 to your device’s ID (e.g., 4). If you don’t know the Modbus ID, you can check the manufacturer’s website for product specifications or support documentation related to the Modbus device.
  2. Save & Apply.
Modbus daemon config

9. Go to the Node-RED instance

To access the Node-RED instance, navigate to http://<SCC_IP>:1880.

9.1 Node discovery

This is the default view. You can use the utility nodes available to browse the nodes in Modbus and find the nodes you want to read data from. Alternatively, you can use other Modbus clients, such as UAExpert, to discover the nodes. See step 7 for more details.

Node-RED Modbus node discovery flow

9.2 process the data and send it to Blockbax

After identifying the nodes of interest, you can start reading them using the OPC UA - IIOT - Inject node. Then, process and send the data using the Blockbax Node-RED module. You can install the Blockbax module via the Manage Palette in Node-RED. Refer to the Blockbax Node-RED documentation for more details.

Node-RED Blockbax flow

Congratulations! Your ABB SCC is now network-connected, runs Node-RED flows, serves OPC UA, and talks Modbus RTU. You can build your edge logic and send data to Blockbax.