<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sistro Networks</title>
    <description>The latest articles on DEV Community by Sistro Networks (@sistro_networks).</description>
    <link>https://dev.to/sistro_networks</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3815884%2Fe2121a01-f686-43ab-ae64-81e7569c55d7.png</url>
      <title>DEV Community: Sistro Networks</title>
      <link>https://dev.to/sistro_networks</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sistro_networks"/>
    <language>en</language>
    <item>
      <title>Your Storage Network Is Part of Your Storage System</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Sun, 13 Sep 2026 05:11:28 +0000</pubDate>
      <link>https://dev.to/sistro_networks/your-storage-network-is-part-of-your-storage-system-1c5b</link>
      <guid>https://dev.to/sistro_networks/your-storage-network-is-part-of-your-storage-system-1c5b</guid>
      <description>&lt;p&gt;In a traditional SAN architecture, storage networking is obviously critical.&lt;/p&gt;

&lt;p&gt;In a hyperconverged Ceph cluster, engineers sometimes forget the same rule.&lt;/p&gt;

&lt;p&gt;Imagine three Proxmox nodes.&lt;/p&gt;

&lt;p&gt;Each has multiple fast NVMe drives.&lt;/p&gt;

&lt;p&gt;The disks can generate several gigabytes per second.&lt;/p&gt;

&lt;p&gt;Now connect the nodes using a slow or oversubscribed network.&lt;/p&gt;

&lt;p&gt;The storage system is no longer limited by NVMe.&lt;/p&gt;

&lt;p&gt;It is limited by Ethernet.&lt;/p&gt;

&lt;p&gt;Ceph traffic includes more than guest I/O:&lt;/p&gt;

&lt;p&gt;replication&lt;br&gt;
recovery&lt;br&gt;
backfill&lt;br&gt;
rebalancing&lt;br&gt;
client I/O&lt;/p&gt;

&lt;p&gt;A node failure makes this even more interesting.&lt;/p&gt;

&lt;p&gt;At exactly the moment VMs may need to restart elsewhere, Ceph may also be moving large amounts of data.&lt;/p&gt;

&lt;p&gt;This is why storage traffic and latency-sensitive cluster communication such as Corosync should be carefully separated.&lt;/p&gt;

&lt;p&gt;The broader engineering rule is simple:&lt;/p&gt;

&lt;p&gt;Distributed storage performance is bounded by the network connecting the storage nodes.&lt;/p&gt;

&lt;p&gt;And redundancy is not backup.&lt;/p&gt;

&lt;p&gt;I used Proxmox + Ceph as a practical architecture example here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/proxmox-ceph-cuando-conviene-hci" rel="noopener noreferrer"&gt;https://sistro.net/proxmox-ceph-cuando-conviene-hci&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tags: proxmox ceph virtualization infrastructure&lt;/p&gt;

</description>
      <category>proxmox</category>
      <category>ceph</category>
      <category>infrastructure</category>
      <category>vistualization</category>
    </item>
    <item>
      <title>TLS Inspection Turns Your Firewall Into a PKI Problem</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Fri, 11 Sep 2026 23:29:33 +0000</pubDate>
      <link>https://dev.to/sistro_networks/tls-inspection-turns-your-firewall-into-a-pki-problem-5a17</link>
      <guid>https://dev.to/sistro_networks/tls-inspection-turns-your-firewall-into-a-pki-problem-5a17</guid>
      <description>&lt;p&gt;You enable TLS inspection.&lt;/p&gt;

&lt;p&gt;Immediately a few applications stop working.&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;p&gt;Because the firewall isn't simply reading encrypted packets.&lt;/p&gt;

&lt;p&gt;It becomes part of the TLS trust path.&lt;/p&gt;

&lt;p&gt;A simplified flow:&lt;/p&gt;

&lt;p&gt;Client&lt;br&gt;
→ Security Gateway&lt;br&gt;
→ Decrypt&lt;br&gt;
→ Security Inspection&lt;br&gt;
→ Re-encrypt&lt;br&gt;
→ Server&lt;/p&gt;

