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.

Raspbian (jessie) Wi-Fi (固定アドレス) の設定 (変更)

1
Last updated at Posted at 2016-02-13

結局、/etc/network/interfaces は

ループバック

auto lo
iface lo inet loopback

内蔵部分

auto eth0
iface eth0 inet static
address 192.168.1.Xa
netmask 255.255.255.0
gateway 192.168.1.YY
dns-nameservers 192.168.1.ZZ

Wi-Fi部分

allow-hotplug wlan0
iface wlan0 inet static
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
address 192.168.1.Xb
netmask 255.255.255.0
gateway 192.168.1.YY
dns-nameservers 192.168.1.ZZ

ちゃんとしてませんがコレで大丈夫っぽいです。

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?