# LAN

Published articles for LAN.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## VLANs explicadas: segmenta tu red

DevFeed: [VLANs explicadas: segmenta tu red](<https://devfeed.tech/articles/vlans-explicadas-segmenta-tu-red-34092.md>)

Original publisher: [Read original article](<https://tengoping.com/blog/vlans-explicadas-segmentar-red/>)

Author: Antonio Pérez

Published: 2026-07-27T00:00:00Z

Content type: tutorial

Language: es

Sources: [tengoping.com](<https://devfeed.tech/sources/tengoping-com.md>)

Topics: [Homelab](<https://devfeed.tech/topics/homelab.md>), [Ethernet](<https://devfeed.tech/topics/ethernet.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [interfaces](<https://devfeed.tech/topics/interfaces.md>), [Hardware](<https://devfeed.tech/topics/hardware.md>)

Tags: [ethernet](<https://devfeed.tech/tags/ethernet.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [interfaces](<https://devfeed.tech/tags/interfaces.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux](<https://devfeed.tech/tags/linux.md>), [vlan](<https://devfeed.tech/tags/vlan.md>)

### AI overview

This tutorial explains how VLANs divide one physical network into separate logical networks. It covers 802.1Q tagging, VLAN IDs, access and trunk ports, PVIDs, and configuring VLANs on managed switches and Linux for homelab network segmentation.

### Source excerpt

Qué son las VLANs y el etiquetado 802.1Q, cómo configurarlas en un switch gestionado y en Linux, y cuándo merece la pena segmentar tu red de homelab.

## Pi-hole: bloquea publicidad en toda tu red

DevFeed: [Pi-hole: bloquea publicidad en toda tu red](<https://devfeed.tech/articles/pi-hole-bloquea-publicidad-en-toda-tu-red-34074.md>)

Original publisher: [Read original article](<https://tengoping.com/blog/pihole-bloqueo-publicidad-red/>)

Author: Antonio Pérez

Published: 2026-02-04T00:00:00Z

Content type: tutorial

Language: es

Sources: [tengoping.com](<https://devfeed.tech/sources/tengoping-com.md>)

Topics: [Pi-hole](<https://devfeed.tech/topics/pihole.md>), [DHCP](<https://devfeed.tech/topics/dhcp.md>), [Raspberry Pi](<https://devfeed.tech/topics/raspberry-pi.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [Debian](<https://devfeed.tech/topics/debian.md>), [Ubuntu](<https://devfeed.tech/topics/ubuntu.md>)

Tags: [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [debian](<https://devfeed.tech/tags/debian.md>), [dhcp](<https://devfeed.tech/tags/dhcp.md>), [dns](<https://devfeed.tech/tags/dns.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux](<https://devfeed.tech/tags/linux.md>), [local](<https://devfeed.tech/tags/local.md>), [pi](<https://devfeed.tech/tags/pi.md>), [raspberry-pi](<https://devfeed.tech/tags/raspberry-pi.md>), [resolver](<https://devfeed.tech/tags/resolver.md>), [router](<https://devfeed.tech/tags/router.md>), [script](<https://devfeed.tech/tags/script.md>), [settings](<https://devfeed.tech/tags/settings.md>), [ubuntu](<https://devfeed.tech/tags/ubuntu.md>)

### AI overview

A Spanish tutorial explaining how Pi-hole filters advertising and tracking domains through local DNS, how to install it on a Raspberry Pi or Linux system, configure it on a router, use DHCP when necessary, and resolve local network names.

### Source excerpt

Pi-hole a fondo: por qué el DoH del navegador lo esquiva, DNS local para tu LAN, Teleporter y qué revisar si no bloquea.

## Analysis of PPPP "encryption"

DevFeed: [Analysis of PPPP "encryption"](<https://devfeed.tech/articles/analysis-of-pppp-encryption-36629.md>)

Original publisher: [Read original article](<https://palant.info/2026/01/05/analysis-of-pppp-encryption/>)

Author: Wladimir Palant

Published: 2026-01-05T15:50:53Z

Content type: article

Language: en

Sources: [Almost Secure](<https://devfeed.tech/sources/almost-secure.md>)

Topics: [Encryption](<https://devfeed.tech/topics/encryption.md>), [Cryptography](<https://devfeed.tech/topics/cryptography.md>), [Network](<https://devfeed.tech/topics/network.md>), [Protocol (disambiguation)](<https://devfeed.tech/topics/protocol.md>), [Algorithms](<https://devfeed.tech/topics/algorithms.md>)

Tags: [analysis](<https://devfeed.tech/tags/analysis.md>), [ascii](<https://devfeed.tech/tags/ascii.md>), [cryptanalysis](<https://devfeed.tech/tags/cryptanalysis.md>), [encryption](<https://devfeed.tech/tags/encryption.md>), [lan](<https://devfeed.tech/tags/lan.md>), [network](<https://devfeed.tech/tags/network.md>), [pull-request](<https://devfeed.tech/tags/pull-request.md>), [theory](<https://devfeed.tech/tags/theory.md>)

### AI overview

This analysis examines weaknesses in PPPP "encryption." It explains that app keys are reduced to a four-byte effective key and that the scheme is vulnerable to known-plaintext attacks. For LAN camera discovery when the app and traffic are unknown, the article describes sending all possible encrypted search packets, with at most 157,092 ciphertexts, and notes a pull request to update the device-detection script.

### Source excerpt

My first article on the PPPP protocol already said everything there was to say about PPPP "encryption": Keys are static and usually trivial to extract from the app. No matter how long the original key, it is mapped to an effective key that's merely four bytes long. The "encryption" is extremely susceptible to known-plaintext attacks, usually allowing reconstruction of the effective key from a single encrypted packet. So this thing is completely broken, why look any further? There is at least one situation where you don't know the app being used so you cannot extract the key and you don't have any traffic to analyze either. It's when you are trying to scan your local network for potential hidden cameras. This script will currently only work for cameras using plaintext communication. Other cameras expect a properly encrypted "LAN search" packet and will ignore everything else. How can this be solved without listing all possible keys in the script? By sending all possible ciphertexts of course! TL;DR: What would be completely ridiculous with any reasonable protocol turned out to be quite possible with PPPP. There are at most 157,092 ways in which a "LAN search" packet can be encrypted. I've opened a pull request to have the PPPP device detection script adjusted. Note: Cryptanalysis isn't my topic, I am by no means an expert here. These issues are simply too obvious. Contents Mapping keys to effective keys Redundancies within the effective key ASCII to the rescue How large is n? How many ciphertexts is that? Understanding the response Mapping keys to effective keys The key which is specified as part of the app's "init string" is not being used for encryption directly. Nor is it being fed into any of the established key stretching algorithms. Instead, a key represented by the byte sequence b1,b2,...,bnb_1, b_2, \ldots, b_n is mapped to four bytes k1,k2,k3,k4k_1, k_2, k_3, k_4 that become the effective key. These bytes are calculated as follows (⌊x⌋\lfloor x \rfloor means r

## Arista EOS Spooky Action at a Distance

DevFeed: [Arista EOS Spooky Action at a Distance](<https://devfeed.tech/articles/arista-eos-spooky-action-at-a-distance-11147.md>)

Original publisher: [Read original article](<https://blog.ipspace.net/2025/03/arista-spooky-action-distance/>)

Published: 2025-03-17T08:10:00Z

Content type: article

Language: en

Sources: [ipSpace.net blog](<https://devfeed.tech/sources/ipspace-net-blog.md>)

Topics: [Integration testing](<https://devfeed.tech/topics/integration-testing.md>), [Ethernet](<https://devfeed.tech/topics/ethernet.md>), [qemu](<https://devfeed.tech/topics/qemu.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [JSON](<https://devfeed.tech/topics/json.md>)

Tags: [blog](<https://devfeed.tech/tags/blog.md>), [blog-post](<https://devfeed.tech/tags/blog-post.md>), [ethernet](<https://devfeed.tech/tags/ethernet.md>), [integration-testing](<https://devfeed.tech/tags/integration-testing.md>), [ipv4](<https://devfeed.tech/tags/ipv4.md>), [json](<https://devfeed.tech/tags/json.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux](<https://devfeed.tech/tags/linux.md>), [netlab](<https://devfeed.tech/tags/netlab.md>), [qemu](<https://devfeed.tech/tags/qemu.md>), [testing](<https://devfeed.tech/tags/testing.md>), [tests](<https://devfeed.tech/tags/tests.md>), [validation](<https://devfeed.tech/tags/validation.md>), [virtualization](<https://devfeed.tech/tags/virtualization.md>)

### AI overview

This blog post investigates unexpected Arista EOS behavior found during netlab VRRP integration testing. In a minimal lab, shutting down one switch interface caused the other switch's Ethernet line protocol to go down and stopped responses from the VRRP backup. Packet capture indicated that the first switch sent a packet instructing the peer to emulate remote link loss.

### Source excerpt

This blog post describes yet another bizarre behavior discovered during the netlab integration testing. It started innocently enough: I was working on the VRRP integration test and wanted to use Arista EOS as the second (probe) device in the VRRP cluster because it produces nice JSON-formatted results that are easy to use in validation tests. Everything looked great until I ran the test on all platforms on which netlab configures VRRP, and all of them passed apart from Arista EOS (that was before we figured out how Sturgeon's Law applies to VRRPv3) - a "That's funny" moment that was directly responsible for me wasting a few hours chasing white rabbits down this trail. Read more ...

## Lab: IS-IS Designated Router Election

DevFeed: [Lab: IS-IS Designated Router Election](<https://devfeed.tech/articles/lab-is-is-designated-router-election-11151.md>)

Original publisher: [Read original article](<https://blog.ipspace.net/2025/03/isis-dis-election/>)

Published: 2025-03-13T07:03:00Z

Content type: tutorial

Language: en

Sources: [ipSpace.net blog](<https://devfeed.tech/sources/ipspace-net-blog.md>)

Topics: [IS-IS](<https://devfeed.tech/topics/is-is.md>)

Tags: [is-is](<https://devfeed.tech/tags/is-is.md>), [lan](<https://devfeed.tech/tags/lan.md>), [netlab](<https://devfeed.tech/tags/netlab.md>), [ospf](<https://devfeed.tech/tags/ospf.md>), [router](<https://devfeed.tech/tags/router.md>), [standards](<https://devfeed.tech/tags/standards.md>)

### AI overview

This lab article explains that IS-IS uses a Designated Intermediate System (DIS) router to originate the pseudo-node for a LAN segment. Unlike OSPF, the DIS does not need a backup because it is not responsible for flooding.

### Source excerpt

Like OSPF, IS-IS needs a router to originate the pseudo-node for a LAN segment. IS-IS standards call that router a Designated Intermediate System (DIS), and since it is not responsible for flooding, it does not need a backup. Want to know more? The Influence the Designated IS Election lab exercise provides the details (and some hands-on work).

## Capturing Traffic in Virtual Networking Labs

DevFeed: [Capturing Traffic in Virtual Networking Labs](<https://devfeed.tech/articles/capturing-traffic-in-virtual-networking-labs-11160.md>)

Original publisher: [Read original article](<https://blog.ipspace.net/2025/03/virtual-labs-traffic-capture/>)

Published: 2025-03-04T06:43:00Z

Content type: tutorial

Language: en

Sources: [ipSpace.net blog](<https://devfeed.tech/sources/ipspace-net-blog.md>)

Topics: [networking](<https://devfeed.tech/topics/networking.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [qemu](<https://devfeed.tech/topics/qemu.md>), [virtual machines](<https://devfeed.tech/topics/virtual-machines.md>), [Containers](<https://devfeed.tech/topics/containers.md>), [Docker](<https://devfeed.tech/topics/docker.md>)

Tags: [capture](<https://devfeed.tech/tags/capture.md>), [container](<https://devfeed.tech/tags/container.md>), [containers](<https://devfeed.tech/tags/containers.md>), [docker](<https://devfeed.tech/tags/docker.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux](<https://devfeed.tech/tags/linux.md>), [netlab](<https://devfeed.tech/tags/netlab.md>), [networking](<https://devfeed.tech/tags/networking.md>), [qemu](<https://devfeed.tech/tags/qemu.md>), [virtual-machines](<https://devfeed.tech/tags/virtual-machines.md>), [virtualization](<https://devfeed.tech/tags/virtualization.md>)

### AI overview

A tutorial on capturing traffic in virtual networking labs. It explains how to capture traffic from Linux bridges and QEMU-connected virtual machines, use netlab capture as a wrapper around virsh, brctl, and tcpdump, and approach traffic capture for containers attached to Docker networks or Linux bridges.

### Source excerpt

When I announced the Stub Networks in Virtual Labs blog post on LinkedIn, I claimed it was the last chapter in the "links in virtual labs" saga. I was wrong; here comes the fourth part of the virtual links trilogy - capturing "on the wire" traffic in virtual networking labs. While network devices provide traffic capture capabilities (usually tcpdump in disguise generating a .pcap file), it's often better to capture the traffic outside of the device to see what the root cause of the problems you're experiencing might be. Read more ...

## Why VLAN 1 Should Not Be Tagged in a Trunk

DevFeed: [Why VLAN 1 Should Not Be Tagged in a Trunk](<https://devfeed.tech/articles/tagged-vlan-1-in-a-trunk-is-a-really-bad-idea-11139.md>)

Original publisher: [Read original article](<https://blog.ipspace.net/2025/02/tagged-vlan-1/>)

Published: 2025-02-11T07:05:00Z

Content type: article

Language: en

Sources: [ipSpace.net blog](<https://devfeed.tech/sources/ipspace-net-blog.md>)

Topics: [Network](<https://devfeed.tech/topics/network.md>), [Ethernet](<https://devfeed.tech/topics/ethernet.md>), [DHCP](<https://devfeed.tech/topics/dhcp.md>), [Cisco](<https://devfeed.tech/topics/cisco.md>)

Tags: [bridging](<https://devfeed.tech/tags/bridging.md>), [cisco](<https://devfeed.tech/tags/cisco.md>), [dhcp](<https://devfeed.tech/tags/dhcp.md>), [ethernet](<https://devfeed.tech/tags/ethernet.md>), [lan](<https://devfeed.tech/tags/lan.md>), [netlab](<https://devfeed.tech/tags/netlab.md>), [network](<https://devfeed.tech/tags/network.md>), [security](<https://devfeed.tech/tags/security.md>)

### AI overview

The article examines conflicting interpretations of VLAN 1 in trunks by Cumulus NVUE and Arista EOS. It recommends avoiding VLAN 1 in VLAN trunks and using it as the native VLAN when necessary, while explaining the historical and operational reasons behind this behavior.

### Source excerpt

It all started with a netlab issue describing different interpretations of VLAN 1 in a trunk. While Cumulus NVUE (the way the netlab configuration template configures it) assumes that the VLAN 1 in a trunk is tagged, Arista EOS assumes it's the native VLAN. At that point, I should have said, "that's crazy, we shouldn't allow that" and enforce the "VLAN 1 has to be used as a native VLAN" rule. Alas, 20/20 hindsight never helped anyone. TL&DR: Do not use VLAN 1 in VLAN trunks; if you have to, use it as a native VLAN. Read more ...

## The Ethernet/802.1 Protocol Stack

DevFeed: [The Ethernet/802.1 Protocol Stack](<https://devfeed.tech/articles/the-ethernet-802-1-protocol-stack-11119.md>)

Original publisher: [Read original article](<https://blog.ipspace.net/2025/01/ethernet-8021-protocol-stack/>)

Published: 2025-01-22T07:28:00Z

Content type: tutorial

Language: en

Sources: [ipSpace.net blog](<https://devfeed.tech/sources/ipspace-net-blog.md>)

Topics: [Ethernet](<https://devfeed.tech/topics/ethernet.md>), [Protocol (disambiguation)](<https://devfeed.tech/topics/protocol.md>)

Tags: [ethernet](<https://devfeed.tech/tags/ethernet.md>), [gigabit-ethernet](<https://devfeed.tech/tags/gigabit-ethernet.md>), [lan](<https://devfeed.tech/tags/lan.md>), [protocol](<https://devfeed.tech/tags/protocol.md>), [provisioning](<https://devfeed.tech/tags/provisioning.md>), [reconciliation](<https://devfeed.tech/tags/reconciliation.md>)

### AI overview

An explanation of the Ethernet and IEEE 802.1 protocol stack, including the MAC and LLC sublayers, physical-layer subdivisions, and the placement of discovery, link aggregation, spanning tree, VLAN, and provisioning protocols.

### Source excerpt

The believers in the There Be Four Layers religion think everything below IP is just a blob of stuff dealing with physical things: People steeped in a slightly more nuanced view of the world in which IP is not the centerpiece of the universe might tell you that the blob of stuff we need is two things: Read more ...

## Attacking UNIX Systems via CUPS, Part I

DevFeed: [Attacking UNIX Systems via CUPS, Part I](<https://devfeed.tech/articles/attacking-unix-systems-via-cups-part-i-41270.md>)

Original publisher: [Read original article](<https://www.evilsocket.net/2024/09/26/Attacking-UNIX-systems-via-CUPS-Part-I/>)

Author: Simone Margaritelli

Published: 2024-09-26T14:51:30Z

Content type: article

Language: en

Sources: [evilsocket](<https://devfeed.tech/sources/evilsocket.md>)

Topics: [vulnerability](<https://devfeed.tech/topics/vulnerability.md>), [Security](<https://devfeed.tech/topics/security.md>), [Unix](<https://devfeed.tech/topics/unix.md>), [Exploit](<https://devfeed.tech/topics/exploit.md>), [gnu linux](<https://devfeed.tech/topics/gnu-linux.md>), [systems](<https://devfeed.tech/topics/systems.md>)

Tags: [bugs](<https://devfeed.tech/tags/bugs.md>), [cups](<https://devfeed.tech/tags/cups.md>), [cups-browsed](<https://devfeed.tech/tags/cups-browsed.md>), [cve](<https://devfeed.tech/tags/cve.md>), [cve-2024-47076](<https://devfeed.tech/tags/cve-2024-47076.md>), [cve-2024-47175](<https://devfeed.tech/tags/cve-2024-47175.md>), [cve-2024-47176](<https://devfeed.tech/tags/cve-2024-47176.md>), [cve-2024-47177](<https://devfeed.tech/tags/cve-2024-47177.md>), [cybersecurity](<https://devfeed.tech/tags/cybersecurity.md>), [disclosure](<https://devfeed.tech/tags/disclosure.md>), [exploit](<https://devfeed.tech/tags/exploit.md>), [gnu-linux](<https://devfeed.tech/tags/gnu-linux.md>), [hacking](<https://devfeed.tech/tags/hacking.md>), [ipp](<https://devfeed.tech/tags/ipp.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux-security](<https://devfeed.tech/tags/linux-security.md>), [mdns](<https://devfeed.tech/tags/mdns.md>), [no-authentication](<https://devfeed.tech/tags/no-authentication.md>), [port](<https://devfeed.tech/tags/port.md>), [print-services](<https://devfeed.tech/tags/print-services.md>), [printer](<https://devfeed.tech/tags/printer.md>), [printers](<https://devfeed.tech/tags/printers.md>), [printing](<https://devfeed.tech/tags/printing.md>), [rce](<https://devfeed.tech/tags/rce.md>), [responsible-disclosure](<https://devfeed.tech/tags/responsible-disclosure.md>), [security](<https://devfeed.tech/tags/security.md>), [udp](<https://devfeed.tech/tags/udp.md>), [unauthenticated-access](<https://devfeed.tech/tags/unauthenticated-access.md>), [unix](<https://devfeed.tech/tags/unix.md>), [vulnerability-research](<https://devfeed.tech/tags/vulnerability-research.md>), [zeroconf](<https://devfeed.tech/tags/zeroconf.md>)

### AI overview

A security writeup describes multiple vulnerabilities in CUPS components affecting GNU/Linux and other UNIX systems. It reports that remote unauthenticated attackers may replace printer IPP URLs and trigger arbitrary command execution when a print job starts, with attacks possible over the public internet or via spoofed LAN advertisements.

### Source excerpt

Hello friends, this is the first of two, possibly three (if and when I have time to finish the Windows research) writeups. We will start

## Using wemulate with netlab

DevFeed: [Using wemulate with netlab](<https://devfeed.tech/articles/using-wemulate-with-netlab-10985.md>)

Original publisher: [Read original article](<https://blog.ipspace.net/2024/04/netlab-wemulate/>)

Published: 2024-04-02T05:49:00Z

Content type: tutorial

Language: en

Sources: [ipSpace.net blog](<https://devfeed.tech/sources/ipspace-net-blog.md>)

Topics: [networking](<https://devfeed.tech/topics/networking.md>), [Containers](<https://devfeed.tech/topics/containers.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [Docker](<https://devfeed.tech/topics/docker.md>)

Tags: [bash](<https://devfeed.tech/tags/bash.md>), [container](<https://devfeed.tech/tags/container.md>), [containers](<https://devfeed.tech/tags/containers.md>), [distributed](<https://devfeed.tech/tags/distributed.md>), [docker](<https://devfeed.tech/tags/docker.md>), [ipv4](<https://devfeed.tech/tags/ipv4.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux](<https://devfeed.tech/tags/linux.md>), [netlab](<https://devfeed.tech/tags/netlab.md>), [networking](<https://devfeed.tech/tags/networking.md>)

### AI overview

This tutorial shows how to use wemulate with netlab to build a container-based virtual WAN network. It explains how wemulate connects container interfaces with Linux bridges, how to configure static IPv4 prefixes, and how to add jitter before testing connectivity between hosts.

### Source excerpt

An RSS hiccup brought an old blog post from Urs Baumann into my RSS reader. I'm always telling networking engineers that it's essential to set up realistic WAN environments when testing distributed software, and wemulate (a nice tc front-end) seemed like a perfect match. Even better, it runs in a container - an ideal component for a netlab-generated virtual WAN network. wemulate acts as a bump in the wire; it uses Linux bridges to connect two container interfaces. We'll use it to introduce jitter into an IP subnet: ┌──┐ ┌────────┐ ┌──┐ │h1├───┤wemulate├───┤h2│ └──┘ └────────┘ └──┘ ◄──────────────────────► 192.168.33.0/24 Read more ...

## How IX.BR Automates Quarantine LAN Testing

DevFeed: [How IX.BR Automates Quarantine LAN Testing](<https://devfeed.tech/articles/appreciation-of-automated-ix-quarantine-lan-testing-41612.md>)

Original publisher: [Read original article](<https://blog.benjojo.co.uk/post/ixbr-automated-quarantine>)

Author: ben@benjojo.co.uk

Published: 2024-02-01T11:27:29Z

Content type: article

Language: en

Sources: [benjojo blog](<https://devfeed.tech/sources/benjojo-blog.md>)

Topics: [Network](<https://devfeed.tech/topics/network.md>), [Ethernet](<https://devfeed.tech/topics/ethernet.md>), [Internet Traffic](<https://devfeed.tech/topics/internet-traffic.md>), [DDoS](<https://devfeed.tech/topics/ddos.md>), [proxy](<https://devfeed.tech/topics/proxy.md>), [Testing](<https://devfeed.tech/topics/testing.md>)

Tags: [arp](<https://devfeed.tech/tags/arp.md>), [bgp](<https://devfeed.tech/tags/bgp.md>), [ethernet](<https://devfeed.tech/tags/ethernet.md>), [internet](<https://devfeed.tech/tags/internet.md>), [internet-traffic](<https://devfeed.tech/tags/internet-traffic.md>), [lan](<https://devfeed.tech/tags/lan.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [tests](<https://devfeed.tech/tags/tests.md>)

### AI overview

The article describes IX.BR São Paulo's automated quarantine LAN testing portal for internet exchange participants. It explains why quarantine testing matters, including the risks of Ethernet loops, management frames, and Proxy ARP on a shared Layer 2 exchange LAN.

### Source excerpt

Appreciation of automated IX Quarantine LAN testing Something that bgp.tools (my company) does a great deal is joining internet exchanges.

## Configuring VLANs, Firewall Rules, and WiFi Networks - UniFi Network Application

DevFeed: [Configuring VLANs, Firewall Rules, and WiFi Networks - UniFi Network Application](<https://devfeed.tech/articles/configuring-vlans-firewall-rules-and-wifi-networks-unifi-network-application-10703.md>)

Original publisher: [Read original article](<https://technotim.com/posts/vlan-firewall-unifi/>)

Author: Techno Tim

Published: 2023-03-04T15:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [networking](<https://devfeed.tech/topics/networking.md>), [Firewall](<https://devfeed.tech/topics/firewall.md>), [Security](<https://devfeed.tech/topics/security.md>), [Ubiquiti](<https://devfeed.tech/topics/ubiquiti.md>)

Tags: [firewall](<https://devfeed.tech/tags/firewall.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [lan](<https://devfeed.tech/tags/lan.md>), [network](<https://devfeed.tech/tags/network.md>), [security](<https://devfeed.tech/tags/security.md>), [unifi](<https://devfeed.tech/tags/unifi.md>), [wireless](<https://devfeed.tech/tags/wireless.md>)

### AI overview

This tutorial explains how to configure VLANs with the UniFi Network Application, including creating a network, setting up a wireless network that uses VLANs, and adding firewall rules. It also describes how VLANs can improve security, performance, management, and flexibility for home networks.

### Source excerpt

What is a VLAN and How Do They Help? Today we're going to cover setting up VLANs using UniFi's network controller.We'll set up a VLAN, from start to finish, which includes creating a new network, configuring a wireless network that uses VLANs, and then we'll set up firewall rules to make sure we're keeping our network safe. If you think VLANs are only for the enterprise, you're wrong, I will s...

## How to Configure Wake on LAN Across Windows, macOS, and Linux

DevFeed: [How to Configure Wake on LAN Across Windows, macOS, and Linux](<https://devfeed.tech/articles/the-ultimate-guide-to-wake-on-lan-for-windows-macos-and-linux-10705.md>)

Original publisher: [Read original article](<https://technotim.com/posts/wake-on-lan/>)

Author: Techno Tim

Published: 2023-02-19T15:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [networking](<https://devfeed.tech/topics/networking.md>), [Network](<https://devfeed.tech/topics/network.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [macOS](<https://devfeed.tech/topics/macos.md>), [Windows](<https://devfeed.tech/topics/windows.md>), [boot](<https://devfeed.tech/topics/boot.md>)

Tags: [guide](<https://devfeed.tech/tags/guide.md>), [hardware](<https://devfeed.tech/tags/hardware.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux](<https://devfeed.tech/tags/linux.md>), [macos](<https://devfeed.tech/tags/macos.md>), [network](<https://devfeed.tech/tags/network.md>), [networking](<https://devfeed.tech/tags/networking.md>), [pikvm](<https://devfeed.tech/tags/pikvm.md>), [utilities](<https://devfeed.tech/tags/utilities.md>), [windows](<https://devfeed.tech/tags/windows.md>)

### AI overview

A practical guide to configuring Wake on LAN across Windows, macOS, and Linux. It explains how WoL uses a magic packet to wake a machine and discusses the BIOS settings that may need to be enabled or disabled for different hardware and power states.

### Source excerpt

What is Wake on LAN and why is it so hard? After releasing my video on the PiKVM I realized that there was so much confusion about Wake on LAN, and rightfully so, that I decided to put together this guide on how to configure Wake on LAN on any machine. Wake on LAN (WoL) is a networking standard that allows a computer to be turned on by sending a network packet. The client sends a special packe...

## Capture the Flag events and eSports

DevFeed: [Capture the Flag events and eSports](<https://devfeed.tech/articles/capture-the-flag-events-and-esports-36719.md>)

Original publisher: [Read original article](<https://shostack.org/blog/capture-the-flag-events-and-esports/>)

Author: Jonathan Marcil

Published: 2019-09-11T00:00:00Z

Content type: opinion

Language: en

Sources: [Shostack & Friends Blog](<https://devfeed.tech/sources/shostack-friends-blog.md>)

Topics: [Sports](<https://devfeed.tech/topics/sports.md>)

Tags: [competition](<https://devfeed.tech/tags/competition.md>), [events](<https://devfeed.tech/tags/events.md>), [games](<https://devfeed.tech/tags/games.md>), [lan](<https://devfeed.tech/tags/lan.md>), [sports](<https://devfeed.tech/tags/sports.md>), [strategy](<https://devfeed.tech/tags/strategy.md>), [team](<https://devfeed.tech/tags/team.md>)

### AI overview

The article compares Capture the Flag events with eSports and argues that CTFs are intrinsically an eSport with strong educational value. It describes eSports audiences, broadcasts, competition, professional gaming, and amateur LAN and online events.

### Source excerpt

A breakdown of CTFs and eSports

## Networking for a Bare-Metal Kubernetes Cluster After AWS

DevFeed: [Networking for a Bare-Metal Kubernetes Cluster After AWS](<https://devfeed.tech/articles/part-2-on-aws-rolling-your-own-servers-with-k8s-29745.md>)

Original publisher: [Read original article](<https://goteleport.com/blog/kubernetes-networking-on-bare-metal/>)

Author: ev@goteleport.com (Ev Kontsevoy)

Published: 2019-05-14T15:39:34Z

Content type: tutorial

Language: en

Sources: [Teleport](<https://devfeed.tech/sources/teleport.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [networking](<https://devfeed.tech/topics/networking.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>), [cloud-infrastructure](<https://devfeed.tech/topics/cloud-infrastructure.md>), [Containers](<https://devfeed.tech/topics/containers.md>), [Software-defined networking](<https://devfeed.tech/topics/sdn.md>)

Tags: [aws](<https://devfeed.tech/tags/aws.md>), [bare-metal](<https://devfeed.tech/tags/bare-metal.md>), [hardware](<https://devfeed.tech/tags/hardware.md>), [ip](<https://devfeed.tech/tags/ip.md>), [k8s](<https://devfeed.tech/tags/k8s.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [lan](<https://devfeed.tech/tags/lan.md>), [networking](<https://devfeed.tech/tags/networking.md>), [router](<https://devfeed.tech/tags/router.md>), [sdn](<https://devfeed.tech/tags/sdn.md>)

### AI overview

This article explains how to design a simple, non-redundant network for a small bare-metal Kubernetes environment in a colocation facility after leaving AWS. It discusses network complexity, legacy limitations, SDN concepts, public subnet routing, and separate private LANs for management, security, and performance.

### Source excerpt

This is part three of a three-part series on considerations that companies will want to address if they decide to build their own cloud environment.

## Statystyki odwiedzin dla wielu serwisów z AWStats

DevFeed: [Statystyki odwiedzin dla wielu serwisów z AWStats](<https://devfeed.tech/articles/statystyki-odwiedzin-dla-wielu-serwisow-z-awstats-27491.md>)

Original publisher: [Read original article](<https://gagor.pro/2011/08/statystyki-odwiedzin-dla-wielu-serwisow-z-awstats/>)

Author: Tom

Published: 2011-08-29T00:00:00Z

Content type: tutorial

Language: pl

Sources: [Tomasz Gągor](<https://devfeed.tech/sources/tomasz-gagor.md>)

Topics: [HTTP](<https://devfeed.tech/topics/http.md>), [servers](<https://devfeed.tech/topics/servers.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [Mod\_rewrite](<https://devfeed.tech/topics/mod-rewrite.md>)

Tags: [analytics](<https://devfeed.tech/tags/analytics.md>), [apache](<https://devfeed.tech/tags/apache.md>), [debian](<https://devfeed.tech/tags/debian.md>), [http](<https://devfeed.tech/tags/http.md>), [lan](<https://devfeed.tech/tags/lan.md>), [linux](<https://devfeed.tech/tags/linux.md>), [mod-rewrite](<https://devfeed.tech/tags/mod-rewrite.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [rewrite](<https://devfeed.tech/tags/rewrite.md>), [sites](<https://devfeed.tech/tags/sites.md>)

### AI overview

A Polish tutorial explains how to install and configure AWStats to analyze HTTP server logs for multiple websites. It discusses Apache CGI setup and restricting access to local networks or other authorized users.

### Source excerpt

Co prawda na swojej stronie zrobiłem kilka podstawowych statystyk i coś tam sobie loguję do bazy danych, ale gdyby się chwilę zastanowić to przecież to samo robi serwer www - wrzuca do logów każde zapytanie HTTP, kod błędu, nazwę agenta, itd. Dublowanie tych danych nie jest najbardziej optymalne. Stąd też chwilę pogooglałem i znalazłem świetny Open Source'owy projekt: AWStats, który jest webowym analizatorem logów dla serwerów HTTP, FTP i SMTP.