忍者ブログ

おっさん。メモっと!

これって、夢、、、 忘れた時の為の、自分用です うん、夢かな、、。

[PR]

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

Raspbian Jessie Lite インターネット設定

インターネットの設定
 
 
Ethernet(イーサネット)IP アドレス固定
sudo -s

nano /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)

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

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

auto lo
iface lo inet loopback

iface eth0 inet manual

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

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




↓に変更
# interfaces(5) file used by ifup(8) and ifdown(8)

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

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

auto lo
iface lo inet loopback

iface eth0 inet static
address 192.168.1.11
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1

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

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




保存:Ctrl+o して Enter
終了:Ctrl+x
使い方は画面下部を参考 ( ^ = Ctrl )

address           IP アドレス
netmask           ネットマスク
gateway           ゲートウェイ(ルーター)のアドレス
dns-nameservers   DNSのアドレス
 
 無線LANIP アドレス固定
sudo -s

wpa_passphrase MY_SSID MY_PASSWORD > /etc/wpa_supplicant/wpa_supplicant.conf

nano /etc/wpa_supplicant/wpa_supplicant.conf

network={
ssid="MY_SSID"
#psk="MY_PASSWORD"
psk=1234567890123456789012345678901234567890123456789012345678901234
}




*MY_SSIDとMY_PASSWORDは接続するものに変更

例) WPA2-PSK TKIP          ステルスモードでの接続
proto=WPA WPA2             認証方式 WPA・WPA2
key_mgmt=WPA-PSK       キーの種類
pairwise=CCMP TKIP       暗号方式 CCMP・TKIP
scan_ssid=1                      ステルスモード ON=1 OFF=0
network={

# ここから

proto=WPA WPA2
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
scan_ssid=1

# ここまでを追加

ssid="MY_SSID"
#psk="MY_PASSWORD" この行は削除してOK
psk=1234567890123456789012345678901234567890123456789012345678901234
}






保存:Ctrl+o して Enter
終了:Ctrl+x
使い方は画面下部を参考 ( ^ = Ctrl )
nano /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)

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

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

auto lo
iface lo inet loopback

iface eth0 inet manual

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

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






↓に変更
# interfaces(5) file used by ifup(8) and ifdown(8)

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

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

auto lo
iface lo inet loopback

iface eth0 inet manual

allow-hotplug wlan0
iface wlan0 inet static
address 192.168.1.11
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

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




保存:Ctrl+o して Enter
終了:Ctrl+x
使い方は画面下部を参考 ( ^ = Ctrl )


iface wlan0 inet static IP アドレス固定
iface wlan0 inet dhcp IPアドレス自動取得(下記不要)

address IP アドレス
netmask ネットマスク
gateway ゲートウェイ(ルーター)のアドレス
dns-nameservers DNSのアドレス

再起動

reboot





















夢でした。

拍手[0回]

PR