&lt;p&gt;The client now needs to trust the certificate authority used by the gateway.&lt;/p&gt;

&lt;p&gt;That creates several engineering problems:&lt;/p&gt;

&lt;p&gt;CA distribution&lt;br&gt;
endpoint management&lt;br&gt;
certificate pinning&lt;br&gt;
application compatibility&lt;br&gt;
bypass policy&lt;br&gt;
performance&lt;br&gt;
privacy&lt;/p&gt;

&lt;p&gt;Managed corporate laptops are relatively straightforward.&lt;/p&gt;

&lt;p&gt;Unmanaged BYOD isn't.&lt;/p&gt;

&lt;p&gt;A useful deployment strategy is:&lt;/p&gt;

&lt;p&gt;Deploy the inspection CA&lt;br&gt;
Select a small pilot group&lt;br&gt;
Enable inspection&lt;br&gt;
Identify application failures&lt;br&gt;
Create narrow exclusions&lt;br&gt;
Measure gateway load&lt;br&gt;
Expand gradually&lt;/p&gt;

&lt;p&gt;SonicWall DPI-SSL is a useful real-world example because it supports inspection policies and granular exclusions.&lt;/p&gt;

&lt;p&gt;The lesson applies beyond SonicWall:&lt;/p&gt;

&lt;p&gt;TLS inspection is part firewall, part PKI, part endpoint management.&lt;/p&gt;

&lt;p&gt;Practical example:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/sonicwall-dpi-ssl-inspeccion-https" rel="noopener noreferrer"&gt;https://sistro.net/sonicwall-dpi-ssl-inspeccion-https&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tags: cybersecurity tls networking security&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>tls</category>
      <category>networking</category>
    </item>
    <item>
      <title>A 39 Gbps Firewall May Not Be a 39 Gbps Security Appliance</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Mon, 07 Sep 2026 16:10:45 +0000</pubDate>
      <link>https://dev.to/sistro_networks/a-39-gbps-firewall-may-not-be-a-39-gbps-security-appliance-4c54</link>
      <guid>https://dev.to/sistro_networks/a-39-gbps-firewall-may-not-be-a-39-gbps-security-appliance-4c54</guid>
      <description>&lt;p&gt;Firewall throughput numbers can be misleading when used without context.&lt;/p&gt;

&lt;p&gt;A next-generation firewall may perform multiple operations on every flow:&lt;/p&gt;

&lt;p&gt;Firewall&lt;br&gt;
→ IPS&lt;br&gt;
→ Application Control&lt;br&gt;
→ Malware Inspection&lt;br&gt;
→ Logging&lt;br&gt;
→ TLS Inspection&lt;/p&gt;

&lt;p&gt;Each layer adds work.&lt;/p&gt;

&lt;p&gt;Fortinet's current product matrix gives a useful example.&lt;/p&gt;

&lt;p&gt;The FortiGate 120G is rated at up to 39 Gbps raw firewall throughput.&lt;/p&gt;

&lt;p&gt;Its published NGFW throughput is 3.1 Gbps.&lt;/p&gt;

&lt;p&gt;Threat Protection is 2.8 Gbps.&lt;/p&gt;

&lt;p&gt;SSL Inspection is 3 Gbps.&lt;/p&gt;

&lt;p&gt;Nothing is wrong with the appliance.&lt;/p&gt;

&lt;p&gt;The tests simply represent different workloads.&lt;/p&gt;

&lt;p&gt;This leads to a useful rule:&lt;/p&gt;

&lt;p&gt;Never size security infrastructure using the largest number on the datasheet.&lt;/p&gt;

&lt;p&gt;Instead ask:&lt;/p&gt;

&lt;p&gt;Which security profiles will be enabled?&lt;br&gt;
How much encrypted traffic exists?&lt;br&gt;
How much VPN traffic?&lt;br&gt;
What WAN speed?&lt;br&gt;
How many concurrent sessions?&lt;br&gt;
How much growth?&lt;/p&gt;

&lt;p&gt;The same principle applies regardless of vendor.&lt;/p&gt;

