Category: Networking

  • βœ…Minimum Requirements of a Network

    πŸ‘‰ In short:A minimum network = 2 devices + NICs + connection medium + protocol (TCP/IP).For bigger networks, you add switches, routers, servers, firewalls, etc.

    Read article β†’

  • βœ…What is a Computer Network?

    A computer network is a collection of two or more computers (or devices like printers, servers, switches, routers) that are connected together to share resources (files, applications, printers), communicate, or access the internet. Example: Your home Wi-Fi is a small computer network. βœ… Types of Networks Networks are classified mainly by size/area covered: πŸ‘‰ Other

    Read article β†’

  • High Availability (HA) configuration for Cisco Meraki MX67

    βš™οΈ About HA in Meraki MX67 πŸ›  How to configure HA in Meraki MX67 βœ… 1. Physical setup Tip: Make sure the heartbeat cable is direct or via switch but must be in the same VLAN/subnet. βœ… 2. Configure in Meraki Dashboard ⚠ Both MXs must be in the same network in the Meraki Dashboard.

    Read article β†’

  • How to set a bandwidth restriction per individual user on Sophos Firewall (SFOS v19.5 or v20.x)

    βœ… Goal: Limit each user to: (You can change numbers as needed.) πŸ›  Step-by-step Step 1: Create Traffic Shaping Policy βœ… Save Step 2: Apply to individual users Repeat for each user you want to limit. Step 3: Confirm the firewall rule matches Bandwidth limit only applies to traffic that matches a firewall rule. Step

    Read article β†’

  • SNMP v2c on Aruba (HPE) switch

    Here’s how to configure SNMP v2c on an Aruba (HPE) switch, specifically for the ArubaOS-Switch series (formerly HP ProCurve). πŸ”§ SNMP v2c Configuration Steps – ArubaOS-Switch (CLI) 1. Enable SNMP Service (if not already enabled) switch(config)# snmp-server 2. Set the SNMP Read-Only Community String switch(config)# snmp-server community public operator-unrestricted 3. Set the SNMP Read-Write Community

    Read article β†’

  • Dual internet configuration using BGP in cisco router

    To configure dual internet connections using BGP on a Cisco router for redundancy and failover, follow these key steps and considerations: Basic BGP Configuration Establish BGP Sessions with Both ISPsConfigure BGP neighbors using the ISPs’ AS numbers and your assigned ASN. For example:router bgp 65001neighbor 203.0.113.1 remote-as ISP1_ASNneighbor 198.51.100.1 remote-as ISP2_ASNaddress-family ipv4network 192.0.2.0 mask 255.255.255.0

    Read article β†’

  • Enhanced Python script for Meraki Switch with VLAN deletion or port monitoring

    🧰 Full Python Script – Meraki Switch Automation import requests# ConfigAPI_KEY = “YOUR_MERAKI_API_KEY”ORG_ID = “YOUR_ORG_ID”NETWORK_ID = “YOUR_TEMPLATE_BOUND_NETWORK_ID”DEVICE_SERIAL = “YOUR_SWITCH_SERIAL” # Example: Q2XX-XXXX-XXXXBASE_URL = “https://api.meraki.com/api/v1″HEADERS = { “X-Cisco-Meraki-API-Key”: API_KEY, “Content-Type”: “application/json”}# — VLAN FUNCTIONS —# βœ… Create VLANdef create_vlan(vlan_id, name, subnet, appliance_ip): url = f”{BASE_URL}/networks/{NETWORK_ID}/vlans” payload = { “id”: vlan_id, “name”: name, “subnet”: subnet, “applianceIp”: appliance_ip

    Read article β†’

  • Python script using the Meraki Dashboard API to automate switch port configuration and VLAN creation in a template-bound network.

    πŸ” Step 1: Setup Make sure you have: 🧠 Step 2: Python Script import requests# Replace with your Meraki API keyAPI_KEY = “YOUR_MERAKI_API_KEY”ORG_ID = “YOUR_ORG_ID”NETWORK_ID = “YOUR_TEMPLATE_BOUND_NETWORK_ID”DEVICE_SERIAL = “YOUR_SWITCH_SERIAL” # e.g., Q2XX-XXXX-XXXX# Meraki base URLBASE_URL = “https://api.meraki.com/api/v1″# HeadersHEADERS = { “X-Cisco-Meraki-API-Key”: API_KEY, “Content-Type”: “application/json”}# Step 1: Create VLANdef create_vlan(vlan_id, name, subnet, appliance_ip): url = f”{BASE_URL}/networks/{NETWORK_ID}/vlans”

    Read article β†’

  • How to Create and Modify Meraki Switch Templates

    🧩 1. What is a Meraki Switch Template? In Cisco Meraki, templates are configurations that can be applied across multiple networks, especially useful in large-scale deployments to ensure consistency. πŸ–₯️ 2. Creating a Switch Template (via GUI) βš™οΈ 3. Modifying a Switch Template (via GUI) πŸ”§ 4. Creating/Modifying Switch Templates (via API) πŸ“Œ Prerequisites: βœ…

    Read article β†’

  • How to enable Meraki API

    The Meraki API allows you to automate and manage your Meraki network programmatically. It is a RESTful API that provides access to Meraki dashboard data and configurations. 1. Enable Meraki API Before using the API, you must enable it in the Meraki Dashboard: 2. Generate an API Key ⚠️ Security Note: Treat your API key

    Read article β†’