Troubleshooting
5 minute read
This guide covers common issues with the Interceptor PoE Board and their solutions.
Detection Issues
PoE board not detected (/proc/pse missing)
Symptoms: The /proc/pse file doesn’t exist.
Solutions:
Check OS version - Requires exaviz OS 2025-05-01 or newer:
cat /etc/os-releaseCheck FFC cable - Ensure the 40-pin cable is properly seated and locked at both ends
Check 48V power - Verify the VOITA converter is powered and connected to J1
Check driver loading:
dmesg | grep -i "ip808\|poe" lsmod | grep ip808Reboot after verifying connections
Board detected but ports don’t work
Symptoms: /proc/pse exists but ports show errors or won’t enable.
Solutions:
Check power supply - 48V from VOITA converter:
- Verify converter input (12V from PSU)
- Check terminal block connections on PoE board
Check for fault status:
cat /proc/pseReset the board by power-cycling the system
Power Issues
Port shows “fault” status
Symptoms: Port status shows “fault” in /proc/pse.
Possible Causes:
- Short circuit in cable or device
- Overcurrent (device drawing too much power)
- Non-PoE device connected
- Cable wiring fault
Solutions:
- Disconnect the device from the port
- Reset the port:
echo "reset-port 0 <port>" > /proc/pse - Check the cable for damage
- Verify the device is PoE-compatible
- Try a different port
Device not receiving power
Symptoms: PoE device doesn’t power on, but port shows “power on” or “searching”.
Solutions:
Verify device is PoE-capable - Check device specs for 802.3af or 802.3at support
Check cable:
- Use Cat5e or better
- Ensure all 8 wires are connected (PoE uses pins 1,2,3,6 for data and 4,5,7,8 for power)
- Try a different cable
Check port status:
cat /proc/pse | grep "Port <number>"Try a different port to isolate hardware issues
Check power budget - You may have exceeded the total available power
Intermittent power delivery
Symptoms: Device powers on then off randomly.
Solutions:
Check total power budget:
cat /proc/pse | grep "power on"Calculate total watts and compare to your PSU capacity
Check PSU 12V stability - The VOITA converter needs stable 12V input
Reseat FFC cables - A loose connection can cause intermittent issues
Check for thermal issues - Ensure adequate airflow around the PoE board
Multiple ports failing simultaneously
Symptoms: Several ports stop working at once.
Likely Cause: Power supply overload or 48V power issue.
Solutions:
Reduce load - Disable some ports and test:
echo "disable-port 0 7" > /proc/pse echo "disable-port 0 6" > /proc/pseCheck VOITA converter - Verify output voltage (should be ~48V)
Check PSU 12V rail - May be sagging under load
Upgrade PSU if power budget is exceeded
Connection Issues
FFC cable problems
Symptoms: Intermittent detection, random port failures.
Solutions:
Reseat the cable:
- Power off system
- Unlock clips on both connectors
- Remove cable
- Inspect for damage
- Reinsert and lock
Check cable orientation:
- Blue reinforcement tape faces up (toward clips)
- Contacts face down (toward PCB)
Replace cable if damaged
Network connectivity issues on PoE ports
Symptoms: Power works but no network connection.
Solutions:
Check link LEDs on the PoE board ports
Verify cable - Try with a known-good cable
Check device configuration - Ensure device is configured for DHCP or has correct static IP
Remember PoE ports are 100Mbps - Some devices may expect Gigabit
LED Indicators
Understanding port LEDs
| LED State | Meaning |
|---|---|
| Green solid | Link established |
| Green blinking | Network activity |
| Amber solid | PoE power active |
| No LEDs | No link or power |
No LEDs on any port
Possible Causes:
- 48V power not connected
- FFC cable not connected
- Board not detected by OS
Solutions:
- Check all power connections
- Verify FFC cable is seated
- Check
/proc/pseexists
Link LED on but no amber PoE LED
Meaning: Network link works but PoE is not delivering power.
Solutions:
- Enable the port:
echo "enable-port 0 <port>" > /proc/pse - Device may not be PoE-capable
- Check cable (all 8 wires needed for PoE)
Software Issues
Permission denied writing to /proc/pse
Solution: Use root privileges:
# Method 1: Use tee
echo "enable-port 0 0" | sudo tee /proc/pse
# Method 2: Run as root
sudo -i
echo "enable-port 0 0" > /proc/pse
exit
Commands not working
Symptoms: Writing to /proc/pse doesn’t change port status.
Solutions:
Check syntax:
# Correct echo "enable-port 0 0" > /proc/pse # Wrong (missing hyphen) echo "enable port 0 0" > /proc/pseCheck board/port numbers - Board is 0-1, port is 0-7
Check driver status:
dmesg | tail -20
Diagnostic Commands
Full system diagnostic
# OS version
cat /etc/os-release
# PoE status
cat /proc/pse
# Kernel messages
dmesg | grep -i "poe\|ip808\|pse"
# Module status
lsmod | grep ip808
# Network interfaces
ip link show
# USB devices (includes some PoE controllers)
lsusb
Generate support information
#!/bin/bash
echo "=== System Info ===" > poe-diagnostic.txt
uname -a >> poe-diagnostic.txt
cat /etc/os-release >> poe-diagnostic.txt
echo -e "\n=== PoE Status ===" >> poe-diagnostic.txt
cat /proc/pse >> poe-diagnostic.txt 2>&1 || echo "/proc/pse not found" >> poe-diagnostic.txt
echo -e "\n=== Kernel Messages ===" >> poe-diagnostic.txt
dmesg | grep -i "poe\|ip808\|pse" >> poe-diagnostic.txt
echo -e "\n=== Loaded Modules ===" >> poe-diagnostic.txt
lsmod | grep -i "ip808\|poe" >> poe-diagnostic.txt
echo "Diagnostic saved to poe-diagnostic.txt"
Getting More Help
If the above solutions don’t resolve your issue:
- Run the diagnostic script above
- Note the specific symptoms and when they occur
- Contact info@exaviz.com with:
- Diagnostic output
- Description of the issue
- Steps you’ve already tried
Last modified December 30, 2025