Student Reviews
( 5 Of 5 )
1 review
Video of Automate VNC startup on Kali Pi Cisco CCNA 200-301 in Cisco CCNA course by Keith Barker - The OG of IT channel, video No. 69 free certified online
In a hurry, timestamps (below) allow you to jump to the part you want to see now.
This is a follow up to the install video, here: https://youtu.be/J8yvOYSCWGQ
Jump links:
00:50 Shout out to Shawn Powers for providing his expertise
02:15 Instructions for adding VNC auto start
07:30 Dualcomm DCSW-1005PT 10/100 Ethernet Network TAP and connections
10:25 Plugable USB 2.0 to Ethernet Fast 10/100
11:40 Physical connection overview
14:00 Verify interface number for plugable USB FastEthernet adapter
19:00 Wireshark capture
Enjoy, Like, and Subscribe.
Free YouTube Playlists from Keith:
Master Playlist for Cisco CCNA 200-301 https://ogit.online/sloth
Cisco CCNA 200-301 Security https://ogit.online/200-301_Security
Cisco CCNA 200-301 IPv4 Subnetting https://ogit.online/subnet
Join our Discord server https://ogit.online/Join_OGIT_on_Discord
And…
Keith’s Content at CBT Nuggets https://ogit.online/Keith-CBT
From Previous Video: https://youtu.be/J8yvOYSCWGQ
Kali Pi
Raspberry Pi with Kali Linux
Pi 3B+
Samsung 32G Micro SD
kali-linux-2020.1a-rpi3-nexmon.img.xz
https://www.offensive-security.com/kali-linux-arm-images/
BalenaEtcher-Setup-1.5.8.1
https://www.balena.io/etcher/
Angry IP Scanner
https://angryip.org/
Putty
https://putty.org/
TightVNC
https://tightvnc.com/
Additional hardware in this video:
Dualcomm DCSW-1005PT 10/100 Ethernet Network TAP w/PoE Pass-Through ~$110.00 us
Plugable USB 2.0 to Ethernet Fast 10/100 LAN Wired Network Adapter ~15.00 us
From previous video:
apt-get update && apt-get install -y x11vnc
shutdown -r now
nano /boot/config.txt
enable framebuffer commands, save and reboot
x11vnc -storepasswd
x11vnc -ncache 10 -auth guess -nap -forever -loop -repeat -rfbauth /root/.vnc/passwd -rfbport 5900
NEW commands/instructions in this video, and thank you to Shawn Powers
nano /etc/systemd/system/vnc.service
[Unit]
Description X11VNC pre-login
After multi-user.target
[Service]
Type simple
ExecStart /usr/bin/x11vnc -ncache 10 -auth guess -nap -forever -loop -repeat -rfbauth /root/.vnc/passwd -rfbport 5900
[Install]
WantedBy multi-user.target
Then to activate the systemd service:
systemctl daemon-reload
Then to enable the service on boot:
systemctl enable vnc
Then reboot, and it should come up on its own.
shutdown -r now
#KeithBarker #CCNA #200-301