&lt;p&gt;I used FortiGate 70G, 90G and 120G as a practical comparison:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/fortigate-70g-vs-90g-vs-120g" rel="noopener noreferrer"&gt;https://sistro.net/fortigate-70g-vs-90g-vs-120g&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tags: networking cybersecurity security infrastructure&lt;/p&gt;

</description>
      <category>networking</category>
      <category>cybersecurity</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>Two Firewalls Can Have the Same Throughput and Still Be Very Different</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Sat, 05 Sep 2026 01:40:16 +0000</pubDate>
      <link>https://dev.to/sistro_networks/two-firewalls-can-have-the-same-throughput-and-still-be-very-different-2jba</link>
      <guid>https://dev.to/sistro_networks/two-firewalls-can-have-the-same-throughput-and-still-be-very-different-2jba</guid>
      <description>&lt;p&gt;Firewall sizing often starts with one metric:&lt;/p&gt;

&lt;p&gt;Throughput&lt;/p&gt;

&lt;p&gt;But consider two appliances with the same 1 Gbps firewall rating.&lt;/p&gt;

&lt;p&gt;Appliance A:&lt;/p&gt;

&lt;p&gt;50,000 concurrent sessions&lt;br&gt;
75 site-to-site VPN tunnels&lt;br&gt;
200 recommended devices&lt;/p&gt;

&lt;p&gt;Appliance B:&lt;/p&gt;

&lt;p&gt;125,000 concurrent sessions&lt;br&gt;
200 site-to-site VPN tunnels&lt;br&gt;
250 recommended devices&lt;/p&gt;

&lt;p&gt;Same firewall throughput.&lt;/p&gt;

&lt;p&gt;Different scale.&lt;/p&gt;

&lt;p&gt;This is exactly what makes the Cisco Meraki MX75 vs MX85 comparison interesting.&lt;/p&gt;

&lt;p&gt;It demonstrates that firewall sizing should consider:&lt;/p&gt;

&lt;p&gt;flows&lt;br&gt;
VPN tunnels&lt;br&gt;
device population&lt;br&gt;
security services&lt;br&gt;
interface requirements&lt;br&gt;
growth&lt;br&gt;
topology&lt;/p&gt;

&lt;p&gt;There is another complication.&lt;/p&gt;

&lt;p&gt;Advanced security features change effective throughput.&lt;/p&gt;

&lt;p&gt;Cisco currently rates both MX75 and MX85 at lower NGFW throughput when prevention features are enabled than their raw firewall figure.&lt;/p&gt;

&lt;p&gt;So the useful engineering question is not:&lt;/p&gt;

&lt;p&gt;“How fast is the firewall?”&lt;/p&gt;

&lt;p&gt;It is:&lt;/p&gt;

&lt;p&gt;“How does it perform with my actual traffic and feature set?”&lt;/p&gt;

&lt;p&gt;Practical comparison:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/cisco-meraki-mx75-vs-mx85" rel="noopener noreferrer"&gt;https://sistro.net/cisco-meraki-mx75-vs-mx85&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tags: networking cybersecurity sdwan infrastructure&lt;/p&gt;

</description>
      <category>networking</category>
      <category>cybersecurity</category>
      <category>sdwan</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>Unknown Malware Is a Behavioral Analysis Problem</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Thu, 03 Sep 2026 00:14:05 +0000</pubDate>
      <link>https://dev.to/sistro_networks/unknown-malware-is-a-behavioral-analysis-problem-5720</link>
      <guid>https://dev.to/sistro_networks/unknown-malware-is-a-behavioral-analysis-problem-5720</guid>
      <description>&lt;p&gt;Signature-based detection is extremely useful.&lt;/p&gt;

&lt;p&gt;But it has a fundamental limitation:&lt;/p&gt;

&lt;p&gt;The indicator needs to be known.&lt;/p&gt;

&lt;p&gt;Consider a new malicious document.&lt;/p&gt;

&lt;p&gt;Its hash is unknown.&lt;/p&gt;

