

The 10 Port POE+ DIN Switch SFP+ 1gbe by ienRon is a robust, industrial-grade Power over Ethernet (PoE) switch designed for DIN rail mounting. It features 10 ports, including support for PoE+ (802.3at) to power connected devices and SFP+ for high-speed 1 Gbps fiber or copper connections. This switch is ideal for industrial environments requiring reliable network connectivity and power delivery, such as factory automation, surveillance systems, and IoT deployments.








The following table outlines the key technical details of the 10 Port POE+ DIN Switch SFP+ 1gbe:
| Specification | Details | 
|---|---|
| Manufacturer | ienRon | 
| Model | 10 Port POE+ DIN Switch SFP+ 1gbe | 
| Number of Ports | 10 (8 PoE+ ports, 2 SFP+ ports) | 
| PoE Standard | IEEE 802.3at (PoE+) | 
| PoE Power Budget | 240W (shared across all PoE ports) | 
| Data Rate | 1 Gbps (Gigabit Ethernet) | 
| SFP+ Support | 1 Gbps fiber or copper modules | 
| Input Voltage | 48-57V DC | 
| Operating Temperature | -40°C to 75°C | 
| Mounting | DIN rail | 
| Dimensions | 150mm x 120mm x 50mm | 
| Certifications | CE, FCC, RoHS | 
The switch does not have traditional pins but includes ports and connectors. Below is a description of the ports:
| Port/Connector | Description | 
|---|---|
| PoE+ Ports (1-8) | Gigabit Ethernet ports with PoE+ support for powering devices (up to 30W/port). | 
| SFP+ Ports (9-10) | High-speed ports for fiber or copper SFP+ modules. | 
| Power Input | Terminal block for 48-57V DC input. | 
| Grounding Point | Grounding screw for electrical safety. | 
While the switch itself does not directly interface with an Arduino UNO, it can be used to power and connect network-enabled Arduino projects. For example, if using an Ethernet shield with the Arduino, connect the shield to one of the PoE+ ports for both power and data.
#include <SPI.h>
#include <Ethernet.h>
// MAC address and IP address for the Arduino Ethernet Shield
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 1, 177);
void setup() {
  // Initialize Ethernet connection
  if (Ethernet.begin(mac) == 0) {
    // If DHCP fails, use a static IP address
    Ethernet.begin(mac, ip);
  }
  Serial.begin(9600);
  while (!Serial) {
    ; // Wait for serial port to connect
  }
  Serial.println("Ethernet connected");
}
void loop() {
  // Example: Send a message over the network
  Serial.println("Running network tasks...");
  delay(1000);
}
No Power to Devices:
No Network Connectivity:
Overheating:
SFP+ Module Not Detected:
This documentation provides a comprehensive guide to using the 10 Port POE+ DIN Switch SFP+ 1gbe effectively in industrial applications.