draemonash2

draemonash2のメモ書き


Project maintained by draemonash2 Hosted on GitHub Pages — Theme by mattgraham

トップに戻る

関連リンク

Python@Raspberry Pi

Tips

Linux 共通コマンド

Raspberry Pi 関連コマンド

設定事項

# Please note that this file is written to be used with dhcpcd.
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'.

auto lo
iface lo inet loopback

auto wlan0
allow-hotplug wlan0
# iface wlan0 inet manual
iface wlan0 inet static
address 192.168.100.52
netmask 255.255.255.0
gateway 192.168.100.1
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.100.52
netmask 255.255.255.0
gateway 192.168.100.1
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
        # ssid="MyPerfectWimax2Terminal"
        ssid="MyPerfectAirStation"
        # psk="Endo4353"
        psk=b4771d9facdaea4848b6d9502a09d8fef412e174b3680dd24df0b60e4e6c386f
        # proto=RSN
        # pairwise=CCMP
        # key_mgmt=WPA-PSK
        # auth_alg=OPEN
・
・
・
(省略)
・
・
・

# iface wlan0 inet dhcp
# iface wlan0 inet dhcp
# iface wlan0 inet dhcp
interface wlan0
static ip\_address=192.168.100.52/24
static routers=192.168.100.1
static domain\_name\_servers=192.168.100.1

interface wlan0
static ip\_address=192.168.100.52/24
static routers=192.168.100.1
static domain\_name\_servers=192.168.100.1

参考 URL

ToDo

トップに戻る