&lt;p&gt;No existing signature matches it.&lt;/p&gt;

&lt;p&gt;Static inspection looks mostly normal.&lt;/p&gt;

&lt;p&gt;Then it runs.&lt;/p&gt;

&lt;p&gt;It creates a process.&lt;/p&gt;

&lt;p&gt;The process injects code into memory.&lt;/p&gt;

&lt;p&gt;It contacts an external host.&lt;/p&gt;

&lt;p&gt;It downloads another payload.&lt;/p&gt;

&lt;p&gt;Now we have something more useful than a hash:&lt;/p&gt;

&lt;p&gt;behavior.&lt;/p&gt;

&lt;p&gt;This is why sandboxing remains an important security architecture pattern.&lt;/p&gt;

&lt;p&gt;A simplified flow looks like:&lt;/p&gt;

&lt;p&gt;Unknown File&lt;br&gt;
→ Isolated Analysis&lt;br&gt;
→ Static + Dynamic Analysis&lt;br&gt;
→ Memory Inspection&lt;br&gt;
→ Verdict&lt;/p&gt;

&lt;p&gt;SonicWall Capture ATP combines sandboxing with RTDMI, its Real-Time Deep Memory Inspection technology.&lt;/p&gt;

&lt;p&gt;It can also use a pattern called Block Until Verdict where selected unknown files are held before delivery.&lt;/p&gt;

&lt;p&gt;The broader principle is vendor-neutral:&lt;/p&gt;

&lt;p&gt;Known threats can often be identified by indicators. Unknown threats frequently require behavior.&lt;/p&gt;

&lt;p&gt;And neither approach replaces endpoint security, backups or segmentation.&lt;/p&gt;

&lt;p&gt;Practical SonicWall example:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/sonicwall-capture-atp-rtdmi-ransomware-zero-day" rel="noopener noreferrer"&gt;https://sistro.net/sonicwall-capture-atp-rtdmi-ransomware-zero-day&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>security</category>
      <category>networking</category>
    </item>
    <item>
      <title>TLS Inspection Is a Certificate Management Problem Too</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Tue, 01 Sep 2026 13:17:23 +0000</pubDate>
      <link>https://dev.to/sistro_networks/tls-inspection-is-a-certificate-management-problem-too-24h0</link>
      <guid>https://dev.to/sistro_networks/tls-inspection-is-a-certificate-management-problem-too-24h0</guid>
      <description>&lt;p&gt;Enabling TLS interception on a firewall looks simple.&lt;/p&gt;

&lt;p&gt;The architecture is not.&lt;/p&gt;

&lt;p&gt;In a deep inspection flow, the security appliance effectively sits between the client and destination:&lt;/p&gt;

&lt;p&gt;Client&lt;br&gt;
→ Firewall&lt;br&gt;
→ TLS inspection&lt;br&gt;
→ Destination&lt;/p&gt;

&lt;p&gt;To avoid certificate errors, the client must trust the CA used by the firewall.&lt;/p&gt;

&lt;p&gt;This immediately creates operational questions:&lt;/p&gt;

&lt;p&gt;How will the CA be distributed?&lt;br&gt;
Are the endpoints domain joined?&lt;br&gt;
Is an MDM available?&lt;br&gt;
What about BYOD?&lt;br&gt;
What about mobile apps?&lt;br&gt;
Which applications use certificate pinning?&lt;br&gt;
How are exceptions documented?&lt;/p&gt;

&lt;p&gt;There is also a performance problem.&lt;/p&gt;

&lt;p&gt;Decrypting, inspecting and re-encrypting traffic requires CPU resources.&lt;/p&gt;

&lt;p&gt;This means firewall sizing based only on raw L3/L4 throughput can be misleading.&lt;/p&gt;

&lt;p&gt;The general rule:&lt;/p&gt;

&lt;p&gt;TLS inspection is not just a security feature. It is an endpoint, PKI and capacity-planning project.&lt;/p&gt;

