Zaursu SL-C860で複数のBluetoothデバイスを登録する

Zaurus SL-C860Bluetooth702NKをモデムとしてネット接続しているのですが、時々おかしくなってヘッドセットと誤認識することがあることは以前ここでも書きました。そんなときすばやくA5504Tに接続先を変更したいのですが以前書いた「etc/Bluetooth/rfcomm.conf」ではいちいち編集してZaurus SL-C860を再起動しないとA5504Tを認識してくれません。しかし、もっとスマートな方法がありました。「etc/Bluetooth/rfcomm.conf」の「rfcomm0」に702NKを「rfcomm1」にA5504Tをエントリしておくことで702NKA5504Tのどちらからでも接続することが出来るようになります。もちろん「ネットワーク設定」で、A5504Tの「Modem」を「dev/rfcomm1」に設定しておくことが必要です。
「etc/Bluetooth/rfcomm.conf」の例ですがインチキLinux使いですからもっといい方法があるかもしれません。

#
# RFCOMM configuration file.
#
# $Id: rfcomm.conf,v 1.1 2002/10/07 05:58:18 maxk Exp $
#

rfcomm0 {
	      # Automatically bind the device at startup
	      bind yes;

	      # Bluetooth address of the device 6630
	      device 00:11:22:33:44:55;

	      # RFCOMM channel for the connection
	      channel	3;

	      # Description of the connection
	      comment "Example connection";
}

rfcomm1 {
	      # Automatically bind the device at startup
	      bind yes;

	      # Bluetooth address of the device A5504T
	      device 66:77:88:99:AA:BB;

	      # RFCOMM channel for the connection
	      channel	8;

	      # Description of the connection
	      comment "Example connection";
}