tiistaina, lokakuuta 30, 2018

After long break!

Last post was so long time ago, so time to fix that issue ;).
Had many things what I had plans to write, but never wasn't time to do that.
So here we go!

How to setup static IP address on Raspbian Jessie? This is changed in new release.
So best place where to do those IP settings are in file /etc/dhcpcd.conf.
Command: sudo nano /etc/dhcpcd.conf
So do all changes in that file. 
Here is example:
       interface eth0
       static ip_address=192.168.1.30/24
       static routers=192.168.1.1
       static domain_name_servers=192.168.1.1

       interface wlan0
       static ip_address=192.168.1.31/24
       static routers=192.168.1.1
       static domain_name_servers=192.168.1.1