Capturing a Proxmox VM traffic remotely from a windows host using wireshark

This guide will show you how, step-by-step. We’ll use a single command to pipe traffic from your Proxmox host directly into your local Wireshark GUI. The Big Picture: How It Works This technique uses a powerful combination of tools: Step 1: Install Wireshark on Windows This one is simple. If you don’t already have Wireshark, …

Adding a Proxmox Node that already contains guest Virtual Machines to a Cluster

On node1 (with guests) Create a new cluster or get join information. On node2 (with guests) scp -r /etc/pve/nodes/* to node1:/etc/pve/nodes (ex. scp -r /etc/pve/nodes/* to 192.168.x.x:/etc/pve/nodes ) rm -r /etc/pve/nodes/* Join cluster. NOTE: The joining machine will sync its VM’s from the Clusters host, including its PCI mappings and Firewall rules. If you have …

Debugging ASP.net Framework outside of Localhost or from a WAN connection

In .NET core, Microsoft recently released DevTunnels which creates an outgoing connection to a centralized service which receives request from an external provided URL when subscribing to the service, sadly there is no equivalent solution for .NET Framework. As a quick fix I threw together a proxy that resolves this issue exposing the self-hosted debug …