« Wifi » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
(Une version intermédiaire par le même utilisateur non affichée) | |||
Ligne 1 : | Ligne 1 : | ||
[[Category:Systèmes]] | [[Category:Systèmes]] | ||
https://forum.ubuntu-fr.org/viewtopic.php?id=2011439 | |||
chris@ordi:~$ dmesg | grep rtl | |||
[ 6.312684] rtl8192ee: Using firmware rtlwifi/rtl8192eefw.bin | |||
[ 6.318298] ieee80211 phy0: Selected rate control algorithm 'rtl_rc' | |||
[ 6.318468] rtlwifi: rtlwifi: wireless switch is on | |||
[ 6.352737] rtl8192ee 0000:23:00.0 wlp35s0: renamed from wlan0 | |||
chris@ordi:~$ nmcli dev wifi | |||
* SSID MODE CHAN DÉBIT SIGNAL BARS SÉCURITÉ | |||
FreeWifi_secure Infra 11 54 Mo/s 100 ▂▄▆█ WPA1 802.1X | |||
freeboxsasa Infra 11 54 Mo/s 100 ▂▄▆█ WPA1 | |||
FreeWifi Infra 11 54 Mo/s 100 ▂▄▆█ -- | |||
SFR-d158_2GEXT Infra 11 54 Mo/s 100 ▂▄▆█ WPA1 WPA2 | |||
SFR-d158 Infra 11 54 Mo/s 67 ▂▄▆_ WPA2 | |||
sudo -i | |||
echo "options rtl8192ee swenc=1" > /etc/modprobe.d/rtl8192ee.conf | |||
exit | |||
https://askubuntu.com/questions/526214/how-to-set-parameters-for-realtek-wifi-rtl8723 | |||
sudo systool -a -v -m rtl8723be | grep -A8 "Parameters:" | |||
sudo nano /etc/modprobe.d/rtl8723be.conf | |||
options rtl8723be debug=1 | |||
options rtl8723be disable_watchdog=N | |||
options rtl8723be fwlps=Y | |||
options rtl8723be ips=Y | |||
options rtl8723be msi=N | |||
options rtl8723be swenc=N | |||
options rtl8723be swlps=N | |||
https://askubuntu.com/questions/1028547/rtl8192ee-wifi-not-working | |||
https://forum.siduction.org/index.php?topic=5555.0 | |||
# inxi -v5 | |||
# systemctl --failed --no-pager | |||
# ifconfig | |||
<hr> | |||
iwconfig <iface> essid livois | iwconfig <iface> essid livois | ||
Ligne 54 : | Ligne 91 : | ||
{{copy|2007-2018|Christophe de Livois|FDL}} | {{copy|2007-2018|Christophe de Livois|FDL}} |
Version actuelle datée du 2 juin 2018 à 15:58
https://forum.ubuntu-fr.org/viewtopic.php?id=2011439
chris@ordi:~$ dmesg | grep rtl [ 6.312684] rtl8192ee: Using firmware rtlwifi/rtl8192eefw.bin [ 6.318298] ieee80211 phy0: Selected rate control algorithm 'rtl_rc' [ 6.318468] rtlwifi: rtlwifi: wireless switch is on [ 6.352737] rtl8192ee 0000:23:00.0 wlp35s0: renamed from wlan0
chris@ordi:~$ nmcli dev wifi
- SSID MODE CHAN DÉBIT SIGNAL BARS SÉCURITÉ
FreeWifi_secure Infra 11 54 Mo/s 100 ▂▄▆█ WPA1 802.1X freeboxsasa Infra 11 54 Mo/s 100 ▂▄▆█ WPA1 FreeWifi Infra 11 54 Mo/s 100 ▂▄▆█ -- SFR-d158_2GEXT Infra 11 54 Mo/s 100 ▂▄▆█ WPA1 WPA2 SFR-d158 Infra 11 54 Mo/s 67 ▂▄▆_ WPA2
sudo -i
echo "options rtl8192ee swenc=1" > /etc/modprobe.d/rtl8192ee.conf
exit
https://askubuntu.com/questions/526214/how-to-set-parameters-for-realtek-wifi-rtl8723
sudo systool -a -v -m rtl8723be | grep -A8 "Parameters:"
sudo nano /etc/modprobe.d/rtl8723be.conf
options rtl8723be debug=1 options rtl8723be disable_watchdog=N options rtl8723be fwlps=Y options rtl8723be ips=Y options rtl8723be msi=N options rtl8723be swenc=N options rtl8723be swlps=N
https://askubuntu.com/questions/1028547/rtl8192ee-wifi-not-working
https://forum.siduction.org/index.php?topic=5555.0
- inxi -v5
- systemctl --failed --no-pager
- ifconfig
iwconfig <iface> essid livois iwconfig <iface> mode ad-hoc iwconfig <iface> channel 10
ifconfig <iface> 192.168.xxx.xxx
iwlist <iface> scan iwlist <iface> channel
From the README.Debian script that comes with wireless-tools: /etc/network/interfaces
You can now add extra statements to the iface sections of the files in /etc/network/interfaces that are specific for wireless interfaces. They are of the form:
wireless-<function> <value>
Before the interface is brought up, such a statement will result in the execution of the following command:
iwconfig <interface> <function> <value>
Example:
<licode> iface eth0 inet static
address 192.168.1.2 network 192.168.1.0 netmask 255.255.255.0 broadcast 192.168.1.255 wireless-essid livois wireless-mode ad-hoc | managed
</licode>
The current Debian script support all arguments present in wireless.opts apart from Nickname. You can check this in the script /etc/network/if-pre-up.d/wireless-tool. You will need of course to install the Wireless Tools package if it's not already done, which is part of the standard package list (use dselect, dpkg, apt or anything you like to get it).
Copyright
© 2007-2018 Christophe de Livois
Vous avez l'autorisation de copier, distribuer et/ou modifier ce document suivant les termes de la GNU Free Documentation License, Version 1.2 ou n'importe quelle version ultérieure publiée par la Free Software Foundation; sans section invariante, sans page de garde, sans entête et sans page finale. Pour plus d'informations consulter le site de l'APRIL. |