Usage Example for Raspberry Pi - Using 4G Module as Network Card

Last revision 2025/12/31

This article guides you through using a 4G module as a network card on a Raspberry Pi, with detailed hardware preparation and operational steps to achieve stable internet connectivity.

Hardware Preparation

Operation Steps

  1. Connect the 5-inch touch screen to the Raspberry Pi with the FPC cable.
  2. Ensure that the SMT PCB nut of the touch screen contacts the ground.
  3. Insert the SIM card into the Air780E module, and connect the Air780E module and keyboard to the Raspberry Pi via USB.
  4. Power on the Raspberry Pi and wait for the screen to display.
  5. Open the Raspberry Pi terminal and use the "lsusb" command to check whether the module's vid and pid are correct:
    lsusb
    
    When correctly connected, the vid and pid are 19d1 and 0001 respectively.
  6. Use the "ifconfig" command to view network interface information:
    ifconfig
    
  7. If the eth0 network card appears, disable it and enable the eth1 network card:
    sudo ifconfig eth0 down
    sudo ifconfig eth1 up
    
  8. Use the "ifconfig" command again to confirm that the eth1 network card is enabled and has the correct IP address:
    ifconfig
    

Wait a moment, the network connection will be successful, and you can surf the Internet normally afterwards.

Was this article helpful?

TOP