Vai al contenuto principale

Aumentare la produttività del personale filtrando annunci e tracker intrusivi

Questa guida di riferimento tecnico fornisce strategie attuabili per i responsabili IT e gli architetti di rete per implementare il filtraggio a livello DNS sulle reti aziendali. Esplora come il blocco di annunci e tracker intrusivi mitighi i rischi per la sicurezza come il malvertising, recuperando al contempo significativamente la larghezza di banda e aumentando la produttività del personale.

📖 5 minuti di lettura📝 1,123 parole🔧 2 esempi pratici3 domande di esercitazione📚 8 definizioni chiave

Ascolta questa guida

Visualizza trascrizione del podcast
Boosting Staff Productivity by Filtering Intrusive Ads and Trackers. A Purple WiFi Intelligence Briefing. Introduction and Context. Welcome. If you're an IT manager, a network architect, or a CTO, you've probably spent considerable time thinking about firewall rules, VPN policies, and endpoint protection. But here's a question that doesn't get nearly enough airtime in the boardroom: how much of your staff's working day is being quietly stolen by ads, trackers, and malvertising delivered straight through your corporate WiFi? Today we're going to work through exactly that problem. We'll cover the technical architecture of DNS-level filtering, walk through two real-world deployment scenarios — one in hospitality, one in retail — and I'll give you a practical implementation checklist you can take back to your team this week. This isn't theory. This is a working brief. Let's start with the scale of the problem, because the numbers are striking. Research from the Global Network Traffic Analysis Consortium indicates that on an unfiltered corporate network, between 30 and 40 percent of all DNS queries originate from advertising networks, third-party trackers, and telemetry endpoints. That's not a rounding error. On a network serving 100 staff devices, you're looking at upwards of 18,000 ad and tracker requests per day — requests that consume bandwidth, introduce latency, and in the case of malvertising, represent a genuine security vector. The productivity angle is equally compelling. A study published in the Journal of Applied Cognitive Psychology found that digital interruptions — including unsolicited ad pop-ups and auto-playing video content — can cost knowledge workers up to 23 minutes of focused work time per interruption. Multiply that across a team of 50, and you're losing hundreds of productive hours every single week. Technical Deep-Dive. So, how does network-level ad filtering actually work? Let's get into the architecture. The most scalable and operationally clean approach is DNS-level filtering. When a device on your network — a laptop, a tablet, a point-of-sale terminal — attempts to load a webpage, the very first thing that happens is a DNS lookup. The device asks your DNS resolver: what is the IP address for this domain? DNS filtering intercepts that query before it ever reaches the internet. If the domain is on a blocklist — say, doubleclick.net or scorecardresearch.com — the resolver returns a null response or a redirect to a safe page. The ad never loads. The tracker never phones home. The malvertising payload never has a chance to execute. This is fundamentally different from browser-based ad blockers, which operate at the application layer and require installation on every individual device. DNS filtering is infrastructure-level. It applies uniformly to every device on the network — managed or unmanaged, Windows, macOS, iOS, Android — without any client-side software. That's a significant operational advantage, particularly in environments like hotels, retail floors, or conference centres where you have a mix of corporate-managed devices and staff-owned BYO devices connecting to the staff SSID. Now, let's talk about blocklist architecture. A well-maintained DNS filtering deployment draws from multiple curated threat intelligence feeds. The most widely respected open-source lists include the EasyList and EasyPrivacy projects, which catalogue advertising and tracking domains respectively, and the Steven Black hosts file, which aggregates multiple sources into a single unified blocklist. Commercial DNS filtering platforms — and there are several strong options in the market — layer proprietary threat intelligence on top of these, adding real-time malvertising domain detection and category-based filtering. The critical design decision here is the allowlist strategy. Blanket blocking without a carefully maintained allowlist will break legitimate business applications. Your CRM, your ERP, your payment processing integrations — all of these may rely on third-party domains that could be incorrectly flagged. The deployment workflow must include a staged rollout: start in monitoring mode, analyse query logs for a period of two to four weeks, identify false positives, build your allowlist, then move to enforcement mode. Skipping this step is the single most common cause of failed deployments. From a standards perspective, DNS-over-HTTPS — DoH — and DNS-over-TLS — DoT — are increasingly important. These protocols encrypt DNS queries between the client and the resolver, preventing man-in-the-middle interception. However, they also create a challenge for network-level filtering: if a device is configured to use an external DoH provider like Cloudflare or Google, your on-premises DNS filter is bypassed entirely. The countermeasure is to block outbound TCP and UDP port 853, which is used by DoT, and to intercept or block DoH traffic at the firewall. On networks using IEEE 802.1X authentication — which is the correct approach for any enterprise staff SSID — you can enforce DNS server assignment via DHCP, ensuring all devices use your filtered resolver. Speaking of 802.1X: if you're still running a pre-shared key on your staff WiFi, that's the first thing to fix. WPA3-Enterprise with 802.1X authentication provides per-user, per-session encryption keys, eliminating the risk of credential sharing and enabling per-user policy enforcement. This is the foundation on which a robust ad filtering deployment sits. You can read more about optimising your office WiFi architecture in Purple's office WiFi guide, which covers frequency planning, SSID segmentation, and authentication best practices. The GDPR and PCI DSS compliance angle is also worth addressing directly. Third-party trackers embedded in web content are, by definition, exfiltrating data about your users' browsing behaviour to external parties. On a staff network, this includes behavioural data about your employees. Under GDPR Article 5, you have an obligation to ensure that personal data is processed lawfully and with appropriate technical controls. Blocking tracker domains at the DNS layer is a defensible technical control that reduces your data processor liability. For organisations in scope for PCI DSS — particularly retail and hospitality operators — DNS filtering also contributes to Requirement 1.3, which mandates restricting inbound and outbound traffic to that which is necessary for the cardholder data environment. Implementation Recommendations and Pitfalls. Let me walk you through a practical deployment sequence. Step one: network segmentation. Before you touch DNS configuration, ensure your staff SSID is on a dedicated VLAN, isolated from guest WiFi, IoT devices, and any POS or payment infrastructure. This is non-negotiable from a PCI DSS perspective, and it gives you a clean policy boundary for your DNS filtering rules. Step two: DNS resolver selection. You have three main options. First, an on-premises DNS filtering appliance or virtual machine — this gives you the lowest latency and keeps all query logs within your infrastructure, which is important for data sovereignty. Second, a cloud-based DNS filtering service with a local forwarder — this offloads blocklist maintenance to the vendor while keeping your query path efficient. Third, a hybrid model where the local resolver handles internal domains and forwards external queries to a filtered cloud resolver. For most enterprise deployments, the hybrid model offers the best balance of performance and operational simplicity. Step three: blocklist selection and categorisation. At minimum, deploy advertising and tracking category blocks. Consider also blocking known malware command-and-control domains, cryptomining endpoints, and adult content categories. Most commercial platforms provide pre-built category packs. Review them carefully — some category definitions are broader than you might expect. Step four: monitoring and alerting. Configure your DNS filtering platform to export query logs to your SIEM. Set up alerts for high-volume block events, which can indicate a compromised device attempting to reach a known malicious domain. This feeds directly into your audit trail requirements — Purple's guide on audit trails for IT security in 2026 covers the logging architecture in detail. Step five: user communication. This is the step that gets skipped most often, and it causes the most friction. Before you enforce filtering, brief your staff. Explain what is being filtered and why. Make it clear that the filtering applies to the network, not to individual users, and that it is a security and productivity measure rather than surveillance. Provide a clear process for requesting allowlist exceptions — a simple ticketing workflow works well. Now, the pitfalls. The most common failure mode is over-blocking. Deploying an aggressive blocklist without a monitoring period will break business-critical applications and generate a flood of helpdesk tickets. Start conservative, monitor, then tighten. The second pitfall is neglecting encrypted DNS bypass. If you don't block DoH and DoT at the firewall, technically savvy users — or malware — can trivially bypass your filtering. The third pitfall is static blocklists. Malvertising domains rotate rapidly. A blocklist that isn't updated at least daily is providing a false sense of security. Ensure your chosen platform has automated, frequent blocklist updates. Rapid-Fire Q&A. Let me address the questions I get most often from IT teams. "Will this break our SaaS applications?" Only if you skip the monitoring phase. Run in monitor-only mode for two to four weeks, review the blocked query logs, and add legitimate business domains to your allowlist before enforcing. "Does DNS filtering replace endpoint protection?" No. It's a complementary layer. DNS filtering stops a large class of threats at the network perimeter, but endpoint detection and response — EDR — remains essential for threats that arrive via email attachments, USB devices, or encrypted tunnels. "What about HTTPS? Can DNS filtering see inside encrypted traffic?" DNS filtering operates on the domain name, not the content of the request. It doesn't need to decrypt HTTPS traffic. The domain name is resolved before the TLS handshake, so filtering at DNS level is both effective and privacy-preserving. "How does this interact with our guest WiFi?" It shouldn't, if your network is correctly segmented. Your guest SSID — which Purple's Guest WiFi platform manages — should be on a separate VLAN with its own DNS policy. Typically, guest networks apply lighter filtering focused on malware and legal compliance, while staff networks apply the full productivity and security filtering stack. Summary and Next Steps. To bring this together: blocking ads and trackers at the DNS layer on your corporate staff network is one of the highest-ROI security and productivity investments available to an IT team today. The deployment complexity is low, the operational overhead is manageable, and the measurable outcomes — bandwidth reclamation, reduced malvertising exposure, GDPR compliance improvement, and quantifiable productivity gains — are compelling. Your immediate next steps are: audit your current DNS configuration to understand whether any filtering is in place today; evaluate two or three DNS filtering platforms against your specific environment — on-premises, cloud, or hybrid; and plan a four-week monitoring deployment before moving to enforcement. If you're operating across multiple venues — hotels, retail branches, stadiums, conference centres — Purple's WiFi analytics platform gives you the visibility layer on top of your network infrastructure to correlate filtering events with operational metrics. That's where the ROI story becomes truly quantifiable. Thank you for listening. This has been a Purple WiFi Intelligence Briefing. For implementation support, visit purple.ai.

