-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor edits to cloud connection steps
- Loading branch information
1 parent
00faa50
commit 9506bcd
Showing
1 changed file
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
# Connecting to your instance on the cloud | ||
|
||
If you're using EC2 or any other cloud provider as a means to test out red-pnda, then chances are you might not be able to connect to the PNDA console through an elastic IP. | ||
If you're using EC2 or any other cloud provider as a means to test out red-pnda, then the chances are you might not be able to connect to the PNDA console through an elastic IP. | ||
|
||
Here are the steps to overcome the limitation: | ||
Here are the steps to overcome this limitation: | ||
|
||
* ssh to your cloud instance with a '-D' flag | ||
* ssh to your cloud instance with the '-D' and '-q' flags | ||
* '-q' sets the logging to quiet and suppresses any error messages | ||
|
||
ssh -i /path/to/your/key.pem -D 8888 [email protected] | ||
ssh -i /path/to/your/key.pem -q -D 8888 [email protected] | ||
|
||
* Download FoxyProxy extension for your browser. Please use the following links to download | ||
|
||
|
@@ -26,6 +27,8 @@ Then click on the first selection and then click on 'Edit Selection' | |
|
||
Click 'OK'. Make sure the extension is enabled, you should see a blue indicator to the right of your address bar! | ||
|
||
* Type the private IP of your ec2 instance in the browser and behold, Magic! | ||
* Type the private or public IP of your ec2 instance in the browser and you should see the console | ||
* Note the console can take 10-15 secs to show the active running status | ||
* Magic! | ||
|
||
|
||
|