博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux wifi热点服务脚本
阅读量:5962 次
发布时间:2019-06-19

本文共 1468 字,大约阅读时间需要 4 分钟。

最近有关wifi热点的驱动,启动参数都调试完了,验证可以连接传输数据。

首先要在系统启动脚本中插入wifi驱动,配置wlan0的ip

insmod /system/vendor/modules/8188eu.koifconfig wlan0 192.168.201.1  netmask 255.255.255.0/etc/softat-server start &

 

今天就把wifi ap的start stop脚本给整理了。

#!/bin/sh## It is not safe to start if we don't have a default configuration...#echo "/etc/init.d/dhcp-server not yet configured! - Aborting..."#exit 1;test -f /usr/sbin/hostapd || exit 0test -f /etc/hostapd.conf || exit 0test -f /usr/sbin/dhcpd || exit 0test -f /etc/dhcpd.conf || exit 0case "$1" in        start)                echo -n "Starting SoftAp server: "                test -d /var/lib/dhcp/ || mkdir -p /var/lib/dhcp/                test -f /var/lib/dhcp/dhcpd.leases || touch /var/lib/dhcp/dhcpd.leases                start-stop-daemon -S -x /usr/sbin/hostapd /etc/hostapd.conf -b                start-stop-daemon -S -x /usr/sbin/dhcpd                ;;        stop)                echo -n "Stopping SoftAp server"                start-stop-daemon -K -x /usr/sbin/dhcpd                start-stop-daemon -K -x /usr/sbin/hostapd                ;;        restart | force-reload)                $0 stop                sleep 2                $0 start                if [ "$?" != "0" ]; then                        exit 1                fi                ;;        *)                echo "Usage: /etc/softap-server {start|stop|restart|force-reload}"                exit 1esacexit 0~

经过测试以上脚本可用。

 

转载于:https://www.cnblogs.com/tid-think/p/9214260.html

你可能感兴趣的文章
【Linux】Linux 在线安装yum
查看>>
Atom 编辑器系列视频课程
查看>>
[原][osgearth]osgearthviewer读取earth文件,代码解析(earth文件读取的一帧)
查看>>
阿里百川码力APP监控 来了!
查看>>
使用dotenv管理环境变量
查看>>
温故js系列(11)-BOM
查看>>
Vuex学习
查看>>
bootstrap - navbar
查看>>
切图崽的自我修养-[ES6] 编程风格规范
查看>>
服务器迁移小记
查看>>
FastDFS存储服务器部署
查看>>
Android — 创建和修改 Fragment 的方法及相关注意事项
查看>>
swift基础之_swift调用OC/OC调用swift
查看>>
Devexpress 15.1.8 Breaking Changes
查看>>
Java B2B2C多用户商城 springcloud架构- common-service 项目构建过程(七)
查看>>
ElasticSearch Client详解
查看>>
新零售讲堂之时代下的传统零售业,何去何从?
查看>>
mybatis update返回值的意义
查看>>
expdp 详解及实例
查看>>
解读最具O2O属性—哈根达斯微信企业号的成功之道
查看>>