如何创建非临时 wifi 热点?

如何创建非临时 wifi 热点?

我想使用带有有线以太网连接(eth0)的桌面来操作我的“TP-LINK TL-WN722N”USB Wifi 适配器(wlan0)作为我的 Android 连接的非临时(基础设施模式)接入点。

经过大量搜索,我终于找到了一种方法(分布在许多网站上),可以满足我的大部分需要......

依赖项:

 hostapd
 bridge-utils

我修改了“/etc/network/interfaces”

sudo gedit /etc/network/interfaces

包含装有:

# This file describes the network interfaces available on your system
# and how to activate them.

auto lo br0
iface lo inet loopback

allow-hotplug eth0
iface eth0 inet manual

allow-hotplug wlan0
iface wlan0 inet manual

# Bridge setup

# for dhcp address
iface br0 inet dhcp
bridge_ports eth0 wlan0

# for static ip
# iface br0 inet static
# bridge_ports eth0 wlan0
# adapt with your network settings
# address 192.168.1.250
# netmask 255.255.255.0
# network 192.168.1.0
# broadcast 192.168.1.255
# gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
# dns-nameservers 192.168.1.1
# dns-search localdomain

### Reference ###

# Creating a Wireless Access Point with Debian Linux « Agent Oss (October 31, 2011)
# https://agentoss.wordpress.com/2011/10/31/creating-a-wireless-access-point-with-debian-linux/

我的“/etc/hostapd/hostapd.conf”(我自己设法整理的)

sudo gedit /etc/hostapd/hostapd.conf

包含:

 ### Guts ###

 interface=wlan0
 bridge=br0
 driver=nl80211

 ### General ###

 ssid=____________________
 hw_mode=g
 channel=1

 ### Security ###

 macaddr_acl=0
 auth_algs=1
 ignore_broadcast_ssid=0     ## 0 visible # 1 hidden ##
 wpa=2
 wpa_passphrase=____________________
 wpa_key_mgmt=WPA-PSK
 wpa_pairwise=TKIP
 rsn_pairwise=CCMP

 ### Reference ###

 ## Created Tuesday, February 14, 2012 ## Ubuntu 11.10/12.04 ##

 # Hostapd Linux Documentation Page
 # http://linuxwireless.org/en/users/Documentation/hostapd

 # Creating a Network Bridge on Ubuntu (January 16th, 2011)
 # http://webserver.linuxportal.nl/?p=422

(我已删除了此帖中的安全部分)

所有这些允许我打开终端并执行:

 sudo hostapd -B /etc/hostapd/hostapd.conf

拥有一个可以正常工作的接入点,以便我的 Android 和所有其他 WiFi 设备能够连接。

由于此设置的信息非常稀少,因此除了与其他人共享此方法外,还有三个问题需要解决:

  1. 此配置将停用网络管理器及其所有功能。单击它时,它会显示“设备未管理”消息。(不是必需的,但对我来说有点烦人)
  2. 这种方法有时会遇到 IP 地址问题。
  3. 我必须使用终端来打开 Wifi。(对我来说还行,但不适合家庭使用)。 我弄清楚了如何使用 gksu 和一个简单的脚本来制作启动器,如果有人需要的话……

无需终端即可启动 wifi/Hostapd

  1. (为什么网络管理员不能立即执行此操作?)

提前致谢!我希望所有这些都能帮助别人;我以前从未写过教程,对网络几乎一无所知……

可能与网桥-不破坏网络管理器(等等)。

使用 Ubuntu 11.10、12.04 进行测试。

答案1

