Kullanıcı Aletleri

Site Aletleri


tr:cs:op:bsd:wifi

Farklar

Bu sayfanın seçili sürümü ile mevcut sürümü arasındaki farkları gösterir.

Karşılaştırma görünümüne bağlantı

tr:cs:op:bsd:wifi [2025/05/04 17:34] – oluşturuldu ulascemhtr:cs:op:bsd:wifi [2025/05/04 17:36] (mevcut) ulascemh
Satır 1: Satır 1:
-====== FreeBSD Wifi Ayarları ======+====== FreeBSD Wifi Settings ======
  
 Bu yazımda FreeBSD ortamında GUI olmadan nasıl wifi adaptörü ayarlamaları yapılır ondan bahsedeceğim. Bu yazımda FreeBSD ortamında GUI olmadan nasıl wifi adaptörü ayarlamaları yapılır ondan bahsedeceğim.
  
-====== Sistem wifi kartını görüyor mu? ======+====== Does the system see the wifi card? ======
  
-İlk olarak öğrenmemiz gereken sistem wifi kartını kullanabiliyor mu?+The first thing we need to find out is if the system can use the wifi card.
  
-10 ve üzeri versiyonlarda ifconfig komutu artık wifi kartlarının bilgilerini göstermeyebilirBu yüzden aşağıdaki komutu kullanabilirsiniz.+In version 10 and above, the ifconfig command may no longer show the information of the wifi cardsSo you can use the following command.
  
 <code bash> <code bash>
Satır 13: Satır 13:
 </code> </code>
  
-Komutu girdikten sonra kart tipine göre bir bilgi verecektirBenim sistemimde verdiği dönüt aşağıdaki gibi;+After entering the command, it will give information according to the card typeIn my system the feedback is as follows;
  
 <code bash> <code bash>
Satır 19: Satır 19:
 </code> </code>
  
-Burdan anlamaktayım ki benim intel kartım **iwn0** kodundaki cihaz olarak gözükmekte sizde atheros bir kart varsa ath0 olabilirYazının devamında ben ''iwn0'' kullanacağım sizde değer farklı ise onu kullanacaksınız.+I understand from this that my intel card appears as a device with the code **iwn0**, and if you have an atheros card, it may be ath0. In the rest of the article, I will use ''iwn0'' and you will use it if the value is different.
  
-Çoğu wifi kartı varsayılan olarak boot esnasında devreye girmezBunu biz sağlayacağızBunun için kartın **man** yazısına bakmamız yeterli olacaktır+Most wifi cards are not enabled by default during boot. We will provide thisFor this we just need to look at the **man** of the card
  
 <code bash> <code bash>
Satır 27: Satır 27:
 </code> </code>
  
-Intel IEEE 802.11n wireless network driver manuel yazısındaaşağıdakileri ''/boot/loader.conf'''a girmem gerektiğini söylemekte.+In the Intel IEEE 802.11n wireless network driver manualit says I need to enter the following in ''/boot/loader.conf''.
  
-benim durumum için şu kodları eklememi önermekte.+in my case it suggests that I add the following codes.
  
 <code bash> <code bash>
Satır 48: Satır 48:
 </code> </code>
  
-Daha sonra cihazı oluşturmamız gerekmekte.+Then we need to create the device.
  
 <code bash> <code bash>
Satır 54: Satır 54:
 </code> </code>
  
-Bunun her açılışta otomatik olması için ''/etc/rc.conf'' içerisine aşağıdaki kodları ekliyoruz.+For this to happen automatically on every startup, we add the following codes in ''/etc/rc.conf''.
  
 <code bash> <code bash>
Satır 60: Satır 60:
 </code> </code>
  
-Daha sonra artık etraftaki wifilere bağlanabiliriz.+Then we can connect to the wifis around us.
  
-Aşağıdaki komut ile etraftaki wifileri tarıyoruz.+We scan the wifis around with the following command.
  
 <code bash> <code bash>
Satır 68: Satır 68:
 </code> </code>
  
 +Now that we know the name of the wifi network we want to connect to, let's connect.
  
- +You can connect to old type insecure wifi networks with the following commandHere the wifi network should not have password.
- +
-Bağlanmak istediğimiz wifi ağının adını öğrendikten öğrendik. Şimdi bağlanalım. +
- +
-Eski tip güvensiz wifi ağlarına aşağıdaki komut ile bağlanabilirsiziBurada wifi ağının şifresi olmaması gerekmekte.+
  
 <code bash> <code bash>
Satır 79: Satır 76:
 </code> </code>
  
-Günümüzde sıkça kullanılan **WPA/WPA2/Personal** ağlara bağlanmak için ise aşağıdaki işlemleri yapmamız gerekmekte.+To connect to **WPA/WPA2/Personal** networks, which are frequently used today, we need to do the following.
  
-İlk olarak aşağıdaki komut ile **/etc/** içerisinde wifi ağımızın bilgilerini tutacak dosyamızı oluşturuyoruz.+First, with the following command, we create file in **/etc/** that will hold the information of our wifi network.
  
 <code bash> <code bash>
Satır 87: Satır 84:
 </code> </code>
  
-Daha sonra bu dosyanın içerisine aşağıdaki bilgileri yazmamız gerekmekteEğer wifi adresi gizli bir adres ise ''scan_ssid=1'' satırını eklememiz gerekmekte.+Then we need to write the following information in this fileIf the wifi address is a hidden address, we need to add the line ''scan_ssid=1''.
  
-Ancak genel ev kullanımlarında gizli wifi olmadığından eklemenize gerek yok.+But you don't need to add it for general home use as there is no hidden wifi.
  
 <code bash> <code bash>
Satır 99: Satır 96:
 </code> </code>
  
-Daha sorna DHCP çalıştırmak için aşağıdaki komutu kullanacağız.+Then we will use the following command to run DHCP.
  
 <code bash> <code bash>
Satır 105: Satır 102:
 </code> </code>
  
-Bunun otomatik olması için aşağıdaki kodu ''/etc/rc.conf'' içerisine eklememiz gerekmekte.+For this to be automatic, we need to add the following code in ''/etc/rc.conf''.
  
 <code bash> <code bash>
Satır 111: Satır 108:
 </code> </code>
  
-Daha sonra aşağıdaki komutla netif'i yeniden başlatıyoruz.+Then we restart netif with the following command.
  
 <code bash> <code bash>
Satır 118: Satır 115:
  
  
-Artık wifi operatif halde olmalıdır.+The wifi should now be operational.
  
-<wrap onlyprint>[[tr:cs:op:bsd:wifi|UCH Viki]]'den alınmıştır.</wrap>+<wrap onlyprint>Taken from [[en:cs:op:bsd:wifi|UCH Wiki]].</wrap>
 <wrap hide> <wrap hide>
-https://wiki.ulascemh.com/doku.php?id=tr:cs:op:bsd:wifi+https://wiki.ulascemh.com/doku.php?id=en:cs:op:bsd:wifi
 </wrap> </wrap>
tr/cs/op/bsd/wifi.1746380053.txt.gz · Son değiştirilme: 2025/05/04 17:34 Değiştiren: ulascemh