找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
楼主: bwq518

求: 基于authpuppy的稳定的认证服务器源码

[复制链接]
发表于 2015-2-27 20:48 | 显示全部楼层
找到一个关于这个利用luci认证的资料

http://my.oschina.net/osbin/blog/360779

利用luci写了个wifidog认证服务,实现直接openwrt路由器本地认证。直接安装ipk安装包,然后修改/etc/wifidog.conf文件(需要先安装wifidog),如下:



?

1
2
3
4
5

AuthServer {
    Hostname 192.168.1.1
    Path /cgi-bin/luci/wdas/
    MsgScriptPathFragment gw_message/?
}






主要的源码如下:
--[[
wdas -- wifidog auth server
mail: xzm2@qq.com
QQ: 529698939
]]--
module("luci.controller.wifidog.wdas", package.seeall)

local session = require "luci.wifidogsession"
local http = luci.http
local translate = luci.i18n.translate
local wdcfg = require("luci.wifidogconfig")

function index()
        local page    = node("wdas")
        page.target   = alias("wdas", "login")
        page.order    = 90
        page.i18n = "wifidogauth"
        page.setuser  = "nobody"
        page.setgroup = "nogroup"

        entry({"wdas", "login"}, call("login"))
        entry({"wdas", "logincheck"}, call("logincheck"))
        entry({"wdas", "auth"}, call("auth"))
        entry({"wdas", "ping"}, call("ping"))
        entry({"wdas", "portal"}, call("portal"))
        entry({"wdas", "gw_message"}, call("gw_message"))
end

function login()
        --login/?gw_id=&gw_address=&gw_port=&mac=&url=
        luci.template.render("wifidog/wdas_login")
end

function logincheck()
        local username, password = wdcfg.auth.username, wdcfg.auth.password
        local user, pwd, id, addr, port, mac, url, token
        user = http.formvalue("user")
        pwd = http.formvalue("pwd")
        id = http.formvalue("gw_id")
        addr = http.formvalue("gw_address")
        port = http.formvalue("gw_port")
        mac = http.formvalue("mac")
        url = http.formvalue("url")
        token = http.getcookie("wdastok")
        http.prepare_content("application/json")
        if addr and port and mac and (user == username) and (pwd == password) then
                token = token and token:match("^[a-f0-9]*$") or luci.sys.uniqueid(16)
                local sdt = {id=id, addr=addr, port=port, mac=mac, url=url, timestamp=luci.sys.uptime()}
                local path = (http.getenv("SCRIPT_NAME") or "") .. "/wdas"
                session.write(token, sdt)
                http.header("Set-Cookie", "wdastok=" .. token .. "; path=" .. path)
                http.write('{url:"http://' .. addr .. ':' .. port ..
                        '/wifidog/auth?token=' .. token .. '"}')
        else
                if addr and port and mac then
                        http.write('{error: "' .. translate("Invalid username or password.") .. '"}')
                else
                        http.write('{error: "' .. translate("Invalid parameter.") .. '"}')
                end
        end
end

function auth()
        --auth/?stage=&ip=&mac=&token=&incoming=&outgoing=
        local stage, ip, mac, token, incoming, outgoing
        stage = http.formvalue("stage")
        ip = http.formvalue("ip")
        mac = http.formvalue("mac")
        token = http.formvalue("token")
        incoming = http.formvalue("incoming")
        outgoing = http.formvalue("outgoing")
        token = token and token:match("^[a-f0-9]*$")
        local sdt = token and session.read(token)
        if token and sdt and (mac == sdt.mac) then
                http.write("Auth: 1")
        else
                http.write("Auth: 0")
        end
end

function ping()
        --ping/?gw_id=&sys_load=&sys_memfree=&sys_load=&wifidog_uptime=
        local id, sys_uptime, sys_memfree, sys_load, wifidog_uptime
        id = http.formvalue("gw_id")
        sys_uptime = http.formvalue("sys_uptime")
        sys_memfree = http.formvalue("sys_memfree")
        sys_load = http.formvalue("sys_load")
        wifidog_uptime = http.formvalue("wifidog_uptime")
        if id and sys_uptime and sys_memfree and sys_load and wifidog_uptime then
                http.write("Pong")
        else
                http.write("{error:2}")
        end
end

function portal()
        --portal/?gw_id=%s
        local token, sdt, url
        token = http.getcookie("wdastok")
        sdt = token and session.read(token)
        url = sdt and sdt.url or "http://www.baidu.com"
        http.redirect(url)
end

function gw_message()
        local msg = http.formvalue("message")
        http.write(msg)
end





源码编译说明:


modules目录下的wifidogauth目录放到./feeds/luci/modules/下。

po/zh_CN/wifidogauth.po文件放到./feeds/luci/po/zh_CN/下。




./feeds/luci/contrib/package/luci/Makefile增加如下语句:

$(eval $(call module,wifidogauth,wifidog auth server,+luci-base))




然后 make menuconfig在luci-->Modules下找到luci-mod-wifidogauth选上。




make package/feeds/luci/luci/compile V=s




认证的用户名、密码的配置文件路径/etc/config/wifidogauth

效果图:




安装包下载地址:luci-mod-wifidogauth_0.12.ipk

完整源码下载地址:luci-mod-wifidogauth.tar.gz
发表于 2015-9-10 11:44 | 显示全部楼层
bwq518 发表于 2014-12-5 22:08
希望能走稳定可靠的本地认证服务器,因都在网段内,速度会快一些。

免费的认证服务器实测效果并不理想, ...

那还不如nodogsplash,这个就是wifidog本地化的软件
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-6-7 14:23

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com

快速回复 返回顶部 返回列表