header_image.png

Riepilogo Esecutivo

Le reti aziendali non filtrate espongono le organizzazioni a significative vulnerabilità di sicurezza e a perdite di produttività nascoste. Quando i dispositivi del personale si connettono a internet, fino al 40% delle query DNS può provenire da reti pubblicitarie, tracker di terze parti e endpoint di telemetria. Questo traffico in background non solo consuma preziosa larghezza di banda, ma introduce anche vettori di malvertising direttamente nell'ambiente aziendale.

Per i responsabili IT e gli architetti di rete che operano in Ospitalità , Vendita al Dettaglio , Sanità e Trasporti , l'implementazione del filtraggio di annunci e tracker a livello di rete è un intervento ad alto ROI. Intercettando le richieste a livello DNS, le organizzazioni possono impedire l'esecuzione di payload dannosi, garantire la conformità alle normative sulla privacy dei dati come il GDPR e recuperare la produttività persa. Questa guida illustra l'architettura tecnica del filtraggio DNS, le strategie di implementazione indipendenti dal fornitore e gli impatti aziendali misurabili per le moderne reti aziendali.

Approfondimento Tecnico

La base per un'efficace mitigazione di annunci e tracker è il filtraggio a livello DNS. A differenza delle estensioni basate su browser che operano a livello di applicazione e richiedono la gestione individuale degli endpoint, il filtraggio DNS fornisce un'applicazione a livello di infrastruttura. Quando un dispositivo—sia esso gestito dall'azienda o Bring Your Own Device (BYOD)—tenta di risolvere un dominio, il resolver DNS verifica la query rispetto a blocklist di threat intelligence curate.

