Configurar um adaptador sem fio usb quando hotplugged

2

Eu tenho um pc conectado à internet no eth0 e eu tenho um dongle usb wifi: eu consegui configurá-lo como um hotspot ao qual eu posso conectar meus dispositivos móveis para que eu possa compartilhar a conexão de internet do pc.

Para isso, eu escrevi dois scripts: ap-on para ativar o AP e ap-off para desativá-lo e eles funcionam bem. (Vou incluí-los no final da mensagem, para referência).

O que eu gostaria é que eles sejam acionados automaticamente quando eu inserir a chave usb. Então eu escrevi uma regra do udev que se parece com

SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:13:46:78:c5:4e", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan2", RUN+="/usr/local/bin/ap-on > /dev/null 2>&1"

O que acontece é que ap-on é iniciado no hotplug, mas o dispositivo wlan2 não é configurado corretamente: com ifconfig recebo

wlan2     Link encap:Ethernet  IndirizzoHW 00:13:46:78:c5:4e  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisioni:0 txqueuelen:1000 
          Byte RX:0 (0.0 B)  Byte TX:0 (0.0 B)

Considerando que quando eu inicio manualmente eu recebo

mon.wlan2 Link encap:UNSPEC  IndirizzoHW 00-13-46-78-C5-4E-3A-30-00-00-00-00-00-00-00-00  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisioni:0 txqueuelen:1000 
          Byte RX:0 (0.0 B)  Byte TX:0 (0.0 B)

wlan2     Link encap:Ethernet  IndirizzoHW 00:13:46:78:c5:4e  
          indirizzo inet:192.168.23.1  Bcast:192.168.23.255  Maschera:255.255.255.0
          indirizzo inet6: fe80::213:46ff:fe78:c54e/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:43 errors:0 dropped:0 overruns:0 carrier:0
          collisioni:0 txqueuelen:1000 
          Byte RX:0 (0.0 B)  Byte TX:7751 (7.7 KB)

Por que isso acontece?

Segunda pergunta: como devo alterar a regra para ter ap-off ativado quando removo a chave usb?

Aqui está o ap-on :

#!/bin/bash

# Config files  
hotspotconfig="/etc/hostapd/my-ap-hotspot.conf"
dhcpdconfig="/etc/dhcp/my-dhcpd-hotspot.conf"

# Network interface to the internet
NETnic=eth0
# Wireless network interface for the access point
APnic=wlan2
# Write the hostapd config file
cat <<EOF | tee "$hotspotconfig" > /dev/null 2>&1
interface=$APnic
driver=nl80211
ssid=hotspot-$APnic
hw_mode=g
channel=2
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=3
wpa_passphrase=bhu87ygv
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
EOF
# Write the dhcpd config file
cat <<EOF | tee "$dhcpdconfig" > /dev/null 2>&1
default-lease-time 86400;
max-lease-time 864000;

subnet 192.168.23.0 netmask 255.255.255.0 {
  range 192.168.23.20 192.168.23.25;
  option domain-name-servers 8.8.8.8;
  option routers 192.168.23.1;
  option broadcast-address 192.168.23.255;
}
EOF

#set IP address
ifconfig $APnic 192.168.23.1
## start hostapd
hostapd -d $hotspotconfig > /var/log/hostapd.log &
sleep 2

# launch dhcpd daemon
dhcpd -cf $dhcpdconfig $APnic 
sleep 2

# set kernel variable(s)
echo "1" > /proc/sys/net/ipv4/ip_forward
echo "1" > /proc/sys/net/ipv4/conf/all/forwarding
echo "1" > /proc/sys/net/ipv6/conf/default/forwarding

# create iptables rules
iptables -t nat -A POSTROUTING -s 192.168.23.0/24 -o $NETnic -j MASQUERADE

exit 0

e aqui está ap-off

#!/bin/bash

# Config files  
hotspotconfig="/etc/hostapd/my-ap-hotspot.conf"
dhcpdconfig="/etc/dhcp/my-dhcpd-hotspot.conf"

# Network interface to the internet
NETnic=eth0
# Wireless network interface for the access point
APnic=wlan2

# stop hostapd and dhcpd
killall  hostapd 
killall  dhcpd

# remove iptables rules
iptables -t nat -F 

# set kernel variable(s)
echo "0" > /proc/sys/net/ipv4/ip_forward
echo "0" > /proc/sys/net/ipv4/conf/all/forwarding
echo "0" > /proc/sys/net/ipv6/conf/default/forwarding

# unconfig wifi nic
ifconfig $APnic down

# remove config files
rm -f $hotspotconfig
rm -f $dhcpdconfig

exit 0
    
por brad 17.09.2014 / 11:39

0 respostas