วันศุกร์ที่ 18 มกราคม พ.ศ. 2556

Raspberry pi static IP config



Enter the following command into the terminal window.
$ sudo nano /etc/network/interfaces
This will allow you to edit the file using nano.  Change the line that reads
iface eth0 inet dhcp
to
iface eth0 inet static
Below this line enter the following.
address 192.168.100.1
netmask 255.255.255.0
network 192.168.100.0
broadcast 192.168.100.255
gateway 192.168.100.254


ref http://www.raspberrypi-tutorials.co.uk/raspberry-pi-static-ip-address/

วันเสาร์ที่ 12 มกราคม พ.ศ. 2556