Abstract illustration of distributed encrypted network nodes

IEEE Research Paper · Co-Author

Federated Deep Learning for Privacy-Preserving Intrusion Detection in Distributed Network Environments

2026 6th International Conference on Intelligent Technologies (CONIT) · June 19–21, 2026

PythonFederated LearningCybersecurityDeep Learning

Traditional network intrusion detection systems work by pooling raw traffic data from every client into one central location to train a single model. That’s a real privacy problem — organizations often can’t or won’t share their raw network data with anyone else, which makes centralized systems impractical for distributed environments where multiple independent networks need protection.

This paper proposes a federated learning architecture instead. A deep neural network is trained separately on each distributed client’s own data — the raw data never leaves that client. Only the trained model’s parameters are sent out, and they’re combined across all clients using the Federated Averaging (FedAvg) algorithm to build one global intrusion-detection model, without any client ever exposing its actual network traffic.

System architecture: CICIDS2017 dataset flows through preprocessing, label encoding, client data splitting, per-client DNN training, FedAvg aggregation, and global evaluation
Fig. 1 — proposed system architecture, trained on the CICIDS2017 intrusion-detection dataset.

The results held up: 99.68% accuracy and 99.76% ± 0.03% cross-validation accuracy, meaning performance stayed consistent even as the data was split differently across clients. The model also produced near-perfect F1 scores broken down by individual attack type.

Client 1 accuracy and loss plots across training epochs
Client-side accuracy and loss converge within a handful of epochs.
Cross-validation accuracy and loss per fold, all near 0.997
Fig. 5 — 5-fold cross-validation of the aggregated global model, mean accuracy 0.9976.

The core finding: this approach matches the performance of centralized training while actually preserving data privacy — directly applicable to real-world cybersecurity services.