Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

Monitoring an IP Camera using a Raspberry Pi (no internet)

Disable Screen Blanking
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo raspi-config
sudo raspi-config
sudo raspi-config

Display Options > Screen Blanking

Update System
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo apt update && sudo apt dist-upgrade -y
sudo apt update && sudo apt dist-upgrade -y
sudo apt update && sudo apt dist-upgrade -y
Install omxplayer and dnsmasq
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo apt install omxplayer dnsmasq
sudo apt install omxplayer dnsmasq
sudo apt install omxplayer dnsmasq

DISCONNECT FROM NETWORK

Setup Static IP Address on eth0
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo nano /etc/dhcpcd.conf
sudo nano /etc/dhcpcd.conf
sudo nano /etc/dhcpcd.conf
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
interface eth0
static ip_address=192.168.0.10/24
interface eth0 static ip_address=192.168.0.10/24
interface eth0
static ip_address=192.168.0.10/24
Restart dhcpcd Service
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo systemctl restart dhcpcd
sudo systemctl restart dhcpcd
sudo systemctl restart dhcpcd
View Current IP Address
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ip a
ip a
ip a
Move Current dnsmasq Settings
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
Configure dnsmasq
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo nano /etc/dnsmasq.conf
sudo nano /etc/dnsmasq.conf
sudo nano /etc/dnsmasq.conf
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
interface=eth0
dhcp-range=192.168.0.11,192.168.0.254,255.255.255.0,24h
address=/#/192.168.0.10
dhcp-leasefile=/var/lib/misc/dnsmasq.leases
interface=eth0 dhcp-range=192.168.0.11,192.168.0.254,255.255.255.0,24h address=/#/192.168.0.10 dhcp-leasefile=/var/lib/misc/dnsmasq.leases
interface=eth0
dhcp-range=192.168.0.11,192.168.0.254,255.255.255.0,24h
address=/#/192.168.0.10
dhcp-leasefile=/var/lib/misc/dnsmasq.leases
Enable and Start dnsmasq Service
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo systemctl daemon-reload
sudo systemctl enable dnsmasq
sudo systemctl start dnsmasq
sudo systemctl daemon-reload sudo systemctl enable dnsmasq sudo systemctl start dnsmasq
sudo systemctl daemon-reload
sudo systemctl enable dnsmasq
sudo systemctl start dnsmasq

CONNECT IP CAMERA

Monitor DHCP Leases
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
tail -f /var/lib/misc/dnsmasq.leases
tail -f /var/lib/misc/dnsmasq.leases
tail -f /var/lib/misc/dnsmasq.leases
Add Host Entry to dnsmasq
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo nano /etc/dnsmasq.conf
sudo nano /etc/dnsmasq.conf
sudo nano /etc/dnsmasq.conf
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
dhcp-host=00:00:00:00:00:00,192.168.0.229
dhcp-host=00:00:00:00:00:00,192.168.0.229
dhcp-host=00:00:00:00:00:00,192.168.0.229
Restart dnsmasq Service
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo systemctl daemon-reload
sudo systemctl restart dnsmasq
sudo systemctl daemon-reload sudo systemctl restart dnsmasq
sudo systemctl daemon-reload
sudo systemctl restart dnsmasq
View IP Camera
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0"
omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0"
omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0"
Create Camera Service
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo nano /etc/systemd/system/camera.service
sudo nano /etc/systemd/system/camera.service
sudo nano /etc/systemd/system/camera.service
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
[Unit]
Description=Camera
After=network.target
[Service]
Type=simple
User=root
Group=root
ExecStart=/usr/bin/omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0"
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
[Unit] Description=Camera After=network.target [Service] Type=simple User=root Group=root ExecStart=/usr/bin/omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0" Restart=always RestartSec=10 [Install] WantedBy=multi-user.target
[Unit]
Description=Camera
After=network.target
[Service]
Type=simple
User=root
Group=root
ExecStart=/usr/bin/omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0"
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
Enable and Start camera service
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo systemctl enable camera
sudo systemctl start camera
sudo systemctl enable camera sudo systemctl start camera
sudo systemctl enable camera
sudo systemctl start camera
Enable Read-only File System
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo raspi-config
sudo raspi-config
sudo raspi-config

Performance Options > Overlay FS

Join the Conversation

1 Comment

Leave a comment

Your email address will not be published. Required fields are marked *