Wi-Fi Connection at School: Technical and Legal Considerations

Organizing wireless internet in educational institutions is a task that requires taking into account dozens of factors: from technical limitations to strict requirements Roskomnadzor And Federal Law No. 152-FZ on personal data protection. Unlike a home network, school Wi-Fi must not only provide stable coverage for 50-500 devices simultaneously, but also guarantee content filtering, protection from cyberattacks, and traffic separation for students, teachers, and administrative staff.

This article will help you understand the key stages: from choosing optimal equipment (access points Ubiquiti UniFi, routers MikroTik or solutions from Cisco Meraki) before setting up VLAN and project approval with the provider. We will consider this in detail. Mandatory requirements for school networks in 2026, including new amendments regarding the storage of connection logs for 6 months and mandatory authentication through Unified Identification System (ESIA).

Important: If your school is located in a historic building with thick walls or on a large site (e.g., a training and industrial complex), standard solutions may not work. In such cases, you will need network design taking into account radio frequency survey — We'll tell you about that too.

1. Legal requirements for school Wi-Fi in 2026

Before purchasing equipment, review the regulatory framework. Changes that came into effect in 2023 require schools to:

  • 📜 Filter content according to the unified register of prohibited sites (Roskomnadzor) with mandatory integration with the system Cerebral palsy (Children's protected content).
  • 🔐 Use two-factor authentication for teachers to access administrative resources (e.g. through Government services or corporate portal).
  • 📡 Provide coverage at least 90% of educational premises (including gyms and auditoriums) at minimum speed 50 Mbps to the device.
  • 📊 Store connection logs within 6 months (previously it was 3 months) with the possibility of providing them upon request of the inspection authorities.

Pay special attention Order of the Ministry of Education No. 185 from 2026, which regulates the division of the network into three zones:

Access zoneUsersSpeed ​​requirementsRestrictions
EducationalStudents in grades 1-11≥30 MbpsBlocking social networks, games, and torrents
PedagogicalTeachers, methodologists≥100 MbpsAccess to educational platforms (YaKlass, Uchi.ru)
AdministrativeDirector, accounting, IT department≥1 Gbit/sTraffic encryption, VPN for remote access
⚠️ Attention: From January 1, 2026, schools are required to use only certified FSTEC equipment. The list of approved models is published on the website. reestr.digital.gov.ru — check it before buying!

2. Choosing Equipment: What to Buy for a School with 300+ Devices

For a secondary school with 20 classrooms and 300 simultaneously connected devices (smartphones, laptops, interactive whiteboards), the minimum equipment set includes:

  • 📶 Wi-Fi controller: Ubiquiti UniFi Dream Machine Pro (supports up to 500 clients) or MikroTik CCR2004-1G-12S+2XS for large schools.
  • 🔄 Switch: Cisco SG350-28P (24 PoE+ ports for powering access points).
  • 📡 Access points: Ubiquiti U6-Pro (1 point for 2 classes) or Ruckus R750 for rooms with high device density.
  • 🛡️ Firewall: Fortinet FortiGate 60F with content filtering module.

The cost of a school kit for 500 devices is from 400,000 to 1,200,000 rubles Depending on the brand and the need for channel redundancy. It's not worth skimping on equipment: cheap routers (TP-Link or D-Link home series) will not handle the load and will "drop" when 100+ gadgets are connected simultaneously.

When choosing access points, please pay attention to:

  • 📶 Wi-Fi 6 standard (802.11ax) - mandatory for schools (supports up to 8 data streams simultaneously).
  • 🔋 PoE++ (802.3bt) — power supply via network cable up to 60 W (necessary for points with multiple antennas).
  • 📊 MU-MIMO support — allows you to exchange data with multiple devices simultaneously.
📊 What equipment does your school use?
Ubiquiti
MikroTik
Cisco
Ruckus
Other/I don't know

3. Connection diagram: from provider to classes

A typical Wi-Fi deployment scheme in a school looks like this:

  1. Provider loginoptical terminal (For example, GPON ONT from Rostelecom).
  2. ONTfirewall (FortiGate or MikroTik) with setting NAT And VLAN.
  3. Firewallmanaged switch (For example, Cisco SG350) with division into VLAN.
  4. SwitchWi-Fi controller (For example, UniFi Cloud Key).
  5. Controlleraccess points in classrooms, assembly hall, cafeteria.

Example of setup VLAN to separate traffic:

# Configuring VLAN on MikroTik

/interface vlan

add interface=bridge name=vlan_students vlan-id=10

add interface=bridge name=vlan_teachers vlan-id=20

add interface=bridge name=vlan_admin vlan-id=30

/ip address

add address=192.168.10.1/24 interface=vlan_students

add address=192.168.20.1/24 interface=vlan_teachers

add address=192.168.30.1/24 interface=vlan_admin

For schools with several buildings it will be necessary fiber optic connection between buildings (or radio bridge Ubiquiti AirFiber, if cable laying is not possible). In this case, each case has its own switch, connected to the central one via L2TP tunnel.

Coordinate the project with Roskomnadzor|

Check your provider's bandwidth (minimum 1 Gbps)|

Order a radio frequency survey (if the building is older than 1980) |

Sign a contract with your provider for a static IP address|

Train the school's IT specialist to use the Wi-Fi controller-->

4. Setting up a Wi-Fi controller: step-by-step instructions

Let's look at the setup using an example Ubiquiti UniFi Controller (valid for versions 7.4+):

  1. Installing the controller

    Download UniFi Network Application from the official website and install it on the server (or use a cloud solution UniFi Cloud). For schools, a local controller based on Ubuntu Server 22.04.

  2. Creating networks (SSID)

    Go to the section Settings → Wireless Networks and add three networks:

    • SCHOOL-STUDENTS (VLAN 10, speed limited to 30 Mbps).
    • SCHOOL-TEACHERS (VLAN 20, priority traffic).
    • SCHOOL-ADMIN (VLAN 30, hidden network with WPA3-Enterprise).

  • Security settings

    Turn on:

    • 🔒 WPA3-Enterprise with authentication via Radius server (For example, FreeRADIUS).
    • 🛡️ Client Isolation — so that students' devices cannot see each other.
    • 📵 Block LAN to WLAN Multicast — to protect against DDoS attacks within the network.
    • Content filtering

      Integrate the controller with the system Cerebral palsy (via API) or configure the rules manually in Firewall:

      # Example of a rule for blocking social networks
      

      config firewall filter

      add chain=forward dst-port=443 protocol=tcp content="vk.com" action=drop

      add chain=forward dst-port=443 protocol=tcp content="t.me" action=drop

    ⚠️ Attention: If the school uses Promethean interactive whiteboards or SMART Board, you need to create a separate one for them VLAN with priority QoSThese devices are sensitive to network latency!
    iperf3 -s (on the server) and iperf3 -c [IP] -t 60 -P 50 (on the client). This will help identify bottlenecks in the network.-->

    5. Problems and solutions: what to do if Wi-Fi isn't working

    Common problems in school networks and how to solve them:

    ProblemPossible causeSolution
    Low speed in classesChannel congestion (too many devices at one point)Install additional access points or reduce transmission power
    Wi-Fi is out in some rooms.Interference from microwaves in the dining room or thick wallsUse dots with Beamforming (For example, Ruckus R750) or lay a cable
    Students bypass filtering using VPNThere is no port blocking OpenVPN/WireGuardConfigure Deep Packet Inspection (DPI) on your firewall
    Authorization via the Unified Identification and Authentication System (ESIA) is not working.Incorrect settings SAML-providerCheck certificates and settings in your personal account State Services

    If problems occur after updating the hardware firmware, try rolling back to the previous version. For example, for Ubiquiti This is done via SSH:

    ssh ubnt@[controller_IP]
    

    sudo apt-mark hold unifi

    sudo apt install unifi=7.3.83 # specify the stable version

    How to check channel load?

    Open UniFi ControllerInsights → Network. If the schedule Channel Utilization If the bandwidth is consistently above 70%, the channel is overloaded. Solution: Switch the access points to a less congested band (for example, from 2.4 GHz to 5 GHz) or add another access point.

    6. Cost and sources of funding

    The costs of deploying Wi-Fi in a school can be broken down into three categories:

    • 💰 Equipment: 300,000–800,000 rubles (depending on the number of outlets and brand).
    • 👷 Installation and configuration: 150,000–300,000 rubles (including cable laying and radio survey).
    • 📡 Subscription fee to the provider: from 5,000 rubles/month for a 1 Gbit/s channel with unlimited traffic.

    Sources of funding:

    • 🏫 Budget subsidies: The "Digital Educational Environment" program (you can receive up to 2 million rubles for equipment).
    • 🤝 Sponsorship assistance: Large IT companies (Yandex, Sber, VK) often sponsor schools with equipment.
    • 💳 Parental contributions: Legal if it is formalized as a voluntary donation for the development of the school.
    ⚠️ Attention: From 2026, schools will be required to conduct tenders for the purchase of equipment through Unified Information System (UIS)Direct contracts with suppliers without a competitive tender are prohibited!

    7. Staff training and Wi-Fi usage rules

    After starting the network, you need to:

    1. Conduct a briefing for teachers and administration on the rules of using the network (for example, prohibition on installation Tor Browser or Psiphon).
    2. Develop a local act about the procedure for using Wi-Fi (example: sample from the Federal State Educational Standard).
    3. Assign a person in charge for IT infrastructure (preferably with a certificate) Cisco CCNA or MikroTik MTCNA).

    Example of rules for students:

    • ⏰ Wi-Fi is available only during school hours (8:00 AM to 6:00 PM).
    • 📵 Connection is prohibited Raspberry Pi, routers or other devices that distribute the Internet.
    • 🔍 All online activity is logged and can be reported to parents or the police if violations occur.

    FAQ: Frequently Asked Questions about Wi-Fi in Schools

    ❓ Do I need to coordinate Wi-Fi with Rospotrebnadzor?

    Yes, if the power of the access points exceeds 100 mW (standard for Wi-Fi 6). It is necessary to provide electromagnetic radiation measurement protocol (the cost of measurements is about 20,000 rubles). For points with a capacity of up to 100 mW no approval required.

    ❓ Is it possible to use home routers (e.g. TP-Link) at school?

    Technically it is possible, but undesirableHome routers:

    • They don't support it. VLAN and traffic separation.
    • They have a limit on the number of connected devices (usually up to 30-50).
    • They do not pass certification FSTEC for educational institutions.

    Exception: If the school is small (up to 50 students), you can use TP-Link Omada with controller.

    ❓ How can I limit the speed for students but not for teachers?

    Set up Bandwidth Limit in the Wi-Fi controller:

    1. Create a separate one VLAN for students (for example, VLAN 10).
    2. In the settings Firewall add a rule:
      /ip firewall mangle
      

      add chain=forward src-address=192.168.10.0/24 action=mark-connection \

      new-connection-mark=students passthrough=yes

      /queue simple

      add name="Students_Limit" target=192.168.10.0/24 max-limit=30M/30M

    ❓ What should I do if my ISP refuses to provide a static IP?

    Static IP is required for:

    • Works ESIA (authentication via Government services).
    • Remote access to school resources (e.g. for distance learning).

    Solutions:

    • Change your ISP to one that provides a static IP (for example, Rostelecom or MTS for schools).
    • Use DDNS (for example, service No-IP), but it is not suitable for ESIA.

    ❓ Is it possible to share Wi-Fi from a teacher's phone during class?

    No, it violates:

    • Order of the Ministry of Education No. 185 (only centralized Wi-Fi is allowed).
    • License Agreement with the provider (transfer of Internet to third parties is prohibited).
    • Safety requirements: Personal hotspot does not filter content or keep logs.

    Exception: If there is no Wi-Fi at school and the lesson requires internet (for example, an online Olympiad), you can use USB modem with prior approval from the director.