web-dev-qa-db-ja.com

Ubuntu 16.04サーバーでAT&T Velocity USBドングルを入手する

序文:このデバイスは、デスクトップバージョンのUbuntuに接続すると正常に機能します。新しいネットワークインターフェイスを作成し、インターネット接続を提供します。

しかし、Serverエディションに接続しようとすると、ネットワークインターフェイスが作成されません。

詳細:ドングル:AT&T Velocity USB(ZTE MF861)

Dmesgで表示されるログ:

[ 1883.698974] usb 1-2: new high-speed USB device number 12 using xhci_hcd
[ 1883.848256] usb 1-2: New USB device found, idVendor=19d2, idProduct=1405
[ 1883.848263] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1883.848268] usb 1-2: Product: ZTE Mobile Broadband
[ 1883.848271] usb 1-2: Manufacturer: ZTE,Incorporated
[ 1883.848274] usb 1-2: SerialNumber: MF8610ZTED000000
[ 1883.873568] cdc_ether 1-2:1.0 usb0: register 'cdc_ether' at usb-0000:00:14.0-2, CDC Ethernet Device, xx:yy:zz:aa:bb:cc
[ 1883.884895] usb-storage 1-2:1.2: USB Mass Storage device detected
[ 1883.885327] scsi Host7: usb-storage 1-2:1.2
[ 1883.890212] cdc_ether 1-2:1.0 enp0s20f0u2: renamed from usb0
[ 1884.884482] scsi 7:0:0:0: CD-ROM            ZTE      USB SCSI CD-ROM  2.31 PQ: 0 ANSI: 2
[ 1884.886942] sr 7:0:0:0: [sr0] scsi-1 drive
[ 1884.887332] sr 7:0:0:0: Attached scsi CD-ROM sr0
[ 1884.887493] sr 7:0:0:0: Attached scsi generic sg1 type 5
[ 1888.176279] usb 1-2: USB disconnect, device number 12
[ 1888.176364] cdc_ether 1-2:1.0 enp0s20f0u2: unregister 'cdc_ether' usb-0000:00:14.0-2, CDC Ethernet Device
[ 1889.127002] usb 1-2: new high-speed USB device number 13 using xhci_hcd
[ 1889.276301] usb 1-2: New USB device found, idVendor=19d2, idProduct=1405
[ 1889.276307] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1889.276312] usb 1-2: Product: ZTE Mobile Broadband
[ 1889.276315] usb 1-2: Manufacturer: ZTE,Incorporated
[ 1889.276318] usb 1-2: SerialNumber: MF8610ZTED000000
[ 1889.299753] cdc_ether 1-2:1.0 usb0: register 'cdc_ether' at usb-0000:00:14.0-2, CDC Ethernet Device, xx:yy:zz:aa:bb:cc
[ 1889.307434] usb-storage 1-2:1.2: USB Mass Storage device detected
[ 1889.307934] scsi Host8: usb-storage 1-2:1.2
[ 1889.312973] cdc_ether 1-2:1.0 enp0s20f0u2: renamed from usb0
[ 1890.308585] scsi 8:0:0:0: CD-ROM            ZTE      USB SCSI CD-ROM  2.31 PQ: 0 ANSI: 2
[ 1890.311823] sr 8:0:0:0: [sr0] scsi-1 drive
[ 1890.312058] sr 8:0:0:0: Attached scsi CD-ROM sr0
[ 1890.312185] sr 8:0:0:0: Attached scsi generic sg1 type 5
[ 2087.529644] usbcore: registered new interface driver usbserial
[ 2087.529654] usbcore: registered new interface driver usbserial_generic
[ 2087.529662] usbserial: USB Serial support registered for generic

誰もこれを動作させる方法を教えてもらえますか?

ZTEサポートに連絡しようとしましたが、Linuxのトラブルシューティングは提供されません。

編集 dhclient -v enp0s20f0u2の出力は次のとおりです。

sc@sc:~$ Sudo dhclient -v enp0s20f0u2
Internet Systems Consortium DHCP Client 4.3.3
Copyright 2004-2015 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/enp0s20f0u2/xx:yy:zz:aa:bb:cc
Sending on   LPF/enp0s20f0u2/xx:yy:zz:aa:bb:cc
Sending on   Socket/fallback
DHCPDISCOVER on enp0s20f0u2 to 255.255.255.255 port 67 interval 3    (xid=0xf2cb26af)
DHCPREQUEST of 192.168.1.153 on enp0s20f0u2 to 255.255.255.255 port 67 (xid=0x6f2bafc2)
DHCPOFFER of 192.168.1.153 from 192.168.1.1
DHCPACK of 192.168.1.153 from 192.168.1.1
bound to 192.168.1.153 -- renewal in 39672 seconds.
sc@sc:~$ 
1
Sved

ファイルを編集することをお勧めします/etc/network/interfaces次のようなものに:

auto lo
iface lo inet loopback

auto enp0s20f0u2
iface enp0s20f0u2 inet static
address 192.168.1.25
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1 8.8.8.8

サーバーにsshとftpできるように、静的アドレスをお勧めします。ルーター、スイッチ、またはその他のアクセスポイントでDHCPサーバーが使用する範囲外の静的アドレスを選択してください。

システムに変更を読み取って使用させる:

Sudo ip addr flush dev enp0s20f0u2
Sudo ifdown enp0s20f0u2 && Sudo ifup -v enp0s20f0u2

接続しましたか?

ping -c3 192.168.1.1
ping -c3 www.google.com

再起動が必要になる場合があります。

1
chili555