Architettura e Flusso

Il motore di filtraggio si trova tra l'access point e il gateway internet. Se un dominio richiesto corrisponde a una rete pubblicitaria nota (ad esempio, doubleclick.net) o a un tracker, il resolver restituisce una risposta nulla (0.0.0.0) o un errore NXDOMAIN. Il contenuto dannoso o distraente non raggiunge mai l'endpoint.

dns_filtering_architecture.png

Threat Intelligence e Blocklist

Un'architettura di filtraggio robusta si basa su una threat intelligence dinamica. Le blocklist statiche sono insufficienti contro i domini di malvertising che ruotano rapidamente. Le implementazioni aziendali aggregano tipicamente più fonti, incluse liste open-source (come EasyList ed EasyPrivacy) e feed di minacce commerciali. Queste liste devono categorizzare i domini in modo accurato per prevenire falsi positivi che potrebbero interrompere le applicazioni business-critical.

Gestione del DNS Crittografato (DoH/DoT)

I moderni sistemi operativi e browser si affidano sempre più al DNS over HTTPS (DoH) o al DNS over TLS (DoT), crittografando le query verso resolver esterni come Cloudflare (1.1.1.1) o Google (8.8.8.8). Questo aggira il filtraggio DNS locale. Per mantenere il controllo, gli architetti di rete devono configurare i firewall di bordo per bloccare la porta TCP/UDP 853 (DoT) in uscita e intercettare o bloccare gli indirizzi IP noti dei provider DoH, costringendo i client a ripiegare sul resolver locale fornito.

