Posso usar um dongle USB como hotspot WiFi?

1

Eu tenho um desktop sem placa de rede sem fio executando o Windows 7 e um Wifi dongle Reliance Netconnect.

Meu PC tem uma conexão com a Internet por meio de ethernet. Eu quero usar dongle como hotspot Wi-Fi para que eu possa usar a internet no meu telefone Android. É possível? Se sim, então como?

    
por abhishek 22.09.2015 / 12:29

1 resposta

1

Embora eu acredite que isso seja uma duplicata de um grande número de perguntas, não consegui encontrar nenhuma com uma resposta satisfatória.

Então, vou citar este artigo :

Manually create a virtual AP with netsh

If you want to experiment with the wireless Hosted Network feature with text commands, click the Start button, enter “cmd” and hit Enter. Once the Command Prompt window appears, you can enter the following to set the network details:

netsh wlan set hostednetwork mode=allow ssid=YourVirtualNetworkName key=YourNetworkPassword

Of course, replace the SSID and key placeholders with your desired network name and WPA2-PSK encryption key.

Before you enable the Hosted Network, you can configure the real network adapter to share its Internet access using the Internet Connection Sharing (ICS) feature of Windows. This way people connecting to the virtual AP will receive Internet access. You can leave the Command Prompt open so you can start the Hosted Network later.

To enable ICS, navigate through the Control Panel or Network and Sharing Center to bring up the Network Connections window. Then right-click the network adapter that’s connected to the Internet and select Properties. Then select the Sharing tab, check the Allow other network users to connect through this computer’s Internet connection, choose the Hosted Network Connection from the drop-down listbox, and click OK.

Now return to the Command Prompt and enter the following to enable the Hosted Network:

netsh wlan start hostednetwork

To manually turn the Hosted Network off, enter the following:

netsh wlan stop hostednetwork

To see the Hosted Network details (see Figure 3), including the MAC addresses of connected users, enter the following:

netsh wlan show hostednetwork

To change the WPA2-PSK key, you can enter the following:

netsh wlan refresh hostednetwork YourNewNetworkPassword

Now others nearby should see the Hosted Network appear in their list of available wireless networks. They can connect like normal and enter the encryption key when prompted.

Remember, you’ll have to manually start the Hosted Network again, if desired, after rebooting the computer. Most importantly, remember sharing isn’t blocked; make sure you only invite people you trust.

Se bem me lembro, isso não funciona com alguns chipsets WiFi mais antigos, então pode depender do chipset no dongle WiFi. Não deve haver diferença entre uma placa WiFi USB (externa) e uma placa PCI WiFi (interna).

    
por 22.09.2015 / 13:04