web-dev-qa-db-fra.com

Un Intel Wireless 7260 peut-il fonctionner comme point d’accès?

Est-il possible de faire fonctionner un Intel Wireless 7260 (rév. 73) en tant que point d'accès?

Je n'ai rien trouvé d'utile autour. Je suis sur Ubuntu 13.10, et sous /lib/firmware, il y a:

iwlwifi-7260-7.ucode
iwlwifi-7260-8.ucode

Je peux faire tous les changements nécessaires (même en installant une alpha Ubuntu), mais je n'ai aucune idée de ce qui peut être fait.

2
Marcus
2
Marcus

Partage de eth0 avec l'adresse 192.167.1.27/24 et le serveur/routeur DNS 192.167.1.1

Sur le réseau local avec l'adresse 192.168.0.1/24

Tout d'abord, vous devez installer dnsmask et hostapd en tapant terminal: Sudo apt-get install hostapd dnsmask. Après cela, vous devez arrêter ces services en tapant Sudo service hostapd stop et Sudo service dnsmasq stop. Empêchez également leur démarrage au démarrage:

Sudo update-rc.d hostapd disable
Sudo update-rc.d dnsmasq disable

mon /etc/dnsmasq.conf:

server=192.167.1.1
interface=wlan0
bind-interfaces
dhcp-range=192.168.0.50,192.168.0.150,12h

mon hostapd.conf:

interface=wlan0
logger_syslog=-1
logger_syslog_level=2
logger_stdout=-1
logger_stdout_level=2
dump_file=/tmp/hostapd.dump
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0
ssid=dellito
hw_mode=g
channel=1
beacon_int=100
dtim_period=2
max_num_sta=255
rts_threshold=2347
fragm_threshold=2346
macaddr_acl=0
auth_algs=3
ignore_broadcast_ssid=0
wmm_enabled=1
wmm_ac_bk_cwmin=4
wmm_ac_bk_cwmax=10
wmm_ac_bk_aifs=7
wmm_ac_bk_txop_limit=0
wmm_ac_bk_acm=0
wmm_ac_be_aifs=3
wmm_ac_be_cwmin=4
wmm_ac_be_cwmax=10
wmm_ac_be_txop_limit=0
wmm_ac_be_acm=0
wmm_ac_vi_aifs=2
wmm_ac_vi_cwmin=3
wmm_ac_vi_cwmax=4
wmm_ac_vi_txop_limit=94
wmm_ac_vi_acm=0
wmm_ac_vo_aifs=2
wmm_ac_vo_cwmin=2
wmm_ac_vo_cwmax=3
wmm_ac_vo_txop_limit=47
wmm_ac_vo_acm=0
eapol_key_index_workaround=0
eap_server=0
own_ip_addr=127.0.0.1

Début:

ifconfig wlan0 192.168.0.1 up
sysctl net.ipv4.ip_forward=1
service dnsmasq restart
iptables -t  nat -A POSTROUTING -o eth0 -j MASQUERADE
hostapd /etc/hostapd/hostapd.conf

Voir ce qui se passe/problèmes de débogage:

tcpdump -ni wlan0
2
piotr