2つのUSBワイヤレスカード、wlan0とwlan1があります。
wlan0はYagiアンテナを使用して遠くのWi-Fiに接続します。 (私たちの家は「文明」との距離が離れているため、オープンオープンWi-Fiを使用しています)
だから私が望むのは、その接続を自分のAndroid携帯電話と共有できることです。 Yagiアンテナを実際にAndroidに接続できないので、インターネットを自分のAndroid携帯に接続できるようにホットスポットを作成したいのですが、まだbe on my Kaliマシンに接続しています。可能ですか?できればどうでしょうか?
ベストアンサー1
まず、必要なドライバをダウンロードしてください。ここ。それから
端末タイプで lspci
usbワイヤレスアダプタタイプコマンドを使用する場合lsusb
apt-get install hostapd dnsmasq
端子タイプ:
sudo service hostapd stop
sudo service dnsmasq stop
sudo update-rc.d hostapd disable
sudo update-rc.d dnsmasq disable
端末タイプでプロファイルを設定します。
gedit /etc/dnsmasq.conf
またはkate /etc/dnsmasq.conf
kdeを使用する場合...
構成ファイルに次の行を追加します。
# Bind to only one interface
bind-interfaces
# Choose interface for binding
interface=wlan0
# Specify range of IP addresses for DHCP leasses
dhcp-range=192.168.150.2,192.168.150.10
端子タイプ:
gedit /etc/hostapd.conf
そしてそれらを追加してください
# Define interface
interface=wlan0
# Select driver
driver=nl80211
# Set access point name
ssid=myhotspot
# Set access point harware mode to 802.11g
hw_mode=g
# Set WIFI channel (can be easily changed)
channel=6
# Enable WPA2 only (1 for WPA, 2 for WPA2, 3 for WPA + WPA2)
wpa=2
wpa_passphrase=mypassword
ここで希望のssid名とパスワードを変更できます。現在の構成では、パスワードがmypasswordのmyhotspotというホットスポットが作成されます。
これで、目的の場所に名前付きファイルを作成します hotspot.sh
(デスクトップにスクリプトを保存するための最良の方法)。次のテキストエディタを使用して編集します。
#!/bin/bash
# Start
# Configure IP address for WLAN
sudo ifconfig wlan0 192.168.150.1
# Start DHCP/DNS server
sudo service dnsmasq restart
# Enable routing
sudo sysctl net.ipv4.ip_forward=1
# Enable NAT
sudo iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
# Run access point daemon
sudo hostapd /etc/hostapd.conf
# Stop
# Disable NAT
sudo iptables -D POSTROUTING -t nat -o ppp0 -j MASQUERADE
# Disable routing
sudo sysctl net.ipv4.ip_forward=0
# Disable DHCP/DNS server
sudo service dnsmasq stop
sudo service hostapd stop
そこにあるppp0をeth0または有線接続に関連する他の番号に変更する必要があるかもしれません。
最後のステップ。
これで、起動スクリプトでホットスポットを起動できます。ただ実行してみてください...私には次のようになります。
root@kali:~# cd /root/Desktop/
root@kali:~/Desktop# ./hotspot.sh
これを望まない場合は、pwnstar
ドライバをインストールできます。