当前位置:   article > 正文

rk3568 Debian11 如何打开热点

rk3568 debian
思路:

1. 下载必要工具(hostapt、dnsmasq)

2. 配置网络(无线网卡配置静态IP)

3. 配置hostapt配置文件

4. 配置DHCP服务

5. 启动服务(hostapd/dnsmasq/network)

6. IP转发(这一步决定了是否可以上网)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
一、 下载必要工具 :
# apt-get update
# apt-get install hostapd dnsmasq
  • 1
  • 2
  • 3
二、配置网络: 
# vi /etc/network/interfaces
//Add the following to the file
auto wlx367de41c8192
iface wlx367de41c8192 inet static
address 192.168.1.1
netmask 255.255.255.0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

无线网卡设备名称为什么使用的是 wlx367de41c8192 ?
  • 1

在这里插入图片描述

我看的手册,我使用的无线模块为:RTL8723DU
  • 1

在这里插入图片描述
在这里插入图片描述

三、配置hostapt配置文件 (关于具体配置说明网上有很多资源介绍)

# touch /etc/hostapd/hostapd.conf
# chmod 777 /etc/hostapd/hostapd.conf

# vi /etc/hostapd/hostapd.conf

//Add the following to the file

interface=wlx367de41c8192
ssid=YourHots
hw_mode=g
channel=6
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=12345678
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

在这里插入图片描述

四、配置DHCP服务

# vi /etc/dnsmasq.conf

//Add the following to the file

interface=wlx367de41c8192
dhcp-range=192.168.1.2,192.168.1.100,255.255.255.0,12h
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在最后一行添加即可

五、启动服务(hostapd/dnsmasq/network)

# service dnsmasq start
# systemctl unmask hostapd.service
# service hostapd start
# systemctl restart networking

此时手机可以连接到该热点了,但是依然无法上网。
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在这里插入图片描述
在这里插入图片描述

六、IP转发(这一步决定了是否可以上网)
IP转发,步步都是坑,我就是一个坑一个坑的爬起来,本人对这方便的知识了解还是一只小菜鸟,
但是解决完这个问题后还是稍有成就感,分享主要是为了记录,其次有幸的话能给其他小白一些借鉴,少入坑。
  • 1
  • 2
  • 3
1)保存IP 转发设置
# vi  /etc/sysctl.conf
net.ipv4.ip_forward=1
  • 1
  • 2
  • 3

在这里插入图片描述

2)确认内核是否配置了防火墙 iptables,如果没有配置,这里需要配置内核然后重新编译。

+CONFIG_NETFILTER=y
+CONFIG_NF_CONNTRACK=y
+CONFIG_NF_TABLES=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_IP_NF_IPTABLES=y
+CONFIG_IP_NF_NAT=y
+CONFIG_IP_NF_TARGET_MASQUERADE=y
+CONFIG_BRIDGE=y
+CONFIG_IPV6=n
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
修改内核配置后,wifi/BT模块的驱动务必需要重新编译,不然kernel在加载wifi驱动的时候会崩溃掉。
  • 1
我选择在板子上,删除掉原来wifi/bt驱动后,再烧写boot.img驱动,最后使用 adb push 放置最新编译
的驱动到相对应的目录下。
# rm -rf /system/lib/modules/RTL8723DU.ko
# rm -rf /usr/lib/modules/rtk_btusb.ko
  • 1
  • 2
  • 3
  • 4
以下为ADB操作:

adb push G:\C_Push\gg\RTL8723DU.ko /system/lib/modules
adb push G:\C_Push\gg\rtk_btusb.ko /usr/lib/modules
adb shell
chmod 777 /system/lib/modules/RTL8723DU.ko
chmod 777 /usr/lib/modules/rtk_btusb.ko
reboot
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
3)设置防火墙工具
# update-alternatives --config iptables
# iptables -t nat -L
  • 1
  • 2
  • 3

在这里插入图片描述
在这里插入图片描述

4. IP 转发
# iptables -t nat -A POSTROUTING -s 192.168.1.1/24 ! -d 192.168.1.1/24 -j MASQUERADE
  • 1
  • 2

在这里插入图片描述

此时可以上网啦
  • 1

在这里插入图片描述

板子重启的话,需要重新加载网络和ip转发。
# systemctl restart networking
# iptables -t nat -A POSTROUTING -s 192.168.1.1/24 ! -d 192.168.1.1/24 -j MASQUERADE
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/374113
推荐阅读
相关标签
  

闽ICP备14008679号