&lt;p&gt;Practical FortiGate example:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/fortigate-ssl-deep-inspection-cuando-conviene" rel="noopener noreferrer"&gt;https://sistro.net/fortigate-ssl-deep-inspection-cuando-conviene&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>tls</category>
      <category>networking</category>
      <category>security</category>
    </item>
    <item>
      <title>A 3-Node Cluster Is Not Automatically Highly Available</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Fri, 28 Aug 2026 14:06:13 +0000</pubDate>
      <link>https://dev.to/sistro_networks/a-3-node-cluster-is-not-automatically-highly-available-2jm2</link>
      <guid>https://dev.to/sistro_networks/a-3-node-cluster-is-not-automatically-highly-available-2jm2</guid>
      <description>&lt;p&gt;Three-node virtualization clusters are common because they provide a useful quorum model.&lt;/p&gt;

&lt;p&gt;But quorum solves only one part of availability.&lt;/p&gt;

&lt;p&gt;Consider:&lt;/p&gt;

&lt;p&gt;Node 1: 90% RAM&lt;br&gt;
Node 2: 90% RAM&lt;br&gt;
Node 3: 90% RAM&lt;/p&gt;

&lt;p&gt;The cluster has quorum.&lt;/p&gt;

&lt;p&gt;Then Node 1 fails.&lt;/p&gt;

&lt;p&gt;Now the important question is not whether the cluster is quorate.&lt;/p&gt;

&lt;p&gt;It is:&lt;/p&gt;

&lt;p&gt;Where do Node 1's workloads run?&lt;/p&gt;

&lt;p&gt;A useful HA design must account for:&lt;/p&gt;

&lt;p&gt;Compute capacity&lt;/p&gt;

&lt;p&gt;Can the surviving nodes absorb the protected workloads?&lt;/p&gt;

&lt;p&gt;Network&lt;/p&gt;

&lt;p&gt;Is cluster communication isolated from congestion?&lt;/p&gt;

&lt;p&gt;Storage&lt;/p&gt;

&lt;p&gt;Can another host access the VM disks?&lt;/p&gt;

&lt;p&gt;Switching&lt;/p&gt;

&lt;p&gt;Is there a single upstream switch?&lt;/p&gt;

&lt;p&gt;Backup&lt;/p&gt;

&lt;p&gt;Can deleted or corrupted data be recovered?&lt;/p&gt;

&lt;p&gt;This is why N+1 capacity planning matters.&lt;/p&gt;

&lt;p&gt;High availability is not a feature checkbox.&lt;/p&gt;

&lt;p&gt;It is a resource and dependency model.&lt;/p&gt;

&lt;p&gt;I used a three-node Proxmox architecture as a practical example here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/proxmox-cluster-3-nodos-ha-hardware" rel="noopener noreferrer"&gt;https://sistro.net/proxmox-cluster-3-nodos-ha-hardware&lt;/a&gt;&lt;/p&gt;

</description>
      <category>proxmox</category>
      <category>vitualization</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>Proxmox Backup Server: Enterprise Backups for Virtualization, Business Continuity, and Ransomware Recovery</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Tue, 25 Aug 2026 19:27:55 +0000</pubDate>
      <link>https://dev.to/sistro_networks/proxmox-backup-server-enterprise-backups-for-virtualization-business-continuity-and-ransomware-4lln</link>
      <guid>https://dev.to/sistro_networks/proxmox-backup-server-enterprise-backups-for-virtualization-business-continuity-and-ransomware-4lln</guid>
      <description>&lt;p&gt;Business continuity is not only about keeping infrastructure running.&lt;/p&gt;

&lt;p&gt;It is also about being able to recover when something fails.&lt;/p&gt;

&lt;p&gt;Many organizations invest in virtualization, servers, storage, networking, and cybersecurity, but still operate with weak backup strategies.&lt;/p&gt;

&lt;p&gt;Common problems include:&lt;/p&gt;

&lt;p&gt;Backups that are never tested.&lt;br&gt;
No clearly defined RPO or RTO.&lt;br&gt;
Backup repositories inside the same compromised environment.&lt;br&gt;
No encryption.&lt;br&gt;
No retention policy.&lt;br&gt;
No off-site copy.&lt;br&gt;
No monitoring.&lt;br&gt;
No documented restore process.&lt;/p&gt;

