Raspbian
Voici quelques commandes « perso ». Je pose ca la comme ca. Pas d’explications..
Faire de la place :
apt-get autoremove wolfram-engine
Mettre à jour
apt-get update -y && apt-get upgrade -y && unit 6
Désactiver l’extinction de l’écran
Editer le fichier
/boot/cmdline
et ajouter à la fin du texte :
consoleblank=0
Ajouter une carte virtuelle sur une carte réseau existante.
iw dev wlan0 interface add mon0 type monitor
Remplacez « Monitor » par le mode de votre choix.
Empêcher « network manager » de venir embêter votre hostapd: vi NetworkManager/NetworkManager.conf
[keyfile]
unmanaged-devices=mac:<hwaddr>
Créer des cartes réseau wifi virtuelle
iw dev wlan0 interface add wlan0_cli type station
iw dev wlan0 interface add wlan0_ap type __ap
ip link set dev wlan0_sta address 12:34:56:78:ab:cd
ip link set dev wlan0_ap address 12:34:56:78:ab:ce
vi /etc/hostapd/hostapd.conf
ssid=YourWiFiName
wpa_passphrase=Somepassphrase
interface=wlan0_ap
bridge=br0
auth_algs=3
channel=7
driver=nl80211
hw_mode=g
logger_stdout=-1
logger_stdout_level=2
max_num_sta=5
rsn_pairwise=CCMP
wpa=2
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
When starting hostapd, make sure the wireless network interface is brought up first:
ip link set dev wlan0_ap up
Otherwise, it will fail with a nondescript error: « could not configure driver mode ».
For automatically starting hostapd, enable the hostapd.service.
1 commentaire