Questions tagged as ['virtual-network']

Score: 0
John Doe avatar
Can't add existing Virtual Network to Virtual network gateway in Azure
cz flag

While creating the Virtual network gateway and selecting the vnet, it says the VNet is "in use".

VNET address space is 10.0.0.0/16

Any idea why I'm getting this error?

enter image description here

I created a new subnet and it has no devices connected to it.

enter image description here

The connected devices are not on GatewaySubnet.

enter image description here

Score: 0
enko avatar
Connecting two VMs running in KVM
us flag

Short: Get two VM's to talk to each other running on same hypervisor.

I have two VMs running under KVM and I am trying to manage them via Cockpit.

The hypervisor, and the vm's are running Ubuntu 20.04.

VM's are configured using br0 (192.168.1.248/24) which points to enp2s0.

They get their own local lan IPs such as: 192.168.1.152 192.168.1.220

These can been seen and pinged on the local lan. They howev ...

Score: 0
Setting up a virtual environment for STP testing
ml flag

I'm looking to create a test environment for STP / RSTP. I eventually came by this post that suggested using namespaces. It seemed like that was exactly what I'd wanted to create the simplest STP environment. I ended up writing a script like this:

#!/bin/bash
 
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
    exit
fi
 
# First case: Try a single veth pair
ip netns add blue
 
ip link add ve ...
Score: 0
SupportiveDante avatar
How would I make a network topology on KVM analogous to the internal network configuration on virtualbox?
kr flag

The differences in documentation between KVM docs and virtualbox docs make it difficult to find what I'm looking for

My goal is to do something like https://resources.infosecinstitute.com/topic/setting-pentest-lab-pfsense-virtualbox/ where all guests have IPs assigned by the pfSense guest, which also acts like a firewall between them and can itself be accessed by the host network. In this way I can practi ...