Skip to content

danielusp/ssh-emulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SSH Connection

Simulates ssh connections on localhost. When you run the project a default user called user is created with a password 1234.

In order to run this project you need Docker

Setup

Build image

make build

Run container

make run

Generates the public and private access keys

User's password: 1234

Obs: Every time you run the container a new key needs to be generated

make sshkeygen

Get server's IP

make getip

Up node server

( http://[ip address]/, http://[ip address]/about )

make up

Kill server

make down

Connect server via ssh

make ssh

Send two files to server

Obs: In order to see the modificatios from a deploy you need to down/up server

make scp

Stop container (down all the services)

make stop