我有一个django的服务器的台式计算机(linuxmint 18.3 64位),我使用hostapd和的dnsmasq通过WiFi服务于本地区域Django的位点(房间)上运行。 桌面也通过以太网线进行常规的Internet连接。(不通过wifi共享Internet访问。) 但是当dnsmasq正在运行时,桌面无法连接到Internet。我需要通过wifi服务django网站,并能够同时访问互联网。 这是我的配置
cat dnsmasq.conf
except-interface=enp0s25
except-interface=lo
interface=wlp48s0
dhcp-range=10.0.0.10,10.0.0.250,12h
dhcp-option=3,10.0.0.1
dhcp-option=6,10.0.0.1
server=8.8.8.8
#log-queries
#log-dhcp
address=/#/10.0.0.1
listen-address=10.0.0.1
bind-interfaces
cat hostapd.conf
ap_isolate=1
interface=wlp48s0
#driver=nl80211
ssid=LOCALACCESSPOINT
channel=6#0 #1
auth_algs=1 # 1=wpa, 2=wep, 3=both
wpa=2 # WPA2 only
wpa_key_mgmt=WPA-PSK
rsn_pairwise=CCMP
wpa_passphrase=123456789
每次启动时都会运行服务
cat set_ip.service
[Unit]
Description=asignar ip a la tarjeta wifi
After=multi-user.target
[Service]
Type=idle
ExecStart=/bin/bash /home/mint/set_ip.sh
[Install]
WantedBy=multi-user.target
cat set_ip.sh
ifconfig wlp48s0 down
sleep 2
ifconfig wlp48s0 10.0.0.1 up
sleep 4
systemctl restart dnsmasq.service
iptables -i wlp48s0 -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8000
iptables -i wlp48s0 -A INPUT -p tcp --dport 22 -j DROP
一旦我调用sudo systemctl stop dnsmasq.service即可再次浏览互联网。
任何帮助将不胜感激