Category: Networking

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 […]

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 […]

VRRP with Keepalived

VRRP (Virtual Router Redundancy Protocol) is commonly used for providing first-hop IPv4 or IPv6 router (“default gateway”) redundancy for network-attached devices. Some network appliances like wireless LAN controllers use it to provide a virtual IP that can always be used for reaching the active member in the device cluster. VRRP can also be used on […]

Endianness

Let’s talk about byte ordering. You look at your packet bytes in Wireshark and see this data for a 16-bit integer field: If the data is said to be big-endian, then it is 0x0c4a = 3146 in decimal. If the data is said to be little-endian, then it is 0x4a0c = 18956 in decimal. So, […]