Friday, 21 June 2013

ต่อ WiFi ให้ Raspberry Pi

สามารถเพิ่มการเชื่อมต่อให้กับ Raspberry Pi โดยใช้ Edup Mini Wireless USB จาก Ebay ด้วยราคาไม่เกิน 150 บาท

หลังจากเชื่อมต่อ Wireless USB เข้ากับ Raspberry Pi แล้ว เข้าไปแก้ไข Network Interface File โดยใช้คำสั่ง

sudo vim /etc/network/interfaces

แก้ใข้โดยเพื่มคำสั่งดังนี้

#auto connect
allow-hotplug wlan0
auto wlan0

# Auto Assign IP Address
iface wlan0 inet dhcp

# Manuel Assign IP Address
iface wlan0 inet manual
gateway 192.168.0.1
address 192.168.0.100
netmask 255.255.255.0

#WPA Connect 
wpa-ssid "ssid" 
wpa-psk "password"

No comments:

Post a Comment

Import SSH Private Key to Yubikey (PIV) for SSH Authentication

Introduction: This guide will walk you through the process of importing your SSH private key to a Yubikey (PIV) for SSH authentication on y...