Network & Protocols
  • Introduction
  • Chapter1: protocol for industrial
    • 1.1.modbus
  • Chapter2: Protocol for IOT
    • 2.1.MQTT
      • 2.1.1.Introduction: What is MQTT?
      • 2.1.2.Install mosquitto on Windows 7
      • 2.1.3.Install M2Mqtt by Nuget, Example code
  • Chapter3: Protocol for network
    • 3.1.網路模型與協定
    • 3.2.HTTP
      • 3.2.1.Basic concept
      • 3.2.2.Session & Cookie
    • 3.3.TCP/IP
    • 3.4.UDP
    • 3.5.子網路(subnet)
    • 3.6.子網路間的通訊
    • 3.7.路由
  • Chapter4: Protocol for Wireless network
    • 4.1.BLE, IBeacon
  • Chapter5: Cellular and Wifi
    • 5.1.Cellular module
      • 5.1.1.AT Command
      • 5.1.2.各家常用模組
        • 5.1.2.1.Cinterion
          • 5.1.2.1.1.PLS8-E
          • 5.1.2.1.2.PLS8-X
          • 5.1.2.1.3.PLS8-US
        • 5.1.2.2.Sierra
          • 5.1.2.2.1.MC-7354
        • 5.1.2.3.Telit
          • 5.1.2.3.1.LE910-EUG
          • 5.1.2.3.2.LE910-NAG
      • 5.1.3.用儀器測試Throughput
    • 5.2.MBIM for Windows
    • 5.3.Wireshark
      • 5.3.1.Capture filter
      • 5.3.2.Cli command
      • 5.3.3.Monitor mode
      • 5.3.4.Work with ssh
    • 5.4.LTE
      • 5.4.1.Introduction
      • 5.4.2.Types of networks
      • 5.4.3.Elements of access and core networks
      • 5.4.4.What's LTE different?
      • 5.4.5.LTE訊息傳輸
      • 5.4.6.3GPP (Generation Partnership Project)
      • 5.4.7.FDD, TDD, Half Duplex FDD
      • 5.4.8.Beared Types
Powered by GitBook
On this page

Was this helpful?

  1. Chapter5: Cellular and Wifi
  2. 5.1.Cellular module
  3. 5.1.2.各家常用模組
  4. 5.1.2.1.Cinterion

5.1.2.1.1.PLS8-E

  • 1.規格

    • Penta Band LTE: 800/900/1800/2100/2600 MHz;

    • FDD-Band (20,8,3,7,1);

    • Tri Band UMTS (WCDMA): 900/1800/2100 MHz; FDD-Band (8,3,1);

    • Dual Band GSM/GPRS/EDGE: 900/1800 MHz

  • 操作

    • 1.切band到all band

         AT^SCFG="Radio/Band","2928787"
    • 2.用AT command撥號

      • 1.Open a serial connection

             /dev/ttyACM0
      • 2.Make sure you are registered to the network:

             AT+COPS?
      • 3.To employ GPRS, attach to the network:

             AT+CGATT=1
      • 4.Create an IP connection:

             AT+CGDCONT=1,"IP","internet"
             // internet shall be indicated as APN
      • 5.Activate the configured WWAN IP connection:

             AT^SWWAN=1,1
      • 6.Wait for the IP connection to be established by reading dynamic parameters:

             AT+CGCONTRDP=1
      • 7.Now the following two steps will have to be executed quickly. If taking longer than about ten seconds, the IP interface connection times out and will have to be activated again (from step 6)

      • 8.Manually ask the module's DHCP server for an IP address:

                 #dhclient usb0
      • 9.Test your internet connection (for example, using Ping)

Previous5.1.2.1.CinterionNext5.1.2.1.2.PLS8-X

Last updated 5 years ago

Was this helpful?