美文网首页
TinyRadius简单使用教程

TinyRadius简单使用教程

作者: PigPIgAutumn | 来源:发表于2018-01-18 10:37 被阅读0次

    1.确定服务器地址:

    //确定服务器器地址,这里为本机地址
            InetAddress inetAddress = null;
            try {
                inetAddress = InetAddress.getLocalHost();
            }catch (UnknownHostException e){
                ...
            }
    

    2.开启服务器

    //新建Server对象,并设置好监听的端口
            RadiusServer server = new RadiusServer();
            server.setListenAddress(inetAddress);
            server.setAcctPort(8071);
            server.setAuthPort(8072);
    //开启服务
            server.start(true, true);
    

    2.启动客户端

    //新建client对象
            RadiusClient client = new RadiusClient(inetAddress.getHostAddress(), "00000000");
    //设置发送到目的服务器的端口号
            client.setAcctPort(8071);
            client.setAuthPort(8072);
    //申请认证
            client.authenticate(userName, Password);
    

    相关文章

      网友评论

          本文标题:TinyRadius简单使用教程

          本文链接:https://www.haomeiwen.com/subject/dsvioxtx.html