- Head over to trystack.org then join the facebook group to get your invite.
- When you get the
(Somebody) approved your request to join the group TryStack
notification, go login to trystack (clicklogin using facebook
and approve with facebook). - Click the
Security Groups
tab, clickEdit Rules
, and add a couple rules:icmp
, from port:-1
, to port:-1
, cidr:0.0.0.0/0
tcp
, from port:22
, to port:22
, cidr:your.ip.address.here/32
- Click the
Keypairs
tab, then clickAdd New Keypair
, name ittrystack
. A file will download to your computer. - Click the
Images
tab, then clickLaunch
next to one of the images. Fill out the form and make sure to selecttrystack
as yourKey Name
and includedefault
in theSecurity Groups
. Clicklaunch instance
. Note the IP address you are assigned.
- Open your terminal and move
trystack.pem
to~/.ssh/trystack.pem
. - Run
chmod 600 ~/.ssh/trystack.pem
. - Run
ssh -i ~/.ssh/trystack.pem [email protected]
.
- CIDR means classless inter-domain routing. Basically
0.0.0.0/0
allows all IP addresses.1.2.3.4/32
allows only1.2.3.4
.
Nice catch. Fixed it.