回答:
簡単な解決策はcreate_apを使用することです。彼らのサイトから:
create_apは、任意のチャネルでオープンまたは暗号化されたAPの作成、SSIDの非表示、クライアント間の通信の無効化(クライアント分離)、IEEE 802.11n&802.11acサポート、インターネット共有方法:NATedまたはBridgedまたはNone(いいえインターネットの共有)
あなたのケースでは、ドングルからクライアントにインターネットを共有せずにLinux PCでAPを作成したいが、ファイル共有のような他のLANのことはできます。
あなたのwifiカードはAPの作成をサポートする必要があります
いくつかのパッケージをインストールします。
sudo apt install util-linux bash procps hostapd iproute2 iw haveged net-tools dnsmasq iptables
create_ap
パッケージを入手してください。ターミナルから
git clone https://github.com/oblique/create_ap
cd create_ap
sudo make install
インストール後、モデムとwifiカードの名前をifconfig
(非推奨)または次の方法で確認します。
iwconfig
wifiカードは通常、wlan0
またはwlp2s0
USBモデムですeth0
。あなたのものは違うかもしれません
次に、インターネットなしでLinuxからホットスポットを開始します。
sudo create_ap -n wlp2s0 MyAccessPoint
その後、クライアントを接続できます。あなたのインターネットは共有されませんが、インターネットなしでサンバや他のことができます
以下は、ホットスポットを作成するが、デバイスとインターネットを共有しないスクリプトです。システムに応じて、ネットワークインターフェイス名を変更する必要があります。Ethernet
WiFi
入力ip link
して検索してください。また、dnsmasq
およびがインストールされていることを確認してくださいhostapd
。
sudo apt-get install ifconfig dnsmasq hostapd
スクリプトを実行する前に、制御しているネットワーク管理ツールを停止する必要がありますWiFi
。
eth-to-wifi-route.sh
#!/bin/bash
# Share Eth with WiFi Hotspot
#
# This script is created to work with Raspbian Stretch
# but it can be used with most of the distributions
# by making few changes.
#
# Make sure you have already installed `dnsmasq` and `hostapd`
# Please modify the variables according to your need
# Don't forget to change the name of network interface
# Check them with `ifconfig`
ip_address="192.168.2.1"
netmask="255.255.255.0"
dhcp_range_start="192.168.2.2"
dhcp_range_end="192.168.2.100"
dhcp_time="12h"
eth="eth0" # replace it with Huawei 3G Modem interface
wlan="wlan0"
ssid="Arpit-Raspberry"
psk="arpit1997"
sudo rfkill unblock wlan &> /dev/null
sleep 2
#sudo iptables -F
#sudo iptables -t nat -F
#sudo iptables -t nat -A POSTROUTING -o $eth -j MASQUERADE
#sudo iptables -A FORWARD -i $eth -o $wlan -m state --state RELATED,ESTABLISHED -j ACCEPT
#sudo iptables -A FORWARD -i $wlan -o $eth -j ACCEPT
#sudo sh -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
sudo ifconfig $wlan $ip_address netmask $netmask
sudo ip route del 0/0 dev $wlan &> /dev/null
a=`route | awk "/${eth}/"'{print $5+1;exit}'`
sudo route add -net default gw $ip_address netmask 0.0.0.0 dev $wlan metric $a
echo -e "interface=$wlan \n\
bind-interfaces \n\
server=8.8.8.8 \n\
domain-needed \n\
bogus-priv \n\
dhcp-range=$dhcp_range_start,$dhcp_range_end,$dhcp_time" > /etc/dnsmasq.conf
sudo systemctl restart dnsmasq
echo -e "interface=$wlan\n\
driver=nl80211\n\
ssid=$ssid\n\
hw_mode=g\n\
ieee80211n=1\n\
wmm_enabled=1\n\
macaddr_acl=0\n\
auth_algs=1\n\
ignore_broadcast_ssid=0\n\
wpa=2\n\
wpa_key_mgmt=WPA-PSK\n\
wpa_passphrase=$psk\n\
rsn_pairwise=CCMP" > /etc/hostapd/hostapd.conf
sudo systemctl restart hostapd
sudo systemctl status hostapd &> /dev/null
if [ "$?" != 0 ];then
echo "Some Network Management tool is running, which is stopping"
echo "hostapd to be configured."
echo "Please stop that and again run the script."
fi
iptable
およびpacket forwarding
コマンドについてコメントしました。デバイスにインターネットを提供する必要がある場合は、それらのコメントを外してください。
スクリプトを実行する
sudo bash eth-to-wifi-route.sh