码迷,mamicode.com
首页 > 其他好文 > 详细

通过335x wifi热点访问外部网络的方法

时间:2019-10-31 16:34:01      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:pack   dhcpd   直接   device   core   har   修改   idt   table   

335x中wifi作为热点后,其他设备通过该wifi热点,可以访问外部网络的方法

大家好!首先,很高兴得到电子工程世界论坛和电鱼电子公司的支持,让我有一次宝贵的测评335x wifi热点的机会。然后,话不多说,让我们进入正题。 注意:前方高能!干货满满哦~ 

技术图片

 

1.335x前边已经移植好了hostapd;直接使用就可以 热点名为rtwap,密码为87654321

2.dhcpd 配置文件修改

创建空文件/var/db/dhcpd.leases

mkdir -p /var/db

touch /var/db/dhcpd.leases

3.

ifconfig eth0 up

udhcpc -i eth0

ifconfig wlan0 up                        

ifconfig wlan0 10.5.5.1  netmask 255.255.255.0

 

echo 1 > /proc/sys/net/ipv4/ip_forward         /* 打开IP转发 */

/sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

 

设置网卡的混杂模式

# ifconfig wlan0 promisc                                                                                                                                                                             

[ 3725.324000] device wlan0 entered promiscuous mode

 

dhcpd -cf /etc/dhcpd.conf wlan0  &

hostapd /etc/hostapd.conf -B

 

4.前边命令中需要用到iptables,文件系统中需要移植iptables (iptables编译)

./configure --host=arm-arago-linux-gnueabi --prefix=/root/335x/localcode/iptables/install --disable-nftables --with-ksource=/root/335x/localcode/kernel-3.2.0 --enable-static --disable-shared

make

make install

编译完成后需要将iptables移植到开发板上;

内核中也需要配置iptables的支持

 

  • Networking support  --->

     

           Networking options  --->

                  

  • Network packet filtering framework (Netfilter)  --->

     

                         Core Netfilter Configuration  --->(全部选上)

                         IP: Netfilter Configuration  ---> (全部选上)

    然后就OK啦!

通过335x wifi热点访问外部网络的方法

标签:pack   dhcpd   直接   device   core   har   修改   idt   table   

原文地址:https://www.cnblogs.com/dianyu/p/11771610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!