IRCNow

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
vps:vps [2019/12/05 03:25]
jrmu
vps:vps [2020/03/09 11:54]
jrmu
Line 1: Line 1:
-Taiwan ​Datacenter+Texas Datacenter
  
-^ $4/​month ​     ^ $8/​month ​      ^ $16/​month ​         ^+^ $5/​month ​     ^ $10/​month ​      ^ $20/​month ​         ^
 | 1GB RAM                   | 2GB RAM     | 4GB RAM        | | 1GB RAM                   | 2GB RAM     | 4GB RAM        |
 | 10GB SSD                  | 20GB SSD | 40GB SSD | | 10GB SSD                  | 20GB SSD | 40GB SSD |
 | 1 IPv4 Address ​          | 1 IPv4 Address ​    | 1 IPv4 Address ​       | | 1 IPv4 Address ​          | 1 IPv4 Address ​    | 1 IPv4 Address ​       |
 | IPv6 /64 subnet ​         | IPv6 /64 subnet ​   | IPv6 /64 subnet ​      | | IPv6 /64 subnet ​         | IPv6 /64 subnet ​   | IPv6 /64 subnet ​      |
-100Mbps ​sustained ​   | 20Mbps sustained ​   | 40Mbps sustained ​      |+10Mbps ​sustained ​   | 20Mbps sustained ​   | 40Mbps sustained ​      |
 | 100Mbps burst           | 100Mbps burst    | 100Mbps burst       | | 100Mbps burst           | 100Mbps burst    | 100Mbps burst       |
  
Line 14: Line 14:
  
 These are unmanaged plans. We can charge additional fees for a managed service. These are unmanaged plans. We can charge additional fees for a managed service.
 +
 +ECDSA key fingerprint is SHA256:​a0LIR/​BRZkpYqMho/​YvkISPEm7vkus5QfOSqAeu+tYc.
 +
 +<​code>​
 +$ ssh username@us5.ircnow.org
 +</​code>​
 +
 +To access the serial console:
 +
 +<​code>​
 +$ vmctl console <​vm-name>​
 +</​code>​
 +
 +To shutdown the VM:
 +
 +<​code>​
 +$ vmctl stop <​vm-name>​
 +</​code>​
 +
 +To boot the VM:
 +
 +<​code>​
 +$ vmctl start <​vm-name>​
 +</​code>​
 +
 +To pause the VM:
 +
 +<​code>​
 +$ vmctl pause <​vm-name>​
 +</​code>​
 +
 +To unpause the VM:
 +
 +<​code>​
 +$ vmctl unpause <​vm-name>​
 +</​code>​
 +
 +To escape serial console, type ~~. 
 +
 +Our default gateway is 38.81.163.129. Your IP address can be found by running $ dig username.us5.ircnow.org.
 +
 +For OpenBSD, here is how you statically assign your IP address:
 +
 +Inside /​etc/​hostname.vio0:​
 +
 +<​code>​
 +inet 38.81.163.xxx 255.255.255.0
 +</​code>​
 +
 +Replace 38.81.163.xxx with your assigned IP address.
 +
 +Inside /​etc/​mygate:​
 +
 +<​code>​
 +38.81.163.129
 +</​code>​
 +
 +For Alpine:
 +
 +To restart networking:
 +
 +<​code>​
 +# service networking restart
 +</​code>​
 +
 +Losing network connectivity:​
 +
 +For OpenBSD, put this in your crontab:
 +
 +<​code>​
 +@reboot /​usr/​bin/​tmux new -d 'while true; do /sbin/ping -i5 38.81.163.129;​ done' \;
 +</​code>​
 +
 +For Debian:
 +
 +<​code>​
 +@reboot /​usr/​bin/​tmux new -d 'while true; do /​usr/​bin/​ping -i5 38.81.163.129;​ done' \;
 +</​code>​
 +
 +For Alpine:
 +<​code>​
 +@reboot /​usr/​bin/​tmux new -d 'while true; do /bin/ping -i5 38.81.163.129;​ done' \;
 +</​code>​