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

From GhostBSD Wiki
Jump to: navigation, search
(Created page with "暗号化されていないWiFiネットワークにアクセスするためには、"/etc/wpa_supplicant.conf"に <pre> network={ ssid="WLAN_6EF1" bssid=00:13...")
 
(No difference)

Latest revision as of 08:30, 12 February 2020

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 Wireless Networking]で参照できます。

暗号化されていない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"
}

を書き加えてください。より詳しい情報は、Wireless Networkingで参照できます。