Hostapdとdhcpcdの起動順序

Hostapdとdhcpcdの起動順序

私はRaspberry PiをWiFiアクセスポイントとして使用しています。

手動で起動すると、魅力のように動作しますhostapddhcpcdしかし、ホストを再起動すると、dhcpcd最初に起動してwlan0クライアントとして使用する必要があることを理解できません。これ以降はすでに使用されているため、wlan0Hostapdにアクセスできません。dhcpcd

これらのサービスの順序に影響を与える方法はありますか?

ベストアンサー1

私にもこの問題がある。この注文を処理し、手動で実行するすべての構成を自動化するための小さなスクリプトを作成しました。

dnsmasqとをインストールするだけですhostapd。どのサービスも有効または無効にしないでください。処理されます。

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"
wlan="wlan0"
ssid="Arpit-Raspberry"
psk="arpit1997"

sudo killall wpa_supplicant &> /dev/null
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\
ht_capab=[HT40][SHORT-GI-20][DSSS_CCK-40]\n\
channel=6\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 stop hostapd
sudo hostapd /etc/hostapd/hostapd.conf &

このファイルをダウンロードして入れてください/home/pi/

/home/pi/.config/lxsession/LXDE-pi/autostartファイルを開く

nano /home/pi/.config/lxsession/LXDE-pi/autostart

最後の行を追加します。

@lxpanel --profile LXDE-pi
@pcmanfm --desktop --profile LXDE-pi
@xscreensaver -no-splash
@point-rpi
sudo bash /home/pi/eth-to-wifi-route.sh

ファイルのフルパスを指定する必要があります。これで終わりました。変更を確認するには、今すぐ再起動してください。

sudo reboot

これはGithubでホストされています。ここ

おすすめ記事