Connexion au Wi-Fi DGNum / DGNum Wi-Fi Connection ✨
Short English Version Below
Le Wi-Fi DGNum est disponible à Ulm (hors NIR – travaux en cours), Jourdan et Montrouge.
Voici les étapes pour se connecter.
Le Wi-Fi est actuellement en bêta. Nous ne garantissons aucun niveau de service. En revanche, n’hésitez pas à signaler tout dysfonctionnement afin d’améliorer le service.
2025: une partie des utilisateurs connaissent un bug lié à un équipement utilisé sur le réseau, que la DGNum ne peut remplacer ou résoudre seule. Le constructeur a été contacté et n’a pas encore apporté de solution au problème.
Dysfonctionnements connus:
Update du 11/02 : le fonctionnement en roaming, c’est-à-dire en déplacement et en passant d’une borne à une autre, n’est pas encore assuré.
Pour être sûr·e que votre appareil se reconnecte à la borne la plus proche et assure le meilleur débit, nous vous recommandons d’éteindre le Wi-Fi puis de le rallumer sur votre appareil, une fois au niveau de la borne de destination.
Ajout du 27/08/25 : Nous recommandons de choisir un réseau unique entre DGNum 2G et DGNum 5G (le réseau 5G est celui recommandé pour la majorité des cas), le passage de l’un à l’autre automatiquement dysfonctionnant pour l’heure.
Ajout du 07/09/25 : Nous rencontrons un bug qui fait que certaines personnes ne se voient pas attribuer d’IP ce qui les empêche de se connecter à Internet.
1. Création de compte et adhésion à la DGNum (gratuite)
Allez sur https://profil.dgnum.eu et créez votre compte en choisissant l'option de connexion “CAS ENS”.
Une fois connecté·e, créez votre compte DGNum, acceptez les statuts et le RI de la DGNum et vérifiez votre adresse e-mail. Enfin, allez dans Mon profil, et cliquez sur Créer un mot de passe Wi-Fi.
Vous ne pouvez vous connecter via le “CAS ENS” qu’une fois que vous avez récupéré vos identifiants clipper auprès du NPS.
Si vous n'avez pas de compte clipper (attribué par le NPS lors de votre rentrée) parce que vous n’y êtes pas éligible, contactez support@dgnum.eu
2. Connectez-vous au Wi-Fi 🛜
Selon votre appareil la procédure varie. Référez-vous à la section adéquate ci-dessous.
Si votre appareil n’est pas décrit (oui les gens sous Arch Linux avec un gestionnaire de connexions chelou on vous voit 👀) et que vous souhaitez l’ajouter à la liste, contactez-nous !
🪟 Windows
Cliquez sur le réseau Wi-Fi et indiquez votre nom d’utilisateur et mot de passe. Ensuite, acceptez le certificat. Si vous n’aimez pas le TOFU 🫓 (Trust On First Use), vous pouvez nous demander le certificat par mail à support@dgnum.eu.
🍎 macOS, iOS et iPadOS
Téléchargez le profil de connexion sur la page de votre profil DGNum.
Le profil contient votre mot de passe, pensez à supprimer ce fichier une fois le Wi-Fi configuré.
Rendez vous ensuite dans l’application Réglages Système. Cliquez sur l’onglet Profils téléchargés, qui devrait être apparu.
Si l’onglet Profils téléchargés n’apparaît pas, vous pouvez taper Gestion des appareils dans la barre de recherche.
Double-cliquez sur le profil Wi-Fi DGNum, puis sur le bouton Installer en bas à gauche. Sélectionnez ensuite Installer, puis Installer à nouveau.
À ce moment, il se peut qu'on vous demande votre mot de passe du Wi-Fi et votre identifiant (à retrouver sur votre page de profil dans profil.dgnum.eu).
Enfin, vous devez rentrer le mot de passe administrateur dans la boîte de dialogue, pour valider la création du profil. Si toutes les étapes se déroulent comme prévu, vous pouvez retourner dans le menu Wi-Fi de Réglages Système, et sélectionner le réseau DGNum.
🤖 Android
Connectez-vous au réseau avec les paramètres indiqués dans l’image suivante (le look peut changer selon le thème et la version d’Android mais vous devriez trouver grosso modo la même chose).
écran de connexion sous Android
Il faut remplacer jdoe par votre nom d’utilisateur et mettre le mot de passe généré sur votre Profil DGNum
🐧 Linux
Il y a à peu près autant d’interfaces de configuration Wi-Fi que de distributions Linux. Nous documenterons ici les distributions principales. Si vous souhaitez ajouter la vôtre, contactez nous.
GNOME (Ubuntu et autres distributions)
Les paramètres de connexion sont indiqués sur la photo ci-dessous. Sous Ubuntu, GNOME sait trouver les certificats. Sous d’autres distributions GNU/Linux, il se peut qu’il faille indiquer le chemin vers le bundle de certificats. Habituellement, ils sont situés dans le dossier /etc/ssl/.
Interface de connexion sous GNOME (avec Network Manager)
Il faut remplacer jdoe par votre nom d’utilisateur et mettre le mot de passe généré sur votre Profil DGNum
KDE
Todo
NetworkManager
Voici le fichier de configuration pour NetworkManager, à placer dans /etc/NetworkManager/system-connections/DGNum.nmconnection.
[connection]
id=DGNum
uuid=bd13b9f8-29f6-4f87-93b8-e1afb2cbcb9e
type=wifi
[wifi]
mode=infrastructure
ssid=DGNum
[wifi-security]
key-mgmt=wpa-eap
[802-1x]
anonymous-identity=anonymous
ca-cert=<CHEMIN_VERS_LES_CERTIFICATS_DU_SYSTEME>
domain-match=radius.dgnum.eu
eap=peap;
identity=<NOM_D_UTILISATEUR>
password=<MOT_DE_PASSE>
phase2-auth=mschapv2
[ipv4]
method=auto
[ipv6]
addr-gen-mode=default
method=autochmod 600 le fichier pour que la connexion fonctionne.
❄️ NixOS
Que serait la DGNum si on ne proposait pas de config NixOS ? Voici une configuration pour cela !
{ pkgs, ... }:
{
networking.networkmanager.ensureProfiles = {
profiles = {
"DGNum" = {
connection = {
id = "DGNum";
type = "wifi";
};
wifi = {
mode = "infrastructure";
ssid = "DGNum";
};
wifi-security = {
key-mgmt = "wpa-eap";
};
"802-1x" = {
anonymous-identity = "anonymous";
eap = "peap";
identity = "Nixos_power_user_id";
password = "38C3";
phase2-auth = "mschapv2";
domain-match = "radius.dgnum.eu";
ca-cert = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
};
ipv4 = {
method = "auto";
};
ipv6 = {
addr-gen-mode = "default";
method = "auto";
};
};
};
secrets.entries = [
{
matchId = "DGNum";
matchType = "wifi";
key = "802-1x.password";
file = /root/dgnum_password_file;
}
];
};
}3. Profitez, vous êtes connecté·e via le Wi-Fi DGNum !
En cas de problèmes
Vous pouvez lire la FAQ ici. Si vous ne trouvez pas de réponse à votre problème, contactez support@dgnum.eu.
English Version
The Wi-Fi is currently only accessible at the Campus Panthéon (excepted in NIR building), Jourdan and Montrouge. It should be up and running as soon as possible in the NIR building.
The Wi-Fi is currently in beta. We do not provide any guarantees on quality, works are still ongoing to deploy the network, service disruptions may occur frequently until mid-september. However, do not hesitate to report any reccuring malfunction to support@dgnum.eu.
Update 11/02 : Wi-Fi when roaming, that is when moving and connecting from one box to another, is not yet functioning.
To make sure your device connects properly to the Wi-Fi, we suggest your turn off and on the Wi-Fi on your device when getting to your destination.
Update 27/08/25: We recommend you choose only one network between DGNum 2G and DGNum 5G (the latter being more optimized) as going from one to the other can cause issues.
1. DGNum Account Creation (free)
Go to https://profil.dgnum.eu and create your account using the “CAS ENS” option.
Once connected, create your DGNum account and accept the DGNum bylaws. Then, go to My profile, and click on Create a WiFi password.
You will only be able to connect by “CAS ENS” if you already have you clipper account information, which you will get from the NPS during your first day at the school.
If you don’t have a clipper account and are not eligible for one, please reach out to support@dgnum.eu
2. Connect to the Wi-Fi 🛜
Depending on your device, the procedure to connect to the Wi-Fi varies. Refer to the corre
If your device is not presented and you wish that we add it to the list, please reach out to support@dgnum.eu
🪟 Windows
Click on the Wi-Fi network and enter your username and password. Then, accept the certificate.
If you don’t like TOFU 🫓 (Trust On First Use), you can ask us the certificate by sending an email to support@dgnum.eu
🍎 macOS, iOS and iPadOS
Download the connection profile on your DGNum profile page.
The profile will contain your password, remember to delete the file once the Wi-Fi is configured.
Then go to the System Settings app. Click on the Downloaded Profiles tab, which should have appeared.
If the tab is not showing, you can type Device management in the search bar.
Double-click on the Wi-Fi DGnum profile, then on the install button on the bottom left. Select Install, then Install again.
At this point, you may be prompted for your password, which you can find on your DGNum profile page.
Finally, you will need to enter your administrator password in the prompt, to confirm the creation of the profile. If everything goes accordingly, you can go back to the Wi-Fi menu of System Settings and select DGNum as the network.
🤖 Android
Connect to the network using the parameters in the picture below. The picture is in French and your settings may look a bit different depending on the theme and Android version but you should find the same settings.
écran de connexion sous Android
You need to replace jdoe by your username and use the password defined on your DGNum profile
🐧 Linux
There are basically as many interfaces of Wi-Fi configuration as Linux distributions. We document the main ones here. If you wish to add yours, contact us at support.dgnum.eu.
GNOME (Ubuntu and others)
Connection settings are indicated on the picture below. Under Ubuntu, GNOME knows how to find certificates. Under other GNU/Linux distributions, you may need to indicate the path to the certificate bundle. Usually, they’re in the /etc/ssl directory.
GNOME connection interface (using Network Manager)
You must replacejdoe by your username and use the password generated on your DGNum profile
KDE
Todo
NetworkManager
Here is the configuration file for NetworkManager, to copy in /etc/NetworkManager/system-connections/DGNum.nmconnection.
[connection]
id=DGNum
uuid=bd13b9f8-29f6-4f87-93b8-e1afb2cbcb9e
type=wifi
[wifi]
mode=infrastructure
ssid=DGNum
[wifi-security]
key-mgmt=wpa-eap
[802-1x]
anonymous-identity=anonymous
ca-cert=<CHEMIN_VERS_LES_CERTIFICATS_DU_SYSTEME>
domain-match=radius.dgnum.eu
eap=peap;
identity=<NOM_D_UTILISATEUR>
password=<MOT_DE_PASSE>
phase2-auth=mschapv2
[ipv4]
method=auto
[ipv6]
addr-gen-mode=default
method=autochmod 600 the file for the connection to work.
❄️ NixOS
What would be the DGNum if we didn’t offer a NixOS configuration file? Here it is!
{ pkgs, ... }:
{
networking.networkmanager.ensureProfiles = {
profiles = {
"DGNum" = {
connection = {
id = "DGNum";
type = "wifi";
};
wifi = {
mode = "infrastructure";
ssid = "DGNum";
};
wifi-security = {
key-mgmt = "wpa-eap";
};
"802-1x" = {
anonymous-identity = "anonymous";
eap = "peap";
identity = "Nixos_power_user_id";
password = "38C3";
phase2-auth = "mschapv2";
domain-match = "radius.dgnum.eu";
ca-cert = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
};
ipv4 = {
method = "auto";
};
ipv6 = {
addr-gen-mode = "default";
method = "auto";
};
};
};
secrets.entries = [
{
matchId = "DGNum";
matchType = "wifi";
key = "802-1x.password";
file = /root/dgnum_password_file;
}
];
};
}3. Enjoy, you’re connected to the Wi-FI!
In case of problems:
You can read the FAQ here. If you don’t find your answer, contact support@dgnum.eu.