ClockworkPi Remote Access Guide
Device Info
Hostname: kali-raspberry-pi
IP Address: 10.0.0.15
Username: kali
Password: kali
SSH Access (Terminal)
Connect via SSH for command line access:
ssh kali@10.0.0.15
Run a quick command remotely:
ssh kali@10.0.0.15 "your-command-here"
SSH key is already set up - no password needed from this laptop.
VNC Remote Desktop (See Real Screen)
Step 1: Start x11vnc on ClockworkPi (if not running):
ssh kali@10.0.0.15 "x11vnc -display :0 -forever -bg -nopw -xkb -rfbport 5900"
Step 2: Connect with VNC viewer:
vncviewer 10.0.0.15:0
This mirrors the actual screen on the ClockworkPi - same wallpaper, same open windows, everything!
File Transfer
Copy file TO ClockworkPi:
scp /path/to/file.txt kali@10.0.0.15:~/
Copy file FROM ClockworkPi:
scp kali@10.0.0.15:~/file.txt /local/path/
Interactive file browser:
sftp kali@10.0.0.15
Quick One-Liner (Start VNC & Connect)
ssh kali@10.0.0.15 "pgrep x11vnc || x11vnc -display :0 -forever -bg -nopw -xkb -rfbport 5900" && vncviewer 10.0.0.15:0
Troubleshooting
Can't connect? Check if ClockworkPi is online:
ping 10.0.0.15
Find ClockworkPi on network:
nmap -p22 --open 10.0.0.0/24
VNC not working? Kill and restart:
ssh kali@10.0.0.15 "pkill x11vnc; x11vnc -display :0 -forever -bg -nopw -xkb -rfbport 5900"
Note: The IP address (10.0.0.15) may change if your router assigns a new one. If you can't connect, scan the network to find the new IP.