&lt;p&gt;Proxmox Backup Server can become a key component in a Proxmox VE infrastructure strategy.&lt;/p&gt;

&lt;p&gt;It provides tight integration with Proxmox VE, incremental backups, deduplication, encryption, integrity verification, and more efficient backup operations.&lt;/p&gt;

&lt;p&gt;But the real value is not only installing a backup platform.&lt;/p&gt;

&lt;p&gt;The real value is designing a complete recovery strategy that includes:&lt;/p&gt;

&lt;p&gt;Virtualization.&lt;br&gt;
Backup architecture.&lt;br&gt;
Storage.&lt;br&gt;
High availability.&lt;br&gt;
Cybersecurity.&lt;br&gt;
Monitoring.&lt;br&gt;
Managed operations.&lt;br&gt;
Restore testing.&lt;/p&gt;

&lt;p&gt;A backup does not matter only because it exists.&lt;/p&gt;

&lt;p&gt;It matters when it can be restored during a critical incident.&lt;/p&gt;

&lt;p&gt;Read the full article:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://salixing.com/proxmox-backup-server-respaldos-empresariales/" rel="noopener noreferrer"&gt;https://salixing.com/proxmox-backup-server-respaldos-empresariales/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Related services:&lt;/p&gt;

&lt;p&gt;Enterprise Virtualization with Proxmox:&lt;br&gt;
&lt;a href="https://salixing.com/virtualizacion-con-proxmox/" rel="noopener noreferrer"&gt;https://salixing.com/virtualizacion-con-proxmox/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;VMware to Proxmox Migration:&lt;br&gt;
&lt;a href="https://salixing.com/migracion-vmware-a-proxmox/" rel="noopener noreferrer"&gt;https://salixing.com/migracion-vmware-a-proxmox/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Managed Infrastructure Services:&lt;br&gt;
&lt;a href="https://salixing.com/servicios-administrados/" rel="noopener noreferrer"&gt;https://salixing.com/servicios-administrados/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;NAS Storage with TrueNAS:&lt;br&gt;
&lt;a href="https://salixing.com/almacenamiento-nas-con-truenas/" rel="noopener noreferrer"&gt;https://salixing.com/almacenamiento-nas-con-truenas/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>proxmox</category>
      <category>backups</category>
      <category>virtualization</category>
      <category>datacenter</category>
    </item>
    <item>
      <title>High Availability Is Not Just Two Firewalls</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Mon, 24 Aug 2026 20:37:21 +0000</pubDate>
      <link>https://dev.to/sistro_networks/high-availability-is-not-just-two-firewalls-18ka</link>
      <guid>https://dev.to/sistro_networks/high-availability-is-not-just-two-firewalls-18ka</guid>
      <description>&lt;p&gt;A common infrastructure mistake is assuming that deploying two firewalls automatically creates high availability.&lt;/p&gt;

&lt;p&gt;It doesn't.&lt;/p&gt;

&lt;p&gt;Consider:&lt;/p&gt;

&lt;p&gt;ISP&lt;br&gt;
↓&lt;br&gt;
Firewall A / Firewall B&lt;br&gt;
↓&lt;br&gt;
Single Core Switch&lt;br&gt;
↓&lt;br&gt;
Servers&lt;/p&gt;

&lt;p&gt;The firewall layer is redundant.&lt;/p&gt;

&lt;p&gt;The network is not.&lt;/p&gt;

&lt;p&gt;The core switch is now the single point of failure.&lt;/p&gt;

&lt;p&gt;A proper HA assessment should identify failure domains across:&lt;/p&gt;

&lt;p&gt;WAN connectivity&lt;br&gt;
firewalls&lt;br&gt;
heartbeat links&lt;br&gt;
switching&lt;br&gt;
power&lt;br&gt;
routing&lt;br&gt;
applications&lt;br&gt;
monitoring&lt;/p&gt;

