From 434c3a352e03824735447337ae3ed2cd62d38ad3 Mon Sep 17 00:00:00 2001 From: visocicaguy Date: Sun, 18 Jun 2017 00:32:05 +0200 Subject: [PATCH] Update README.md --- controller/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/controller/README.md b/controller/README.md index c333922..de8bd68 100644 --- a/controller/README.md +++ b/controller/README.md @@ -104,3 +104,19 @@ as multiple cameras need to be combined and avconv does not support the appropri this is being used in /controller/config/__init__.py PICTURE_COMMAND when executing the "convert" command while combining multiple images ``` + +13. set up fixed IP addresses (rpi3): +``` +Edit /etc/dhcpcd.conf as follows:- + + Here is an example which configures a static address, routes and dns. + interface eth0 + static ip_address=192.168.1.6/24 + static routers=192.168.1.1 + static domain_name_servers=192.168.1.1 + + interface wlan0 + static ip_address=192.168.1.7/24 + static routers=192.168.1.1 + static domain_name_servers=192.168.1.1 +```