web-dev-qa-db-ja.com

XFCE GUIからの静的IPアドレス

IOGear Universal Wi-Fi N Adapter にWiFiアダプターとして興味があります。細かいマニュアルの状態:

Installation without WPS - Mac 
Step 1: Turn off your computer’s wireless connection (if applicable) and disconnect the Ethernet cable currently connect to your computer (if applicable). 
Step 2: Use both the included RJ-45 Ethernet cable and the USB cable to connect the
WiFi adapter with your computer. 
Step 3: Set your computer with a static IP address. a. Open system preferences and select “Network”. 
b. Select your Ethernet connection in the left pane. Next change configure to Manual and enter IP address 192.168.1.100 and Subnet Mask 255.255.255.0. Remove any entries in the Router and DNS boxes then click Apply. 
Step 4: Open your web browser and enter 192.168.1.252.
This will bring up the configuration utility. Click “Site Survey” to
scan for your wireless network.

XFCEを使用しており、GUIを使用して上記のようにIPアドレスを設定したい:

network connections

ただし、上記の設定が使用されていることをどのように知ることができますか? ifconfigユーティリティは、 IPv6タイプのアドレスとIPv4情報なし を報告します。データを表示しているGUIと、CLIが異なる結果を与えるように見えることの間には少し立ち往生しています。 GUIはifconfigの結果にどのように接続されますか? ifconfigの結果がGUI設定と一致しないのは奇妙に思えます。

(これが起こっているコンピューターはインターネットにアクセスできないため、データを提供するのはやや困難です。)

多くの「標準」Ubuntuオプションはなく、裸のXFCEしかありません。

ifconfig eth0 downを入力してからifconfig eth0 upを入力すると、 結果はIPv6タイプのアドレス になります。

1
Thufir

私のルーターの設定:

Router Status
Hardware Version    WNR1000v2
Firmware Version    V1.0.1.1NA
GUI Language Version    V1.0.0.35
Internet Port
MAC Address     C0:3F:0E:8B:4D:05
IP Address  192.168.0.16
Internet    DHCP
IP Subnet Mask  255.255.255.0
Domain Name Server  64.59.144.18
64.59.150.134
LAN Port
MAC Address     C0:3F:0E:8B:4D:04
IP Address  192.168.1.1
DHCP    ON
IP Subnet Mask  255.255.255.0
Wireless Port
Name (SSID)     NETGEAR
Region  United States
Channel     Auto ( 2(P)+6(S) )
Mode    Up to 150 Mbps
Wireless AP     ON
Broadcast Name  ON
Wi-Fi Protected Setup   Not Configured

iOGear Universal Wi-Fi Nアダプターをルーターの黄色い「インターネット」ポートに接続してください。さて、IOGearデバイスを設定するのは少し面倒で、詳細はわかりませんが、一般的にはそうでした:

Access Point Status
This page shows the current status and some basic settings of the device.

System
Uptime  0day:0h:22m:34s
Firmware Version    AC1x1-1201-B03
Build Time  Thu Jun 23 17:42:14 CST 2011
Wireless Configuration  
Mode        Infrastructure Client   
Band        2.4 GHz (B+G+N)
SSID    

425BF3

Channel Number      11  
Encryption      WPA2
BSSID   70:54:d2:36:b7:05
Status  Connected
Wireless Configuration  
Mode        Infrastructure Client   
Band        2.4 GHz (B+G+N)
SSID    

425BF3

Channel Number      11  
Encryption      WPA2
BSSID   70:54:d2:36:b7:05
Status  Connected
TCP/IP Configuration
Attain IP Protocol  Fixed IP
IP Address  192.168.1.252
Subnet Mask     255.255.255.0
Default Gateway     0.0.0.0
DHCP Server     Disabled
MAC Address     00:21:79:c6:5a:de

デフォルトゲートウェイは0.0.0.0であり、これは意味がないため、これは非常に奇妙です。ゲートウェイをそのように設定してみました:

thufir@dur:~$ 
thufir@dur:~$ cat /etc/network/interfaces.static 
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.252

# The secondary network interface
auto eth1
iface eth1 inet dhcp
thufir@dur:~$ 

/etc/network/interfacesとして実行しますが、service network stopを実行してから開始しても、ゼロ以外のアドレスへのデフォルトゲートウェイを取得できませんでした。

魔法のように、または一見そうであるように、いくつかのイーサネットケーブルを動かして、NATのダブルアクションを実行します。IOGearは、コンピューターが接続するルーターにインターネット接続を提供します。

奇妙な。コメント、提案、代替ソリューションを歓迎します。

うーん、IOgearデバイスの起動時にそのアドレスが変更される可能性はありますが、ルーターは静的IPアドレスに自動的に設定されているようです(それについてはわかりません)。

enter image description here

1
Thufir