Skip to content

danielkza/android-tether

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Android USB tethering

Files

  • tether - script to start USB tethering
  • 49-android.rules - udev rule to start tethering on device hotplug
  • tether.service - systemd service launched by udev
  • tether.link - networkd link configuration
  • tether.network - networkd interface configuration

Usage

  • Install Android SDK and set path to adb binary in tether script.

  • Attach your Android device.

  • Get major and minor of your device with lsusb command:

      $ lsusb | grep HTC
      Bus 001 Device 088: ID 0bb4:0004 HTC (High Tech Computer Corp.)
    
  • Get product attribute for your device:

      $ udevadm info -a -p $(udevadm info -q path -n /dev/bus/usb/001/088) | grep ATTR{product}
          ATTR{product}=="ZP900S"
    
  • Set product attribute in 49-android.rules.

  • Configure DNS.

    You can get DNS servers used by your device with:

      $ adb shell getprop net.dns{1-4}
    

    Alternatively, use public DNS servers:

      $ cat >> tether.network <<EOF
      # Google Public DNS
      DNS 8.8.8.8
      DNS 8.8.4.4
      EOF
    
  • Install script, systemd service and udev rules:

      $ sudo make install
    
  • Use networkd DNS configuration:

      # rm -f /etc/resolv.conf
      # ln -s ../run/systemd/network/resolv.conf /etc/resolv.conf
    
  • Re-attach device.

  • Internet should work now.

Related work

About

Autostart Android USB tethering with udev + systemd + adb

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published