Gostaria de iniciar o openvpn (ou interrompê-lo) dependendo da rede sem fio à qual estou conectado.
Mas despejar env
depostar()não indica ${SSID}
estar disponível naquele momento.
Olhar fixamente paranet/wpa_supplicant.shnão parece ajudar, então estou recorrendo à mente coletiva em busca de ajuda.
Responder1
Originalmente, eu pretendia não iniciar o openvpn com base no SSID ao qual estava me conectando. Mas a melhor solução a que cheguei éolha o IP.
/etc/conf.d/net:
postup() {
# https://stackoverflow.com/questions/845694/how-do-i-find-my-computers-ip-address-using-the-bash-shell
IP=$(ifconfig ${IFACE} | sed -n 's/.*inet addr:\([0-9.]\+\)\s.*/\1/p')
OPENVPN=$(if [[ "${IFACE}" != "tun0" && ${IP%.*} != 192.168.[13] ]]; then echo "YES"; fi)
sw-notify-send -i "${ICONS}/network-status.png" "${IFACE}" "$(ip addr show dev ${IFACE} | grep inet)"
if [[ -n ${OPENVPN} ]]; then
sw-notify-send -i "${ICONS}/network-status.png" "${IFACE}" "No IP range conflict detected for ${IP}, starting openvpn"
/etc/init.d/openvpn -D restart
fi
return 0
}
EDITARAinda mais, mudei essa lógica para umdhcpcdgancho. Para que isso funcione, você deve enviar algum valor de opção DHCP exclusivo do seu servidor DHCP especial: estou usando a opção 114 "default_url" aqui.
/etc/dhcpcd.enter-hook:
ACTION="stop"
COMMAND="openvpn.noroutes"
if [ "$reason" = "BOUND" ]; then
if [ ! -z ${new_default_url} ]; then
sw-notify-send $ifname "Detected DHCP default_url $new_default_url, skipping openvpn"
exit 1
fi
OPENVPN=$(if [[ $ifname != "tun0" && ${new_network_number%.*} != 192.168.[13] ]]; then echo "YES"; fi)
if [[ -n $OPENVPN ]]; then
sw-notify-send $ifname "IP range for $new_ip_address is free, starting openvpn"
COMMAND="openvpn"
fi
ACTION="restart"
/etc/init.d/"${COMMAND}" -D "${ACTION}"
fi