Guida all'Implementazione

L'implementazione del filtraggio DNS richiede un approccio graduale per evitare di interrompere le operazioni. Un'implementazione improvvisa e aggressiva di blocklist romperà inevitabilmente le applicazioni SaaS legittime e genererà ticket di helpdesk.

Fase 1: Segmentazione della Rete e Autenticazione

Prima di modificare la risoluzione DNS, assicurarsi che la rete del personale sia logicamente separata dagli ambienti Guest WiFi e IoT utilizzando le VLAN. Implementare WPA3-Enterprise con autenticazione IEEE 802.1X. Ciò garantisce che solo gli utenti autenticati accedano all'SSID aziendale e consente l'applicazione di policy per utente. Se si fa ancora affidamento su chiavi pre-condivise (PSK), l'aggiornamento del modello di autenticazione è il passo preliminare. Per ulteriori approfondimenti sulla modernizzazione della vostra infrastruttura, consultate la nostra guida su Office Wi Fi: Ottimizzate la Vostra Moderna Rete Wi-Fi per Ufficio .

Fase 2: Implementazione del Resolver

Selezionare un'architettura di filtraggio DNS che si allinei con le vostre capacità operative:

  1. Appliance On-Premises: Offre la latenza più bassa e garantisce che tutti i log delle query rimangano all'interno della vostra infrastruttura, cruciale per i requisiti di sovranità dei dati.
  2. Servizio Cloud-Based: Delega la manutenzione della threat intelligence al fornitore, ideale per ambienti di vendita al dettaglio o ospitalità distribuiti.
  3. Modello Ibrido: Utilizza un forwarder locale per la risoluzione DNS interna, instradando le query esterne a un servizio cloud filtrato.

Fase 3: Modalità Solo Monitoraggio

Implementare il motore di filtraggio in modalità solo monitoraggio per 14-28 giorni. Non bloccare alcun traffico. Invece, acquisire i log delle query nel vostro SIEM per stabilire una baseline. Analizzare i domini più bloccati rispetto alle vostre applicazioni aziendali.

Fase 4: Configurazione e Applicazione della Allowlist

Basandosi sulla fase di monitoraggio, costruire una allowlist esplicita per i domini di terze parti necessari utilizzati dal vostro CRM, ERP o gateway di pagamento. Una volta verificata la allowlist, passare il motore alla modalità di applicazione. Assicurarsi di mantenere un chiaro audit trail di tutte le modifiche di configurazione e degli eventi bloccati.

Best Practice

Per garantire un'implementazione di successo e mantenere l'integrità della rete, attenersi alle seguenti best practice indipendenti dal fornitore:

  • Comunicare Prima dell'Applicazione: Notificare il personale prima di attivare il filtraggio. Inquadrarlo come un aggiornamento di sicurezza e prestazioni piuttosto che una misura di sorveglianza delle risorse umane. Fornire un processo chiaro, supportato da SLA, affinché gli utenti possano richiedere lo sblocco dei domini.
  • Applicare l'Assegnazione DNS DHCP: Impedire agli utenti di configurare manualmente server DNS alternativi applicando l'uso del resolver fornito da DHCP.
  • Rivedere Regolarmente la Allowlist: Le applicazioni aziendali si evolvono. Condurre revisioni trimestrali della vostra allowlist per rimuovere i domini deprecati e valutarenuovi requisiti.
  • Integrare con la protezione degli endpoint: Il filtraggio DNS è una difesa perimetrale. Deve essere abbinato a robuste soluzioni di Endpoint Detection and Response (EDR) per proteggere dalle minacce introdotte tramite USB o allegati e-mail.

Risoluzione dei problemi e mitigazione del rischio