&lt;p&gt;FortiGate FGCP is a good practical example.&lt;/p&gt;

&lt;p&gt;It supports HA clustering and synchronization between members, while session pickup can help preserve TCP sessions after failover.&lt;/p&gt;

&lt;p&gt;But the broader engineering principle is vendor-neutral:&lt;/p&gt;

&lt;p&gt;Availability is an end-to-end property.&lt;/p&gt;

&lt;p&gt;Do not ask only whether a component is redundant.&lt;/p&gt;

&lt;p&gt;Ask:&lt;/p&gt;

&lt;p&gt;What happens to the service when this component fails?&lt;/p&gt;

&lt;p&gt;Spanish FortiGate HA architecture example:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/fortigate-high-availability-ha-cuando-conviene" rel="noopener noreferrer"&gt;https://sistro.net/fortigate-high-availability-ha-cuando-conviene&lt;/a&gt;&lt;/p&gt;

</description>
      <category>networking</category>
      <category>cybersecurity</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>Firewall TCO: Why Hardware Price Is the Wrong Comparison</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Sat, 22 Aug 2026 15:25:06 +0000</pubDate>
      <link>https://dev.to/sistro_networks/firewall-tco-why-hardware-price-is-the-wrong-comparison-4ji2</link>
      <guid>https://dev.to/sistro_networks/firewall-tco-why-hardware-price-is-the-wrong-comparison-4ji2</guid>
      <description>&lt;p&gt;Two firewall quotes can look very different on day one.&lt;/p&gt;

&lt;p&gt;But the real comparison begins after deployment.&lt;/p&gt;

&lt;p&gt;A useful five-year model should include:&lt;/p&gt;

&lt;p&gt;hardware&lt;br&gt;
security subscriptions&lt;br&gt;
renewals&lt;br&gt;
support&lt;br&gt;
engineering time&lt;br&gt;
monitoring&lt;br&gt;
upgrades&lt;br&gt;
replacement caused by growth&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;TCO = Hardware + Licensing + Support + Operations + Growth&lt;/p&gt;

&lt;p&gt;This also exposes an important distinction:&lt;/p&gt;

&lt;p&gt;Licensing and support are not the same thing.&lt;/p&gt;

&lt;p&gt;A platform may not require a recurring license for its core firewall functionality and still require proper maintenance, monitoring and technical support.&lt;/p&gt;

&lt;p&gt;Conversely, a subscription-based firewall may deliver cloud security services that fully justify the recurring cost.&lt;/p&gt;

&lt;p&gt;There is no universally better model.&lt;/p&gt;

&lt;p&gt;The objective is to compare equivalent capabilities over the same three or five-year horizon.&lt;/p&gt;

&lt;p&gt;Business-side Spanish analysis:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/firewall-sin-licencia-vs-suscripcion-costo-total" rel="noopener noreferrer"&gt;https://sistro.net/firewall-sin-licencia-vs-suscripcion-costo-total&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tags: cybersecurity, networking, infrastructure, security&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>networking</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>Firewall Sizing: Why User Count Is a Bad Metric</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Thu, 20 Aug 2026 23:22:25 +0000</pubDate>
      <link>https://dev.to/sistro_networks/firewall-sizing-why-user-count-is-a-bad-metric-4ohi</link>
      <guid>https://dev.to/sistro_networks/firewall-sizing-why-user-count-is-a-bad-metric-4ohi</guid>
      <description>&lt;p&gt;“How many users does this firewall support?”&lt;/p&gt;

&lt;p&gt;It sounds like a reasonable sizing question.&lt;/p&gt;

&lt;p&gt;Unfortunately, it tells us very little about the actual workload.&lt;/p&gt;

&lt;p&gt;Consider two companies with 100 users.&lt;/p&gt;

&lt;p&gt;Company A:&lt;/p&gt;

&lt;p&gt;SaaS applications&lt;br&gt;
light browsing&lt;br&gt;
one office&lt;br&gt;
limited VPN&lt;/p&gt;

