Servidor de rede hospedado sem fio Netsh 2008 R2 / Windows 7

3

Estou brincando com as novas configurações da Rede Hospedada Sem Fio no netsh e gostaria de saber se é possível criar um ponto de acesso que não precisa ser protegido por senha.

Aqui estão minhas configurações atuais:

Em um shell CMD eu digito isto:
netsh wlan set hostednetwork mode=allow ssid=MatsWiFi key=0123456789

Em seguida, para iniciar o serviço, eu digito isto:% netsh wlan start hostednetwork

Eu gostaria de não ter uma chave de rede?

Se eu configurar o adaptador com o seguinte comando, a rede ainda será mostrada como segura
netsh wlan set hostednetwork mode=allow ssid=YOURFRIENDLYSSID

    
por MatLear 12.10.2011 / 00:35

1 resposta

2

Eu tenho medo, de acordo com o Sobre Rede sem fio hospedada no centro do Microsoft Dev, isso não é possível.

Trecho relevante:

To provide protection for the wireless communications between the computer hosting SoftAP and the devices connecting to the SoftAP, the wireless Hosted Network requires that all devices connected use the WPA2-PSK/AES cipher suite.

Informação adicional:

The shared key is a 63-character value generated by Windows when the wireless Hosted Network is invoked for the first time. This primary key is called the "system security key" in netsh wlan commands.

To allow for ease of use, wireless Hosted Network also supports the concept of a secondary or user security key that is more user-friendly, but could be less secure. This secondary key is called the "user security key" in netsh wlan commands.

The secondary key is not generated by Windows. The user must supply the value for this key. A user or application may set or change the key value by calling the WlanHostedNetworkSetSecondaryKey function or by using the netsh wlan commands. The secondary key can be set to be persistent or temporary. For a temporary key, if the wireless Hosted Network is already running, the secondary key will be valid until the wireless Hosted Network stops. For a temporary key, if the wireless Hosted Network is not running, it will be valid only between the next wireless Hosted Network start and stop.

    
por 11.03.2012 / 02:49