Configuring VXLAN in Proxmox VE

About VXLAN From Wikipedia: Virtual eXtensible LAN (VXLAN) is a network virtualization technology that uses a VLAN-like encapsulation technique to encapsulate OSI layer 2 Ethernet frames within layer 4 UDP datagrams, using 4789 as the default IANA-assigned destination UDP port number, although many implementations that predate the IANA assignment use port 8472. VXLAN attempts to […]

CloudFormation Scripts Erroring About pkg_resources

When launching EC2 instances on AWS, you might need to install and run the CloudFormation helper scripts (https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/releasehistory-aws-cfn-bootstrap.html). However, since February 2026, as of the latest CloudFormation helper scripts version 2.0-38 (released on 2025-12-04), installing them works fine, but running for example cfn-init causes an error: ModuleNotFoundError: No module named ‘pkg_resources’ The reason is this […]

Desired Port and Network Infra MAC on AOS-CX REST API

What does this mean in the HPE Networking AOS-CX REST API response when getting the MAC address tables from a switch: GET /rest/v10.08/system/vlans/*/macs/*,*… ‘dynamic,11:22:33:44:55:66’: { ‘aged_on_subsystems’: {}, ‘attributes’: {‘local_move_disable’: False}, ‘denied’: False, ‘derived_entry_src’: ‘none’, ‘desired_port’: { ‘1/1/49’: ‘/rest/v10.08/system/interfaces/1%2F1%2F49’ }, ‘from’: ‘dynamic’, ‘inactivity_timeout’: 300, ‘mac_addr’: ’11:22:33:44:55:66′, ‘network_infra_mac’: False, ‘never_ageout’: False, ‘port’: None, ‘selected’: True },… Why […]

Installing VirtIO Drivers for Windows VM on Proxmox VE

When installing a Debian Linux virtual machine on a Proxmox Virtual Environment (PVE) host, the Debian installer automatically installs the VirtIO paravirtualization drivers and the QEMU guest agent so that no extra configurations are needed for full cooperation with the virtualization host. In Windows Server 2025 those drivers and utilities are not included. It means […]