&lt;p&gt;Company B:&lt;/p&gt;

&lt;p&gt;multiple branches&lt;br&gt;
site-to-site VPNs&lt;br&gt;
SSL inspection&lt;br&gt;
public servers&lt;br&gt;
VoIP&lt;br&gt;
cameras&lt;br&gt;
hundreds of connected devices&lt;/p&gt;

&lt;p&gt;Same number of employees.&lt;/p&gt;

&lt;p&gt;Completely different firewall workload.&lt;/p&gt;

&lt;p&gt;Better sizing inputs include:&lt;/p&gt;

&lt;p&gt;inspected throughput&lt;br&gt;
concurrent sessions&lt;br&gt;
new connections per second&lt;br&gt;
VPN traffic&lt;br&gt;
security services enabled&lt;br&gt;
WAN bandwidth&lt;br&gt;
branch topology&lt;br&gt;
growth&lt;br&gt;
availability requirements&lt;/p&gt;

&lt;p&gt;This is also why moving between firewall product families should be based on architecture, not a simple user-count table.&lt;/p&gt;

&lt;p&gt;I used SonicWall TZ vs NSa as a practical example here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/sonicwall-tz-vs-nsa-que-firewall-elegir" rel="noopener noreferrer"&gt;https://sistro.net/sonicwall-tz-vs-nsa-que-firewall-elegir&lt;/a&gt;&lt;/p&gt;

</description>
      <category>networking</category>
      <category>cybersecurity</category>
      <category>security</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>Network Security Is More Than the Firewall</title>
      <dc:creator>Sistro Networks</dc:creator>
      <pubDate>Mon, 17 Aug 2026 16:47:46 +0000</pubDate>
      <link>https://dev.to/sistro_networks/network-security-is-more-than-the-firewall-5h1</link>
      <guid>https://dev.to/sistro_networks/network-security-is-more-than-the-firewall-5h1</guid>
      <description>&lt;p&gt;A firewall can control north-south traffic extremely well while the internal network remains poorly segmented.&lt;/p&gt;

&lt;p&gt;Consider a typical office containing:&lt;/p&gt;

&lt;p&gt;corporate endpoints&lt;br&gt;
guest devices&lt;br&gt;
IP cameras&lt;br&gt;
VoIP phones&lt;br&gt;
wireless clients&lt;br&gt;
IoT devices&lt;br&gt;
servers&lt;/p&gt;

&lt;p&gt;If all of these devices share broad Layer 2 access, the firewall alone cannot solve every lateral-movement problem.&lt;/p&gt;

&lt;p&gt;A better architecture considers multiple layers.&lt;/p&gt;

&lt;p&gt;Perimeter&lt;br&gt;
NGFW, VPN, WAN and application policies.&lt;/p&gt;

&lt;p&gt;Access Layer&lt;br&gt;
VLANs, port policies, switching and device segmentation.&lt;/p&gt;

&lt;p&gt;Wireless&lt;br&gt;
Corporate SSIDs, guest networks, authentication and isolation.&lt;/p&gt;

&lt;p&gt;Visibility&lt;br&gt;
Understanding which device is connected, where it is connected and what it can access.&lt;/p&gt;

&lt;p&gt;Fortinet Security Fabric is one example of an architecture that connects these layers through FortiGate, FortiSwitch, FortiAP and other components.&lt;/p&gt;

&lt;p&gt;The important principle applies regardless of vendor:&lt;/p&gt;

&lt;p&gt;Security architecture should extend from the WAN edge to the access layer.&lt;/p&gt;

&lt;p&gt;Spanish business-side guide:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sistro.net/fortinet-security-fabric-fortigate-fortiswitch-fortiap" rel="noopener noreferrer"&gt;https://sistro.net/fortinet-security-fabric-fortigate-fortiswitch-fortiap&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tags: networking, cybersecurity, security, fortinet&lt;/p&gt;

</description>
      <category>networksecurity</category>
      <category>networking</category>
      <category>cybersecurity</category>
      <category>infrastructure</category>
    </item>
  </channel>
</rss>
