{{tag>USB Réseau}} # USB over TCP/IP avec USB/IP ## Installation ### Client et Serveur Installation de USB/IP sous Debian ~~~bash apt-get install usbip ~~~ ## Attachement ### Serveur ~~~bash modprobe usbip-core modprobe usbip-host ~~~ ~~~bash usbipd -D usbip list -l usbip bind -b 1-1 ~~~ Pour tester ~~~bash usbip list -r 127.0.0.1 ~~~ ### Client ~~~bash modprobe usbip-core modprobe vhci-hcd ~~~ ~~~bash usbip -l list -r 192.168.56.10 usbip attach -r 192.168.56.10 -b 1-1 ~~~ ## Détach Sur le Client ~~~bash usbip port usbip detach -p 00 ~~~ Sur le Serveur pour stopper le partage ~~~bash usbip unbind -b 1-1 ~~~