なぜDebianにワイヤレスアクセスポイントを設定できないのですか?

なぜDebianにワイヤレスアクセスポイントを設定できないのですか?

マイワイヤレスアダプタ:

lsusb | rg -i  wireless
Bus 001 Device 005: ID 148f:5370 Ralink Technology, Corp. RT5370 Wireless Adapter

私のネットワークインターフェイスを一覧表示します。

iwconfig
lo        no wireless extensions.

enp6s0    no wireless extensions.

wlx38a28c80c24f  IEEE 802.11  Mode:Master  Tx-Power=20 dBm   
          Retry short  long limit:2   RTS thr:off   Fragment thr:off
          Power Management:off

Hostapdをインストールして構成を設定します。

sudo apt-get install hostapd
sudo vim  /etc/hostapd/hostapd.conf
interface=wlx38a28c80c24f
driver=nl80211
ssid=myap
hw_mode=g
channel=7
macaddr_acl=0
auth_algs=3
ignore_broadcast_ssid=0
wmm_enabled=1
ieee80211n=1
ht_capab=[HT40-][SHORT-GI-20][SHORT-GI-40]
wpa=2
wpa_passphrase=linuxprobe
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP

dnsmasqをインストールして設定を設定します。

sudo apt-get install dnsmasq
sudo vim /etc/dnsmasq.conf
resolv-file=/etc/resolv.dnsmasq.conf
server=/cn/114.114.114.114
server=/taobao.com/114.114.114.114
listen-address=127.0.0.1,192.168.11.1
dhcp-range=192.168.11.50,192.168.11.150,12h
dhcp-option=3,192.168.11.1
dhcp-option=6,192.168.11.1
cache-size=1024
conf-dir=/etc/dnsmasq.d

sudo vim /etc/resolv.dnsmasq.conf
nameserver 114.114.114.114

sudo vim /etc/resolv.conf
nameserver 127.0.0.1

サービスを開始します。

sudo systemctl start dnsmasq.service
sudo systemctl start hostapd.service

myapパスワードを使用して接続しているのにAndroidlinuxprobe携帯電話からアクセスポイントにアクセスできないのはなぜですか?

ベストアンサー1

次のコマンドを実行します。

git clone https://github.com/oblique/create_ap.git
cd create_ap
sudo make install
ifconfig
    enp6s0
    wlx38a28c80c24f
sudo ifconfig wlx38a28c80c24f up 
wlan="wlx38a28c80c24f"
eth="enp6s0"
create_ap $wlan $eth MyAccessPoint MyPassPhrase
sudo systemctl start create_ap

これで、Android携帯電話からcreate_apを介してAP設定に接続できるようになりました。

おすすめ記事