1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

NanoPi NEO で 不思議なLTEドングル PIX-MT100 を使う

Posted at

PIX-MT100 はLTEモバイルルータがUSBドングル型の筐体に収められ、USBの部分はUSB Ethernetになってます。
不思議な製品ですが、小ロットの組込製品を開発する際に、ボード側のネットワークの構成を簡略化できるのでかなり便利です。

NanoPi NEOで使う場合も基本的にRaspberryPiと同じ。
数台試した結果、usb0で認識されていればusb0のDHCPさえ設定すれば使えますが、usb0でされない個体もありました。
そういう場合はifconfigで見ると enx1e497b810cxx みたいな名前で認識されてたりします。

以下のような行を/etc/network/interfacesに追加します。

# /etc/network/interfaces
allow-hotplug enx1e497b810c07
iface enx1e497b810c07 inet dhcp

その後、ネットワークを再起動。

systemctl restart networking

あるいは、システム自体リブートしてもok。

reboot

PIX-MT100自体がSSIDをもっているので、複数台同時にデバッグするときもどれがどれだかわからなくなるみたいなことがなくてかなり便利。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?