Conectando uma webcam sem fio e dongle sem fio

1

Devo criar uma conexão sem fio entre um dongle sem fio USB (Mini Adaptador USB DLink wireless-N DWA-140) e uma webcam sem fio (DLink DCS-932L). Ou seja conexão ponto a ponto sem Internet.

Eu tenho que usar o Linux sem uma GUI (apenas comandos).

O que preciso fazer para que isso funcione?

    
por EMME 25.06.2013 / 11:12

1 resposta

1

Suponho que a configuração da câmera solicitará que você se conecte a um ponto de acesso. Se esse for o caso, configure sua caixa do Linux com o hostapd. O seguinte é o hostapd.conf que uso em casa para um ponto de acesso sem fio:

driver=nl80211  #the driver appropriate for your card
interface=wlan0 #the interface name assigned to your card
bridge=br0      #unless br0 is already used

#802.11n stuff
hw_mode=g       # wireless-g support
ieee80211n=1    # wireless-n on top of wireless-g
wmm_enabled=0   # I disable WMM because it is satan, YMMV
ht_capab=[HT20][SHORT-GI-20][RX-STBC1] #needed for wireless-n, you may want to comment this out to start

## 802.11n EOF


channel=2       #channel
country_code=US #must match your driver I believe


ssid=SkyNet     #use what you want

# this is WPA security, supposed to support just about anything including iOS devices (confirmed)
auth_algs=3
wpa=3
wpa_passphrase=lamaison
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
macaddr_acl=0

# this may provide you with more stats, but might just be better to comment out for starting your project
ctrl_interface=/var/run/hostapd
    
por 25.06.2013 / 22:45