Questions tagged [private-network]

In the Internet addressing architecture, a private network is a network that uses private IP address space, following the standards set by RFC 1918 for Internet Protocol Version 4 (IPv4), and RFC 4193 for Internet Protocol Version 6 (IPv6).

In the Internet addressing architecture, a private network is a network that uses private IP address space, following the standards set by RFC 1918 for Internet Protocol Version 4 (IPv4), and RFC 4193 for Internet Protocol Version 6 (IPv6).

These addresses are commonly used for home, office, and enterprise local area networks (LANs), when globally routable addresses are not mandatory, or are not available for the intended network applications. Under IPv4, the private IP address spaces were originally defined in an effort to delay IPv4 address exhaustion, but they are also a feature of IPv6, the next generation Internet Protocol.

These addresses are characterized as private because they are not globally delegated, meaning that they are not allocated to any specific organization, and IP packets addressed with them cannot be transmitted through the public Internet. Anyone may use these addresses without approval from a regional Internet registry (RIR). If such a private network needs to connect to the Internet, it must use either a network address translator (NAT) gateway, or a proxy server.

50 questions
1
vote
1 answer

VSTS + Docker Swarm: continuous deployment under private network

I'm setting up a CI/CD with Visual Studio Team Services based on Docker Swarm. The target machine I'm deploying to is under private network. Because of that, the target machine is not reachable from VSTS so I can not use ssh or any kind of webhook…
1
vote
2 answers

How to set up a Private network and connect peers in geth?

I am trying to setup a private network and trying to connect peers. Currently I'm trying it on my laptop and desktop (both of them are connected to different internet). I run the below command in first terminal(in both systems (data dir is different…
1
vote
1 answer

JSON-RPC Message error when starting geth node or testrpc

I am trying to create a private network so that I can start testing my Solidity code. However, when starting the a geth private network with geth --rpc but I then run into an error for an invalid response.…
user3014093
  • 349
  • 2
  • 4
  • 19
1
vote
2 answers

Can we connect to a computer on the same private network using MAC address?

I could connect two computers withing a private network using private IP addresses using socket programming. Is it possible to do the same using MAC addresses? If it is possible, any example on Java/C/C++ would be appreciated. I couldn't find any…
Dilip Raj Baral
  • 3,073
  • 5
  • 31
  • 57
1
vote
1 answer

How to tunnel to into the private network of my docker containers on Bluemix?

I have some docker containers running on Bluemix using private IP addresses. I would now like to setup a tunnel from my laptop (running linux) to access the private network on Bluemix. I had first created a container running an ssh-server. Using ssh…
1
vote
1 answer

Does anyone know where I can find a Universal Windows Private Network (Client & Server) code Example?

I am brand new to Universal Windows Apps (Win 10). I am trying to port a console application over to UWP that acts as a remote testing and administrative console for a custom Windows Service application. I can not seem to find any solid example code…
Daniel Jerome
  • 171
  • 1
  • 2
  • 11
1
vote
0 answers

Vagrant guests can't access each other on private_network

I'm trying to 2 Vagrant VMs to communicate through a private network, but I must not be doing something right, because neither can ping the other on the ip address I specify. Here's my Vagrantfile…
jsmartt
  • 1,122
  • 1
  • 10
  • 18
0
votes
0 answers

use another consensus algorithm for private network

can I change the consensus algorithm to build up a local multi-nodes network for testing? I want to build up my own network application for research purposes. I need to change the consensus algorithm and build up applications on top of the iroha.
leon
  • 1
0
votes
1 answer

How to redirect some of the http requests to a machine in a private network?

I have a cluster of computing nodes. Only one node is publicly available (port 80). Other nodes can be accessed through some VPN. Now I host a web service on some node in the cluster, how can I redirect the http requests to the service through the…
0
votes
1 answer

Hyperledger Fabric error when I try to do ./network.sh up in test-network directory

This is the error that I am getting Creating peer0.org1.example.com ... error ERROR: for peer0.org1.example.com Cannot create container for service peer0.org1.example.com: status code not OK but 500: \ufffd\ufffd\ufffd\ufffd FDocker.Core,…
0
votes
0 answers

Cloud SQL Federated Queries - Private Database

It is clear from the documentation that Federated queries are not possible from a private ip database What can be the most GCP appropriate workarounds on this?
0
votes
1 answer

Is there a way to execute commands remotely using gcloud compute ssh utility

I know it is possible to execute commands remotely using ssh (in a file) like so; #!/bin/sh ssh ${USER}@${SERVER_IP} <
Mekky_Mayata
  • 131
  • 1
  • 9
0
votes
1 answer

Microstack - Cannont access (ping/ssh) launched VMs

I am trying to access some launched VMs without success. I followed this tutorial to create a private network. It is listed below: +--------------------------------------+----------+--------------------------------------+ | ID …
Dalton Cézane
  • 3,016
  • 2
  • 24
  • 48
0
votes
1 answer

IPFS private network connect timeout

I have 2 home PCs with windows 10. I want to create test ipfs private network between 2 nodes. I downloaded go-ipfs. ipfs version 0.6.0 I executed ipfs init ipfs bootstrap rm --all I made swarm.key and added node to config. ipfs bootstrap add…
Alex
  • 39
  • 5
0
votes
0 answers

How to configure OpenLDAP with 2 Host on private network?

As title, I want to configure OpenLDAP (v2.4.44 on Centos7) with 2 host on different location. The reason is that we would like to authenticate users at two different places. (ex: wifi) Referring some post on the website, it's easy to set two LDAP…