

The TrendNet TI-BG5091 is an industrial-grade network switch designed to deliver both power and data connectivity to networked devices. Equipped with 9 Gigabit PoE++ ports and a 10Gb SFP+ slot, this switch is ideal for high-performance networking in environments requiring robust and reliable connections. Its Power over Ethernet (PoE++) capability allows it to power devices such as IP cameras, VoIP phones, and wireless access points, eliminating the need for separate power supplies.








| Specification | Value |
|---|---|
| Manufacturer | TrendNet |
| Model | TI-BG5091 |
| Ports | 8 x Gigabit PoE++ (802.3bt), 1 x Gigabit |
| Ethernet, 1 x 10Gb SFP+ | |
| PoE Standards | IEEE 802.3af/at/bt |
| PoE Power Budget | 360W |
| Switching Capacity | 62Gbps |
| Input Voltage | 48-56V DC |
| Operating Temperature | -40°C to 75°C (-40°F to 167°F) |
| Mounting | DIN-Rail or Wall-Mountable |
| Dimensions | 160 x 120 x 60 mm (6.3 x 4.7 x 2.4 in) |
| Weight | 1.5 kg (3.3 lbs) |
| Certifications | CE, FCC, IEC 61000-6-2, IEC 61000-6-4 |
| Pin Number | Description |
|---|---|
| 1 | Data Pair 1 (Positive) |
| 2 | Data Pair 1 (Negative) |
| 3 | Data Pair 2 (Positive) |
| 4 | Power Pair 1 (Positive) |
| 5 | Power Pair 1 (Positive) |
| 6 | Data Pair 2 (Negative) |
| 7 | Power Pair 2 (Negative) |
| 8 | Power Pair 2 (Negative) |
| Pin Number | Description |
|---|---|
| 1 | Transmit Data (TX) |
| 2 | Receive Data (RX) |
| 3-20 | Reserved for SFP+ module use |
Powering the Switch:
Connecting Devices:
Fiber Connectivity:
Mounting:
To connect an Arduino UNO to the TI-BG5091 for network communication, you can use an Ethernet shield. Below is an example Arduino sketch for basic communication:
#include <SPI.h>
#include <Ethernet.h>
// MAC address and IP address for the Arduino
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 1, 177);
// Initialize the Ethernet server on port 80
EthernetServer server(80);
void setup() {
// Start the Ethernet connection
Ethernet.begin(mac, ip);
// Start the server
server.begin();
Serial.begin(9600);
Serial.println("Server is ready at IP: ");
Serial.println(Ethernet.localIP());
}
void loop() {
// Listen for incoming clients
EthernetClient client = server.available();
if (client) {
Serial.println("New client connected");
while (client.connected()) {
if (client.available()) {
char c = client.read();
Serial.write(c); // Echo data to Serial Monitor
// Respond to the client
client.println("Hello from Arduino!");
}
}
client.stop();
Serial.println("Client disconnected");
}
}
No Power to Connected Devices:
No Network Connectivity:
SFP+ Module Not Detected:
Overheating:
Q: Can I use this switch with non-PoE devices?
Q: What type of SFP+ modules are compatible?
Q: Is the switch suitable for outdoor use?
Q: Can I daisy-chain multiple switches?
This concludes the documentation for the TrendNet TI-BG5091. For further assistance, refer to the official user manual or contact TrendNet support.