-
Notifications
You must be signed in to change notification settings - Fork 15
Home
Kyle Graehl edited this page Nov 8, 2017
·
2 revisions
Currently it's tested and working on ChromeOS. On other platforms you may run into some issues with the operating system firewall.
On OS X you should be able to either disable the system firewall, or allow Chrome to accept incoming connections.
In Windows you can disable the windows firewall, or possibly find out how to allow Chrome to accept incoming connections.
You can create rules to forward connections made to the computer where this app is installed to go to another computer (or virtual machine, etc)
- Install termux on the Chromebook
- open termux and type
pkg install openssh
- create a private/public key pair inside termux by typing
ssh-keygen
- type
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
- Copy out the private key from termux:
cat ~/.ssh/id_rsa
(copy to clipboard) - Put that private key on any computer you want to give access (For example, paste it into
~/Downloads/id_rsa
- You can use Secure Shell or on OS X you can use Terminal.app or on Windows you might want to use Cygwin
- On OS X for example
ssh -i ~/Downloads/id_rsa {IP_ADDRESS_OF_CHROMEBOOK}:8022
- Make sure you configured connection forwarder to have a port forwarding rule from 0.0.0.0:8022 to {ANDROID_IP}:8022