Hostapd sem internet no servidor

1

Eu configurei o "hotspot" local na minha máquina rodando Debian Jessie.

Eu segui algumas instruções após as quais nenhum dos tutoriais funcionou para mim. No final, descobri que tinha um espaço em branco (acho) no arquivo interfaces e hostapd.conf que estava impedindo o carregamento. Então, no final, consegui fazê-lo funcionar. Mas desde que eu usei diferentes tutoriais, não tenho certeza se alguns dos softwares que eu instalei podem estar causando isso.

Meu problema agora é que, quando inicializo meu computador, posso me conectar com meu Android e acessar a Internet, mas meu próprio computador não pode acessá-lo. somente se eu modificar interfaces e comentar todas as informações da ponte, então funciona (mas, como você pode imaginar, meu android está inativo)

Então, aqui estão algumas das minhas configurações:

/ etc / network / interfaces

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
iface eth0 inet dhcp

# Setup bridge
iface br0 inet static
    bridge_ports wlan0 eth0
    address 192.168.1.11
    netmask 255.255.255.0
    network 192.168.1.0
    ## isp router ip, 192.168.1.2 also runs DHCPD ##
    gateway 192.168.1.2
    dns-nameservers 192.168.1.2

/etc/hostapd/hostapd.conf

### Wireless network name ###
interface=wlan0
### Set your bridge name ###
bridge=br0
driver=nl80211

### (IN == INDIA, UK == United Kingdom, US == United Stats and so on ) ###
#country_code=IN

ssid=PrettyFlyWiFy

hw_mode=g

channel=6

wpa=2
wpa_passphrase=mysuperstrenthypasswordgoesherebutaintgonnawrite it here

## Key management algorithms ##
wpa_key_mgmt=WPA-PSK
## Set cipher suites (encryption algorithms) ##
## TKIP = Temporal Key Integrity Protocol
## 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

e este é o meu ifconfig eth0 quando a internet está no servidor em si

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 172.16.9.146  netmask 255.255.255.0  broadcast 172.16.9.255
        inet6 fe80::beae:c5ff:feb7:90e0  prefixlen 64  scopeid 0x20<link>
        ether bc:ae:c5:b7:90:e0  txqueuelen 1000  (Ethernet)
        RX packets 1315564  bytes 1425606866 (1.3 GiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 682171  bytes 66122362 (63.0 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

e meu /etc/resolv.conf no mesmo cenário

domain ciu.edu.tr
search ciu.edu.tr
nameserver 10.0.0.46
nameserver 10.0.0.9

também é útil notar que o último tutorial que usei foi este um

    
por CBeTJlu4ok 18.10.2015 / 13:27

0 respostas