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

From GhostBSD Wiki
Jump to: navigation, search
(Created page with "Şifresiz WiFi ağlarına bağlanmak için aşağıdaki kodu ''/etc/wpa_supplicant.conf'' dosyasına ekleyiniz. <pre> network={ ssid="WLAN_6EF1" bssid=00:13:f...")
 
(No difference)

Latest revision as of 21:38, 21 September 2018

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Şifresiz WiFi ağlarına bağlanmak için aşağıdaki kodu  ''/etc/wpa_supplicant.conf'' dosyasına ekleyiniz.
<pre>
network={
       ssid="WLAN_6EF1"
       bssid=00:13:f7:c4:6e:f3
       key_mgmt=NONE
}
</pre>
Şifreli WiFi ağlarına bağlanmak için aşağıdaki kodu ''/etc/wpa_supplicant.conf'' dosyasına ekleyiniz.
<pre>
network={
       ssid="BSDHacking"
       bssid=5c:d9:98:69:df:2e
       key_mgmt=WPA-PSK
       proto=WPA
       psk="yourpasword"
}
</pre>
Detayli bilgi için [http://www.freebsd.org/doc/handbook/network-wireless.html Kablosuz Ağlar] bölümüne gözatınız.

Şifresiz WiFi ağlarına bağlanmak için aşağıdaki kodu /etc/wpa_supplicant.conf dosyasına ekleyiniz.

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

Şifreli WiFi ağlarına bağlanmak için aşağıdaki kodu /etc/wpa_supplicant.conf dosyasına ekleyiniz.

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

Detayli bilgi için Kablosuz Ağlar bölümüne gözatınız.