From owner-freebsd-questions@FreeBSD.ORG Sun Jan 27 15:31:16 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 41F1D813 for ; Sun, 27 Jan 2013 15:31:16 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id BF84676F for ; Sun, 27 Jan 2013 15:31:15 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.6/8.14.6) with ESMTP id r0RFTw0N007594; Sun, 27 Jan 2013 08:29:58 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.6/8.14.6/Submit) with ESMTP id r0RFTwDV007591; Sun, 27 Jan 2013 08:29:58 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sun, 27 Jan 2013 08:29:58 -0700 (MST) From: Warren Block To: dweimer Subject: Re: Locking USB Serial Device to Specific Com port In-Reply-To: <0fd00d9caad3787f4cd0e443e5931340@dweimer.net> Message-ID: References: <762f51b7c30dd5c920788336b3eb4fa5@dweimer.net> <51045B48.40202@ShaneWare.Biz> <0fd00d9caad3787f4cd0e443e5931340@dweimer.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sun, 27 Jan 2013 08:29:58 -0700 (MST) Cc: FreeBSD Questions , Shane Ambler X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jan 2013 15:31:16 -0000 On Sun, 27 Jan 2013, dweimer wrote: > On 2013-01-26 16:40, Shane Ambler wrote: >> On 27/01/2013 08:15, dweimer wrote: >> >>> I would like to lock down the USB serial port adapter used on the UPS to >>> /dev/cuaU0, to make sure the UPS is always monitored and I will get a >>> clean shutdown in event of a power failure. >>> >>> I believe that this requires setting a hint line of some sort in the >>> /boot/loader.conf file, but I am having trouble tracking down what this >>> should be, or maybe I am on the wrong track. Here is the current >>> information from the adpapters, the UPS adapter was connected at boot, >>> is on /dev/cuaU0, the other one was plugged in after boot, and is on >>> /dev/cuaU1. >> >> start with man devd.conf >> >> You can add your own devd files in /usr/local/etc/devd/ >> Something along the lines of - >> >> attach 200 { >> device-name "cuaU[0-9]+"; >> match "vendor" "0x067b"; >> match "product" "0x2303"; >> action "sleep 2; cd /dev; ln -s ${device-name} upsmonitor"; >> }; >> >> use usbconfig to get info. I am thinking with the similarity of the two >> you may need to rely on bus and hubaddr or devaddr to keep each device >> identified by usb port location. > > OK, so I was looking in the wrong direction, which might explain why my > searching wasn't finding anything. > > However I might still be out of luck, after doing some checking, and a reboot > the only difference I can find is below. > > dev.uplcom.0.%location: bus=1 hubaddr=1 port=0 devaddr=2 interface=0 > dev.uplcom.1.%location: bus=1 hubaddr=3 port=0 devaddr=3 interface=0 usbconfig may be able to get the device serial number, although they may not be unique. Jamming useful scripts inside an action can be complicated. It may be easier to just trigger an external script.