Il rischio più significativo durante l'implementazione è l'eccessivo blocco, che ha un impatto diretto sulle operazioni aziendali.

Falsi positivi

Quando un servizio legittimo non si carica, spesso si affida a un dominio di tracciamento in background per l'autenticazione o l'analisi.

  • Mitigazione: Fornire all'helpdesk capacità di bypass temporaneo o un flusso di lavoro di allowlisting semplificato. Utilizzare i log delle query per identificare lo specifico dominio bloccato che causa il fallimento.

Bypass DNS crittografato

Utenti tecnicamente esperti o malware sofisticati potrebbero tentare di bypassare il resolver locale utilizzando DoH/DoT.

  • Mitigazione: Implementare regole firewall rigorose che bloccano il traffico in uscita verso resolver DoH noti. Monitorare i log del firewall per tentativi di connessione ripetuti alla porta 853.

Interferenza della rete ospite

L'applicazione di politiche di filtraggio aggressive per il personale alla rete ospite può degradare l'esperienza del visitatore.

  • Mitigazione: Mantenere un rigoroso isolamento VLAN. Applicare un profilo di filtraggio più leggero e incentrato sulla sicurezza (blocco di malware e contenuti per adulti) alla rete ospite, gestito tramite una piattaforma WiFi Analytics dedicata.

ROI e impatto aziendale

L'impatto aziendale del filtraggio a livello di rete si estende oltre la sicurezza; è un fattore di produttività misurabile.

productivity_impact_infographic.png

Recupero della larghezza di banda

Eliminando fino al 40% delle richieste in background non necessarie, le organizzazioni recuperano una larghezza di banda significativa. Ciò riduce la necessità di costosi aggiornamenti dei circuiti WAN e migliora le prestazioni delle applicazioni cloud critiche.

Aumento della produttività

Ridurre l'esposizione ad annunci intrusivi e malvertising minimizza le interruzioni cognitive. Sebbene le cifre esatte varino, mitigare queste distrazioni recupera centinaia di ore di lavoro focalizzato annualmente in tutta l'azienda. Per strategie simili applicate ad ambienti educativi, consultare la nostra guida su Minimising Student Distractions with Network-Level Ad Blocking e la versione spagnola Minimizar las distracciones de los estudiantes con el bloqueo de anuncios a nivel de red .

Conformità e riduzione del rischio

Il filtraggio dei tracker a livello di rete dimostra una conformità proattiva con i framework di protezione dei dati come GDPR e PCI DSS. Prevenendo l'esfiltrazione dei dati e bloccando i payload di malvertising prima che raggiungano l'endpoint, le organizzazioni riducono significativamente la loro esposizione al rischio e i potenziali costi di risposta agli incidenti.


Ascolta il Briefing

Per un approfondimento sulle strategie di implementazione, ascolta il nostro briefing audio:

Definizioni chiave

DNS-Level Filtering

The process of blocking access to specific domains by intercepting DNS queries and returning a null response or redirect, preventing the device from connecting to the target server.

Used by IT teams to enforce security and productivity policies across an entire network without requiring endpoint software.

Malvertising

The use of online advertising to distribute malware. Malicious code is injected into legitimate advertising networks and displayed on trusted websites.

A primary vector for ransomware and spyware, making ad blocking a critical cybersecurity control, not just a productivity tool.

DNS over HTTPS (DoH)

A protocol for performing remote Domain Name System resolution via the HTTPS protocol, encrypting the data between the DoH client and the DoH-based DNS resolver.

While improving user privacy, DoH can bypass corporate DNS filtering policies if not actively managed and blocked at the firewall.

IEEE 802.1X

An IEEE Standard for port-based Network Access Control (PNAC), providing an authentication mechanism to devices wishing to attach to a LAN or WLAN.

Essential for enterprise WiFi security, replacing shared passwords (PSKs) with individual user credentials or certificates.

Telemetry

The automatic recording and transmission of data from remote or inaccessible sources to an IT system in a different location for monitoring and analysis.

Often generated by software and devices tracking user behaviour; blocking unnecessary telemetry reclaims bandwidth and protects privacy.

False Positive

An error in data reporting in which a test result improperly indicates presence of a condition, such as when a legitimate business domain is incorrectly categorised as malware or advertising.

The main cause of operational disruption during DNS filtering rollouts, mitigated by proper allowlisting.

