Cisco Live Hackathon
"Red" team:
We have a Cisco 819-4g Router running on 10.10.31.177
- SSH using
ssh cisco@10.10.31.177and passwordcisco - It is running a Linux virtual machine on local port 192.168.100.2
- SSH to VM using
ssh -l root 192.168.100.2and passwordroot - The router also has the following port forwarding configured:
- 8022 --> 22, to provide external access to the VM SSH server
- 80 --> 8080, to provide external access to the VM Python HTTP server
For the deploy.sh script, we use the following SSH Config:
Host iox
HostName 10.10.31.177
User root
Port 8022
And to deploy run ./deploy.sh and enter password root
We can then access the server using http://10.10.31.177 if the server.py script is running.