同一USBデバイスのデバイス名を固定したいです
【構成】
ubuntu10.04にUSBシリアル変換ケーブル(PL2303チップ)をUSBハブを介して4本接続しいます。
シリアルケーブルの先にはciscoデバイスがそれぞれ接続されています。
4本のケーブルはそれぞれ、/dev/ttyUSB0 ~ttyUSB3 として、OSに認識され、
コンソール接続が可能ことは確認しました。
【問題点】
OSを再起動すると、変換ケーブル4本の認識順序が入れ替わってしまいます。
これはudevに割り当てが関連していることは理解しました。
【期待する動作】
ttyUSB0にはciscoデバイスA
ttyUSB1にはciscoデバイスB
といった感じで、OSを再起動後もこの順序が入れ替わらないようにしたいです。
【ログ等】
"dmesg"抜粋
[ 9.382939] usbcore: registered new interface driver usbserial
[ 9.382951] USB Serial support registered for generic
[ 9.382987] usbcore: registered new interface driver usbserial_generic
[ 9.382989] usbserial: USB Serial Driver core
[ 9.385885] USB Serial support registered for pl2303
[ 9.385950] pl2303 1-7.1:1.0: pl2303 converter detected
[ 9.451467] Console: switching to colour frame buffer device 80x30
[ 9.467018] usb 1-7.1: pl2303 converter now attached to ttyUSB0
[ 9.467032] pl2303 1-7.2:1.0: pl2303 converter detected
[ 9.471057] usb 1-7.2: pl2303 converter now attached to ttyUSB1
[ 9.471071] pl2303 1-7.3:1.0: pl2303 converter detected
[ 9.477677] usb 1-7.3: pl2303 converter now attached to ttyUSB2
[ 9.477691] pl2303 1-7.4:1.0: pl2303 converter detected
[ 9.481808] usb 1-7.4: pl2303 converter now attached to ttyUSB3
[ 9.481825] usbcore: registered new interface driver pl2303
[ 9.481827] pl2303: Prolific PL2303 USB to serial adaptor driver
"lsusb"抜粋
Bus 002 Device 003: ID 0000:0000
Bus 002 Device 002: ID 0d3d:6364 Tangtop Technology Co., Ltd
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 008: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Bus 001 Device 007: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Bus 001 Device 006: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Bus 001 Device 005: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Bus 001 Device 004: ID 0409:005a NEC Corp. HighSpeed Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
【質問】
この環境で、USBデバイスの認識順序を固定する方法をご存知ありませんでしょうか。