Teste isso:
Você precisa de pelo menos: Dispositivo PCI ou USB sem fio conectado ao Linux com suporte a / b / g e WPA2 no modo AP, suponha que seja wlan0
e porta Ethernet com fio conectada ao roteador upstream para o acesso à Internet, suponha é eth0
.
Abra um terminal.
Pressione Ctrl + Alt + T
Digite o seguinte comando para instalar o aplicativo:
$ sudo -i
# apt-get update
# apt-get install hostapd bridge-utils
Agora você deve configurá-lo editando seu arquivo / etc / default / hostapd
$ sudo -i
# nano /etc/default/hostapd
Descomente e defina DAEMON_CONF como o caminho absoluto de um arquivo de configuração do hostapd:
DAEMON_CONF="/etc/hostapd/hostapd.conf"
Ctrl + O , salve o arquivo. Ctrl + X , perto do nano.
Agora você precisa criar o arquivo de texto /etc/hostapd/hostapd.conf
sudo -i
nano /etc/hostapd/hostapd.conf
Você deve colocar estas linhas:
# Wireless network name - Set interface name
interface=wlan0
# Bridge name - set your bridge name
bridge=br0
# Driver nane - set driver name
driver=rtl8188eu
# Country name code - set country name code in ISO/IEC 3166-1 format. US = United Stats
country_code=US
# SSID name - set your SSID
ssid=TameHog
# Operation mode - set operation mode a=IEEE 802.11a, b=IEEE 802.11b, g=IEEE 802.11g
hw_mode=g
# Channel number - set channel number
channel=3
# wpa mode - set wpa mode to 2
wpa=2
# wpa-passphrase - set your passphrase
wpa_passphrase=YourWiFiPassword
# Key management algorithms - set key and auth optionsmanagement
wpa_key_mgmt=WPA-PSK
# Set cipher suites - TKIP and CCMP = AES in Counter mode with CBC-MAC
wpa_pairwise=TKIP
rsn_pairwise=CCMP
# Shared Key Authentication
auth_algs=1
# Accept all MAC address
macaddr_acl=0
Ctrl + O , salve o arquivo. Ctrl + X , perto do nano.
Agora você pode configurar o wlan0 no modo independente ou fazer uma ponte com o eth0
$ sudo -i
# nano /etc/network/interfaces
Modifique ou defina a configuração da seguinte forma:
auto lo br0
iface lo inet loopback
# wireless wlan0
allow-hotplug wlan0
iface wlan0 inet manual
# eth0 connected to the ISP router
allow-hotplug eth0
iface eth0 inet manual
# Setup bridge
iface br0 inet static
bridge_ports wlan0 eth0
address 10.160.10.11
netmask 255.255.255.0
network 10.160.10.0
#Isp Router IP, 10.160.10.2 also runs DHCPD
gateway 10.160.10.2
dns-nameservers 10.160.10.2
Ctrl + O , salve o arquivo. Ctrl + X , perto do nano.
Reinicialize e verifique se o firewall não está bloqueando as portas necessárias:
$ sudo -i
# /sbin/iptables -L -n -v | less