-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConnexion auto Raspberrypi au Modem
58 lines (41 loc) · 1.18 KB
/
Connexion auto Raspberrypi au Modem
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
For auto connect Raspberry pi to 4G Modem
si ce n'est pas deja fait:
sudo apt update
sudo apt install network-manager
desactiver dhcpd:
sudo systemctl stop dhcpcd
sudo systemctl disable dhcpcd
Activer NetworkManager:
sudo systemctl enable NetworkManager
sudo systemctl start NetworkManager
sudo systemctl status NetworkManager
lister les wifi enegistrer pour connexion automatique :
ls /etc/NetworkManager/system-connections/
cmd pour ajouter une connexion:
nmcli device wifi connect "Nom_de_votre_WiFi" password "Mot_de_passe_du_WiFi"
Puis activer connexion automatique:
nmcli connection modify "Nom_de_votre_WiFi" connection.autoconnect yes
Vous pouvez acceder a ce fichier depuis le dossier:
nmcli connection modify "Nom_de_votre_WiFi" connection.autoconnect yes
Exemple de fichier:
[connection]
id=preconfigured
uuid=49cfeeaf-fce2-4937-a9dc-ae550346e2f4
type=wifi
[wifi]
mode=infrastructure
ssid='Nom_de_votre_WiFi'
hidden=false
[ipv4]
method=auto
[ipv6]
addr-gen-mode=default
method=auto
[proxy]
[wifi-security]
key-mgmt=wpa-psk
psk='Wifi Password'
redémarrer les services réseau avec la commande suivante :
sudo systemctl restart networking.service
checker la connexion:
ifconfig