Port: 5566 Hostname: oculushut-janus
F:\JanusVR_Win32_40.0\janusvr.exe -server oculushut-janus -port 5566
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
F:\dev\vagrant_base_boxes\from_atlas_0.0.2>vagrant up | |
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Box 'oculushut/vagrant-centOS64-oculushut' could not be found. Attempting to find and install... | |
default: Box Provider: virtualbox | |
default: Box Version: 0.0.2 | |
==> default: Loading metadata for box 'oculushut/vagrant-centOS64-oculushut' | |
default: URL: https://atlas.hashicorp.com/oculushut/vagrant-centOS64-oculushut | |
==> default: Adding box 'oculushut/vagrant-centOS64-oculushut' (v0.0.2) for provider: virtualbox | |
default: Downloading: https://atlas.hashicorp.com/oculushut/boxes/vagrant-centOS64-oculushut/versions/0.0.2/providers/virtualbox.box | |
default: Progress: 100% (Rate: 1195k/s, Estimated time remaining: --:--:--) |
[vagrant@localhost ~]$ sestatus | |
SELinux status: enabled | |
SELinuxfs mount: /sys/fs/selinux | |
SELinux root directory: /etc/selinux | |
Loaded policy name: targeted | |
Current mode: enforcing | |
Mode from config file: enforcing | |
Policy MLS status: enabled | |
Policy deny_unknown status: allowed | |
Max kernel policy version: 28 |
#Reference for System.Net.Sockets.TcpClient ==> https://msdn.microsoft.com/en-us/library/system.net.sockets.tcpclient(v=vs.110).aspx | |
# Paste parts 1 + 2 and see response from server. Then Paste part 3 to cleanup. | |
#=================== | |
# 1. Get Connected | |
#=================== | |
$tcpClient = New-Object System.Net.Sockets.TcpClient | |
$tcpClient.Connect("babylon.vrsites.com", 5566) | |
$tcpClient.Connected | |
#=========================== | |
# 2. Write data and see response |