-
Notifications
You must be signed in to change notification settings - Fork 270
Administration
Paul Philippov edited this page Jan 16, 2025
·
3 revisions
On the client computer, generate an ssh key and upload its public part to the camera.
ssh-keygen -t ed25519 -C "your_email@example.com"
ssh-copy-id root@192.168.1.10
Enter password when prompted to authenticate and upload the key.
Camera logs are stored on temporary storage, which is a RAM disk. This means these logs will be lost after a reboot. If you need to keep logs for a longer period, you can use a syslog server to store them.
Install rsyslog on a Linux machine your network:
sudo apt update
sudo apt install rsyslog
Edit /etc/rsyslog.conf to allow the server to accept remote logs:
# provides UDP syslog reception
module(load="imudp")
input(type="imudp" port="514")
# provides TCP syslog reception
module(load="imtcp")
input(type="imtcp" port="514")
Configure your cameras to send logs to the rsyslog server by adding its IP address
to rsyslog_ip parameter of U-Boot environment:
fw_setenv rsyslog_ip 192.168.1.66
- Wiki Home
- About the Project
- Getting Started
-
Supported Cameras
- Cameras
- 360 AP1PA3
- AliExpress LTIA‐37FJZ (Vanhua Z55 module)
- AOQEE C1
- Aosu C5L
- Cinnado
- Dekco DC5L
- Eufy
- Galayou/Wansview
- Hualai (Wyze/Atom/Neos/Personal)
- iFlytek XFP301‐M
- Jienuo JN-107-AR-E-WIFI
- Jooan A6M
- LaView L2
- LongPlus X07
- LSC 3215672
- Sannce I21AG
- Sonoff Cam‐S2 and B1P
- TP-Link Tapo C100/C110/C111
- Wuuk Y0510
- Xiaomi
- Configuration
- Integration
- Development