USB TETHERING ON RASPBERRY PI
How to connect Raspberry pi using USB tethering on Android
Raspberry pi with its default config cant connect through USB Tethering.
Network interface should be manually enabled.
Open Terminal, enter the following command
- sudo nano /etc/network/interfaces
This will open the interfaces file.
Add the following line to that file,
- iface usb0 inet dhcp
The file after modifying should look like this
Press ctlr + x, Y to Save and Exit.
Enter the following command
- sudo ifup usb0
Then reboot your RPi
- sudo reboot
Connect Rpi to your Android device.
Turn on the USB tethering on the phone.
Tested and working on
- Parrot os
- Kali linux
- Raspbian
How do you find the address of the Raspberry pi?
ReplyDelete“hostname -I” will show the ip address
Delete“hostname -I” will show the ip address
Delete