Lenticular Cloud/Shell: Difference between revisions

From Milliways
Jump to navigation Jump to search
(Created page with "<h1>Activate</h1> Go to https://account.milliways.info/ to activate your shell or add passwords/ssh keys. ! Probably you have to refresh the page to see changes ! <h1>Conne...")
 
No edit summary
Line 1: Line 1:
<h1>Activate</h1>
= Activate =


Go to https://account.milliways.info/ to activate your shell or add passwords/ssh keys.
Go to https://account.milliways.info/ to activate your shell or add passwords/ssh keys.
Line 5: Line 5:
! Probably you have to refresh the page to see changes !
! Probably you have to refresh the page to see changes !


<h1>Connect</h1>
= Connect =


<h2>IPv6</h2>
== IPv6 ==
<code>ssh <username>@shell.milliways.info</code>
<code>ssh <username>@shell.milliways.info</code>


<h2>IPv4 (legacy IP)</h2>
== IPv4 (legacy IP) ==
<code>ssh -p 2222 <username>@shell.milliways.info</code>
<code>ssh -p 2222 <username>@shell.milliways.info</code>
=== ~/.ssh/config ===
  Host ipv4.shell.milliways.info
    HostName shell.milliways.info
    AddressFamily inet # force ipv4
    Port 2222
With that config you can use it with the following command:
  ssh <username>@ipv4.shell.milliways.info

Revision as of 18:58, 24 September 2018

Activate

Go to https://account.milliways.info/ to activate your shell or add passwords/ssh keys.

! Probably you have to refresh the page to see changes !

Connect

IPv6

ssh <username>@shell.milliways.info

IPv4 (legacy IP)

ssh -p 2222 <username>@shell.milliways.info

~/.ssh/config

 Host ipv4.shell.milliways.info
   HostName shell.milliways.info
   AddressFamily inet # force ipv4
   Port 2222

With that config you can use it with the following command:

 ssh <username>@ipv4.shell.milliways.info