Skip to content
Thomas Nagels edited this page Apr 25, 2019 · 1 revision

Usb over IP from raspberry Server (Raspberry Pi3) apt-get install usbip modprobe usbip_host sudo echo 'usbip_host' >> /etc/modules To list usb devices and get busid usbip list -l

busid 1-1.1 (0424:ec00) Standard Microsystems Corp. : SMSC9512/9514 Fast Ethernet Adapter (0424:ec00) busid 1-1.2 (0781:5583) SanDisk Corp. : unknown product (0781:5583) busid 1-1.3 (0463:ffff) MGE UPS Systems : UPS (0463:ffff) busid 1-1.4 (0658:0200) Sigma Designs, Inc. : unknown product (0658:0200) busid 1-1.5 (0403:6001) Future Technology Devices International, Ltd : FT232 USB-Serial (UART) IC (0403:6001) sudo usbipd -D sudo usbip bind -b 1-1.3 sudo usbip bind -b 1-1.4 sudo usbip bind -b 1-1.5 Client (Ubuntu) apt-get install linux-tools-generic

modprobe vhci-hcd

echo 'vhci-hcd' >> /etc/modules

usbip list -r $remote_host

usbip attach -r $remote_host -b 1-1.3

usbip attach -r $remote_host -b 1-1.4

usbip attach -r $remote_host -b 1-1.5

Another take at it... https://community.home-assistant.io/t/rpi-as-z-wave-zigbee-over-ip-server-for-hass/23006

Or use ser2net and socat... https://community.openhab.org/t/share-z-wave-dongle-over-ip-usb-over-ip-using-ser2net-socat-guide/34895

Clone this wiki locally