VM SSH access instructions
Once the machines have been started you can login directly, or you have ssh access:
1
2
3
4
5
6
7
Username: user
password: password
or
Username: root
password: puppet
|
For example:
1
$ ssh user@192.168.56.100
|
Note: you may want to alias the virtual servers in the host's ~/.ssh/config by adding the following:
1
2
3
4
5
$ cat >> ~/.ssh/config << 'EOF'
Host server0
HostName 192.168.56.100
User user
EOF
|
Now you can ssh into the virtual server by:
1
$ ssh server0
|