Answers for "connect my phone to localhost from my pc"

1

connect my phone to localhost from my pc

// Note: This would work only if your computer 
// is connected to your phones wi-fi

// Open your terminal, and run this simple command: 

ipconfig

// You are going to see a whole bunch of stuff, 
// skip them and look for the part with the IP Adresses.
// Something like this: 

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : ed60::b78a:43c:47h1:a96%40
   IPv4 Address. . . . . . . . . . . : 192.172.43.180
   Subnet Mask . . . . . . . . . . . : 125.125.125.0
   Default Gateway . . . . . . . . . : 192.172.43.144
   
// Try any of the the IP Adresses in your phones browser 
// and you 'should' have your page loaded without any hasle.
Posted by: Guest on October-02-2021
-2

how to connect localhost with phone

//Start the local host server
//Open your terminal and type:
ipconfig

//you will find something like this:

Wireless LAN adapter Wi-Fi:

   Connection-specific DNS Suffix  . : *the wifi you are connected to*
   Link-local IPv6 Address . . . . . : fe90::b671:1sde:8a7f:697c%60
   IPv4 Address. . . . . . . . . . . : 178.0.9.580
   Subnet Mask . . . . . . . . . . . : 265.235.250.0
   Default Gateway . . . . . . . . . : 172.0.2.254
   
  //Type the default gateway numbers on your phone's browser then semicolons
  //follwed by port number. e.g 172.0.2.254:300
Posted by: Guest on September-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language