我不确定如何在不破坏 NM 的情况下做到这一点,但可以在启动时自动运行并轻松分配 IP 地址(至少我已经使用相同的无线网卡实现了这一点)。这需要软件包hostapddnsmasq(不是dnsmasq-base

/etc/hostapd/hostapd.conf:

interface=wlan0
driver=nl80211 # This works on my TL-WN722N

ssid=______

channel=6
hw_mode=g

auth_algs=1
wpa=3
wpa_passphrase=_____
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
rsn_pairwise=CCMP

在 /etc/default/hostapd 中:

# Defaults for hostapd initscript
#
# See /usr/share/doc/hostapd/README.Debian for information about alternative
# methods of managing hostapd.
#
# Uncomment and set DAEMON_CONF to the absolute path of a hostapd configuration
# file and hostapd will be started during system boot. An example configuration
# file can be found at /usr/share/doc/hostapd/examples/hostapd.conf.gz
#
DAEMON_CONF="/etc/hostapd/hostapd.conf"

# Additional daemon options to be appended to hostapd command:-
#   -d   show more debug messages (-dd for even more)
#   -K   include key data in debug messages
#   -t   include timestamps in some debug messages
#
# Note that -B (daemon mode) and -P (pidfile) options are automatically
# configured by the init.d script and must not be added to DAEMON_OPTS.
#
#DAEMON_OPTS=""

/etc/dnsmasq.conf(与维护者的版本不同):

--- /etc/dnsmasq.conf.dpkg-dist 2011-09-20 00:28:30.000000000 +0100
+++ /etc/dnsmasq.conf   2012-02-13 21:03:03.713554612 +0000
@@ -82,7 +82,7 @@
 # specified interfaces (and the loopback) give the name of the
 # interface (eg eth0) here.
 # Repeat the line for more than one interface.
-#interface=
+interface=wlan0
 # Or you can specify which interface _not_ to listen on
 #except-interface=
 # Or which to listen on by address (remember to include 127.0.0.1 if
@@ -133,7 +133,7 @@
 # a lease time. If you have more than one network, you will need to
 # repeat this for each network on which you want to supply DHCP
 # service.
-#dhcp-range=192.168.0.50,192.168.0.150,12h
+dhcp-range=192.168.3.10,192.168.3.49,12h

 # This is an example of a DHCP range where the netmask is given. This
 # is needed for networks we reach the dnsmasq DHCP server via a relay

在 /etc/网络/接口:

auto lo
iface lo inet loopback

auto wlan0
iface wlan0 inet static
    address 192.168.3.1/24
    broadcast 192.168.3.255

/etc/sysctl.conf补丁(sudo sysctl -p /etc/sysctl.conf修改后运行):

--- sysctl.conf 2012-05-14 18:06:57.514873009 +0100
+++ /etc/sysctl.conf    2012-05-14 18:09:27.122876525 +0100
@@ -25,7 +25,7 @@
 #net.ipv4.tcp_syncookies=1

 # Uncomment the next line to enable packet forwarding for IPv4
-#net.ipv4.ip_forward=1
+net.ipv4.ip_forward=1

 # Uncomment the next line to enable packet forwarding for IPv6
 #  Enabling this option disables Stateless Address Autoconfiguration

最后,设置 NAT iptables

sudo iptables -A FORWARD -o eth0 -i eth1 -s 192.168.0.0/24 -m conntrack --ctstate NEW -j ACCEPT
sudo iptables -A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
sudo iptables -A POSTROUTING -t nat -j MASQUERADE
sudo iptables-save | sudo tee /etc/iptables.sav

并将iptables-restore < /etc/iptables.sav上面的exit 0内容添加到/etc/rc.local

此设置主要通过阅读来实现本指南盯着手册页挠头。

答案2

大多数问题至少是由于 HP 笔记本电脑中的 Broadcom 驱动程序引起的。如果您有 Broadcom 网络控制器,请检查您的卡是否与 b43 兼容(链接 1)。如果是,太棒了,请继续阅读。默认的 Broadcom sta 驱动程序 (wl) 不支持接入点模式。因此,安装 b43 时请采取预防措施,以任何必要的方式保持在线状态。使用 modprobe 打开它。现在按照说明尝试设置接入点。

我终于让 hostapd 可以与此配合使用,最棒的是,我的诺基亚手机可以检测到这样创建的 wifi(它可以检测到任何东西,无论是临时的还是非临时的)。现在我必须试用一下你的文件,看看我是否可以让我的剧本进行检测。

  1. http://linuxwireless.org/en/users/Drivers/b43
  2. http://pclinuxos.com/forum/index.php?topic=91991.0

答案3

上面的答案非常好,但是不仅仅是一两个芯片组不支持 hostapd 或 AP 模式。

以下是如何查看你的驱动程序和硬件是否支持 AP 模式:

sudo iw list | less

查找“支持的接口模式”部分。如果它不包含“AP”,那你就没那么幸运了。如果它确实说了“AP”,那么请继续按照其他发帖者提供的许多很好的说明进行操作!

相关内容