Video stream url for VLC/DVR:
- rtsp://192.168.1.93:554/user=admin&password=&channel=&stream=.sdp?real_stream--rtp-caching=100
Telnet access
- telnet 192.168.1.10 23
- Localhost login: root
- Password: xmhdipc
#!/usr/bin/env bash | |
ENDPOINT='https://hc-ping.com/{insert-HealthChecks-UUID-here}' | |
LOGFILE='/var/log/synolog/synobackup.log' | |
[[ -e $LOGFILE ]] || exit 1 | |
awk -f- $LOGFILE <<'EOF' | |
BEGIN { | |
FS="\t"; |
#!/bin/bash | |
echo "[+] Checking for root permissions" | |
if [ "$EUID" -ne 0 ];then | |
echo "Please run this script as root" | |
exit 1 | |
fi | |
echo "[+] Seeting needrestart to automatic to prevent restart pop ups" | |
sudo sed -i 's/#$nrconf{restart} = '"'"'i'"'"';/$nrconf{restart} = '"'"'a'"'"';/g' /etc/needrestart/needrestart.conf |