Como ativar / desativar a banda larga móvel do terminal?


8

Eu uso o ZTE USB Modem em Natty Narwhal. Tudo funciona bem, mas às vezes é desconectado. Quero escrever um script do Shell que reconecte a banda larga móvel se ele estiver desconectado ou se os dados recebidos tiverem menos de 20 KB após 5 segundos de conexão.

Então, minha pergunta é como ativar / desativar a banda larga móvel? Como verificar os dados recebidos? e como ativar / desativar o serviço de rede?

nota: apenas comandos do terminal Ou, se você puder escrever um script, ficarei muito agradecido.

Respostas:


8

Abra a janela do terminal e digite:

sudo gedit /etc/init.d/mobile-broadband-connect

Em seguida, copie e cole este (Altere para suas necessidades):

Nota: Substitua <Your Mobile Broadband Connection Name Here>por o nome da sua conexão.

#!/bin/bash

case "$1" in
start)
      echo "Starting Mobile Broadband Connection."
      while true; do
        # testing...to see if gsm is on the list of active devices
        LC_ALL=C nmcli -t -f TYPE,STATE dev | grep -q "^gsm:disconnected$"
        if [ $? -eq 0 ]; then
            break
        else
         # not connected, sleeping for a second
            sleep 1
        fi
      done
      # now once GSM modem shows up, run these commands
      nmcli -t nm wwan on
      nmcli -t con up id <Your Mobile Broadband Connection Name Here>
;;
stop)
      echo "Stopping Mobile Broadband Connection."
      nmcli -t con down id <Your Mobile Broadband Connection Name Here>
      nmcli -t nm wwan off
;;
status)
      # Check to see if the process is running with Network Manager dev status
      nmcli -p dev
;;

*)
      echo "Mobile Broadband Startup Service"
      echo $"Usage: $0 {start|stop|status}"
      exit 1
esac
exit 0

Altere as permissões deste arquivo para execução:

sudo chmod +x /etc/init.d/mobile-broadband-connect

Para executar este script tem um serviço, faça:

sudo update-rc.d mobile-broadband-connect defaults

O script é registrado como um serviço de inicialização do sistema, para que você possa iniciar, parar ou verificar o status do script com:

sudo service mobile-broadband-connect start

sudo service mobile-broadband-connect stop

sudo service mobile-broadband-connect status

Reinicie para concluir a instalação e conectar automaticamente.

  • Reinicie seu sistema para concluir a instalação.
  • Após a reinicialização, leva até 60 segundos para que o dispositivo USB esteja ativo.
  • Quando ativo - A conexão de banda larga móvel será ativada e conectada automaticamente.

Feito ...


leva uma eternidade para desligar após a instalação deste serviço. Quero dizer, ele não é desligado quando eu desligo meu laptop. Ele ficou no logotipo do ubuntu. Eu tentei sudo rm /etc/init.d/mobile-broadband-connect && sudo update-rc.d mobile-broadband-connect removee removi este serviço. Então tudo correu bem. Como me livro disto?
Rahul Virpara

Não coloque isso como um serviço. Inicie manualmente.
Octávio Filipe Gonçalves

se eu iniciá-lo manualmente, ele continuará sendo executado em segundo plano e se conectará se a banda larga móvel estiver desconectada?
Rahul Virpara

2

Eu criei um script de shell da seguinte maneira e coloquei Startup Applicationse funciona como um encanto! Estou feliz com isso, mas se você puder melhorar, ficarei muito agradecido.

#!/bin/bash

while true; do
    LC_ALL=C nmcli -t -f TYPE,STATE dev | grep -q "^gsm:disconnected$"
    if [ $? -eq 0 ]; then
        #jdownloader is still in the download status so stop it because
        #internet is disconnected and jdownloader won't resume download 
        #when connected again
        #jdownloader --stop-download
        #sometimes I can not get connected after disconnection when 
        #I click on <name of the network connection>. I have to disable
        #and enable Mobile Broadband
        nmcli -t nm wwan off
        sleep 1
        nmcli -t nm wwan on
        sleep 1
        nmcli -t con up id "Tata Docomo Internet"
        #wait approximately 15 sec to get connected
        #if anyone can add better command to check for it just comment it :-p 
        sleep 15
        #now connected to internet so start download
        #jdownloader --start-download
    fi
    #it does not worth keep it checking every millisecond.
    #my connection will be reestablished within 5-15 seconds
    sleep 2
    #if anyone can code it better please feel free to comment
    #TO-DO:: check for data received. if data < 15 KB after 20 seconds of connection
    #reconnect mobile broadband connection  
done

1
#!/bin/sh 
echo "Starting Mobile Broadband Connection. Tej"
      while true; do
        # testing...to see if gsm is on the list of active devices
        LC_ALL=C nmcli -t -f TYPE,STATE dev | grep -q "^gsm:disconnected$"
        if [ $? -eq 0 ]; then
            break
        else
         # not connected, sleeping for a second
            sleep 1
        fi
      done
      # now once GSM modem shows up, run these commands

  while true; do
  # Enable Mobile Broadband
nmcli -t nm wwan on

  # Connect to network
nmcli -t con up id "BSNL/CellOne New GPRS/3G 1"

  # Check status if connected or not
nmcli -f device,state -t dev | grep ttyACM0 | awk -F':' '{print $2}' | { read status; }

echo $status;

if [$status == "connected"]; then
    break
else
     # not connected, sleeping for a second
    nmcli -t nm wwan off
            sleep 1
 fi
  done
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.