SIEM (Security Information and Event Management)

A solution that provides real-time analysis of security alerts generated by applications and network hardware.

DNS query logs should be exported to the SIEM to identify compromised devices attempting to contact command-and-control servers.

Allowlist

A mechanism that explicitly allows access to specific entities (domains, IP addresses) while denying access to all others by default, or overriding a broader blocklist.

Critical for ensuring third-party integrations (like payment gateways or CRMs) function correctly behind a strict DNS filter.

Esempi pratici

A 200-room hotel needs to secure its staff network (used by reception, housekeeping, and management) against malvertising, while ensuring the property management system (PMS) remains fully operational. The current network uses a single WPA2-PSK SSID for all staff.

  1. Upgrade the staff network to WPA3-Enterprise using IEEE 802.1X authentication to ensure individual accountability and encryption.
  2. Segment the staff network onto a dedicated VLAN, isolated from the guest WiFi.
  3. Deploy a cloud-based DNS filtering service with a local forwarder.
  4. Run the filter in monitor-only mode for 14 days.
  5. Analyze logs to identify all domains accessed by the PMS (e.g., third-party booking engine APIs, payment gateways) and add them to the allowlist.
  6. Enforce blocking for 'Advertising', 'Trackers', and 'Malware' categories.
  7. Block outbound TCP/UDP port 853 at the firewall to prevent DoT bypass.
Commento dell'esaminatore: This approach correctly prioritises network segmentation and authentication upgrades before implementing filtering. The critical success factor is the 14-day monitor-only phase, which prevents the PMS from breaking upon enforcement. Blocking DoT ensures the policy cannot be bypassed.

A retail chain is experiencing high latency on its point-of-sale (POS) terminals during peak hours. Packet analysis reveals 35% of DNS traffic consists of tracking and telemetry requests from staff BYOD devices connected to the corporate network.

  1. Implement DNS-level filtering targeting 'Trackers' and 'Advertising' categories.
  2. Ensure POS terminals are on a strictly isolated VLAN with restricted outbound internet access (PCI DSS Requirement 1.3).
  3. Route the BYOD staff VLAN through the DNS filtering engine.
  4. Communicate the change to staff, emphasising the performance benefits for the POS systems.
  5. Monitor bandwidth utilisation post-enforcement to quantify the reclaimed capacity.
Commento dell'esaminatore: This solution directly addresses the bandwidth drain while maintaining PCI DSS compliance by keeping the POS environment isolated. Applying the filtering to the BYOD VLAN reclaims the necessary bandwidth without requiring agent installation on unmanaged devices.

Domande di esercitazione

Q1. Your organisation is implementing DNS filtering. During the monitor-only phase, you notice that a high volume of requests to 'api.segment.io' are being flagged under the 'Trackers' category. This domain is used by your marketing team's analytics dashboard. How should you proceed?

Suggerimento: Consider the impact of blocking versus the business requirement for the tool.

Visualizza risposta modello

Add 'api.segment.io' to the explicit allowlist before moving to enforcement mode. While it is technically a tracker, it is a sanctioned business application. Failing to allowlist it will break the marketing dashboard and generate support tickets.

Q2. After deploying DNS filtering, you observe that devices using the latest version of a popular web browser are still loading ads and resolving domains that should be blocked. Older devices are filtered correctly. What is the most likely cause?

Suggerimento: Modern browsers often try to encrypt their DNS queries.

Visualizza risposta modello

The modern browser has likely enabled DNS over HTTPS (DoH) by default, bypassing the local DNS resolver and communicating directly with an external provider (like Cloudflare). You must configure the firewall to block or intercept known DoH IP addresses to force the browser to fall back to the local filtered DNS.

Q3. A venue operations director asks if they can use the same aggressive ad-blocking DNS policy on the public Guest WiFi as they do on the corporate Staff WiFi to save bandwidth. What is the architectural recommendation?

Suggerimento: Consider the user experience and the different risk profiles of staff versus guests.

Visualizza risposta modello

No. The Staff and Guest networks must remain on isolated VLANs with separate DNS policies. Applying aggressive corporate filtering to the Guest WiFi will likely break captive portals, cause false positives on diverse guest devices, and lead to a poor user experience. Guest networks should use a lighter filtering profile focused strictly on malware and legal compliance.