16
9

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 Stretchからifdown,ifupが使えなくなった話

Posted at

#概要

RaspbianOSがアップデートされてから、ネットワークの再設定がifdown及びifupコマンドでできなくなっている。
ifconfig デバイス名 down及びupとすることで再設定できる。

#旧方法
ifdownコマンドを走らしますと、以下のようになってしまいます。
[pi:~] sudo ifdown wlan0 ifdown: unknown interface wlan0

要は、wlan0を見つけられません。
個人的見解では、
[/etc/network/interfaces]の中の記述に

auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

がありましたので、wlan0を見つけることができました。
しかし、おそらくstreachあたりからIPアドレス設定がdhcpcd.confに移行したことにより、wlan0の記述が消えたのでunknown interface wlan0となるのだと思われます。

#新方法
sudo ifconfig wlan0 down
sudo ifconfig wlan0 up


service restart networkでネットワーク再設定を行うという情報もあったのですが、どの時代のラズビアンでもできないのではないかな?と思います。

参考

Restart network without reboot
https://www.raspberrypi.org/forums/viewtopic.php?p=537802

16
9
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
16
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?