Difference between revisions of "Translations:FAQ/76/zh"

From GhostBSD Wiki
Jump to: navigation, search
 
Line 17: Line 17:
 
}
 
}
 
</pre>
 
</pre>
欲获取更多信息,请查阅[http://www.freebsd.org/doc/handbook/network-wireless.html Wireless Networking].
+
欲获取更多信息,请查阅[http://www.freebsd.org/doc/handbook/network-wireless.html 无线网络].

Latest revision as of 03:11, 12 October 2019

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (FAQ)
For a none encrypted WiFi network add the following to the file ''/etc/wpa_supplicant.conf''.
<pre>
network={
       ssid="WLAN_6EF1"
       bssid=00:13:f7:c4:6e:f3
       key_mgmt=NONE
}
</pre>
For an encrypted WiFi network add the following to the file ''/etc/wpa_supplicant.conf''.
<pre>
network={
       ssid="BSDHacking"
       bssid=5c:d9:98:69:df:2e
       key_mgmt=WPA-PSK
       proto=WPA
       psk="yourpassword"
}
</pre>
For more completed documentation see [http://www.freebsd.org/doc/handbook/network-wireless.html Wireless Networking].
Translation未加密的 WiFi 网络,可在''/etc/wpa_supplicant.conf''文件中添加以下内容
<pre>
network={
       ssid="WLAN_6EF1"
       bssid=00:13:f7:c4:6e:f3
       key_mgmt=NONE
}
</pre>
加密 WiFi 网络,可在 ''/etc/wpa_supplicant.conf''文件中添加以下内容
<pre>
network={
       ssid="BSDHacking"
       bssid=5c:d9:98:69:df:2e
       key_mgmt=WPA-PSK
       proto=WPA
       psk="yourpasword"
}
</pre>
欲获取更多信息,请查阅[http://www.freebsd.org/doc/handbook/network-wireless.html 无线网络].

未加密的 WiFi 网络,可在/etc/wpa_supplicant.conf文件中添加以下内容

network={
        ssid="WLAN_6EF1"
        bssid=00:13:f7:c4:6e:f3
        key_mgmt=NONE
}

加密 WiFi 网络,可在 /etc/wpa_supplicant.conf文件中添加以下内容

network={
        ssid="BSDHacking"
        bssid=5c:d9:98:69:df:2e
        key_mgmt=WPA-PSK
        proto=WPA
        psk="yourpasword"
}

欲获取更多信息,请查阅无线网络.