Advertisement
Guest User

Sixfab / Quectel Shield

a guest
Oct 15th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.54 KB | None | 0 0
  1. # Update apt-get
  2. apt-get update
  3.  
  4. # Get rpi update
  5. apt-get install rpi-update
  6.  
  7. # Run rpi-update
  8. rpi-update
  9.  
  10. # Reboot Pi
  11. reboot
  12.  
  13. # If shield is mounted /dev/ttyUSB3 should exist
  14. ls /dev
  15.  
  16. # Get ppp-creator script
  17. wget https://raw.githubusercontent.com/sixfab/rpiShields/master/tutorials/tutorial3/ppp-creator.sh
  18.  
  19. # Make executable
  20. chmod +x ./ppp-creator.sh
  21.  
  22. # Run script with APN paramter (fast.t-mobile.com)
  23. ./ppp-creator.sh fast.t-mobile.com ttyUSB3
  24.  
  25. # Run pppd
  26. pppd call gprs
  27.  
  28. # Check status of shield
  29. ifconfig ppp0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement