redhat linux中用锐捷客服端实现上网
开学了我们学校用的是锐捷的客服端连接外网,window下安装锐捷客服端实现上网很随意,但linux下却不是那么如鱼得水.我们校的很多同学都想用linux系统,但都安装锐捷客服端问题,不能上网,望而却步.
如今linux系统越来越火,为了攻破以上问题,结合网络上和自身的知识,总结出下方法:
1.刚开始一直用xrgsu-1.1.1.i386.tar.gz应该是锐捷官方提供的,搞了半天一直不成,错误结果是:
[root@localhost xrgsu1.1]# ./xrgsu -a
XRGSupplicant 1.0.1
RuiJie Network CopyRight 2004
Please input your user name:20087780338
Please input your password:
Use DHCP,1-Use,0-UnUse(Default: 0):
You have 3 Nic:
0. eth0 Desc: (null)
1. vmnet1 Desc: (null)
2. vmnet8 Desc: (null)
Please select which NIC will be used(0-2,Default:0)
Use default auth parameter,0-Use 1-UnUse(Default: 0):
Searching server...
Connecting server...
Authenticating...
??????ʹ?õĿͻ???????!
Authenticate FAIL!
xrgsu exit!
想必大家也出现过以上的结果吧,有可能是软件版本与服务端不兼容或系统内核没有编译好的原因.之在这里提出来是给大家一个参考.这种方法不行那我们就换一种方法.
2.换一个客服端软件ruijieclient安装
其功能:
- 支持静态认证和3种DHCP认证
- 支持2种服务器发现包
- 支持客户端版本欺骗
- 支持伪造IP
- 支持智能重连
- 支持后台daemon驻留,可以加入Linux启动脚本
- 支持服务器消息读取和转码
- 良好的embeded特性
- 支持2种文件配置和命令行传参配置
所需软件:ruijieclient-0.8.2.tar.bz2
下载地址:http://code.google.com/p/ruijieclient/downloads/list
下载后编译安装:
tar xvf ruijieclient-0.8.2.tar.bz2
cd ruijieclient-0.8.2
./configure && make && make install
注意:以上步骤不能出错!
然后:
vim /etc/ruijie.conf
#加入一下内容
<?xml version="1.0" encoding="UTF-8"?>
<ruijie.conf version="0.7.9">
<!--This is a sample configuration file of RuijieClient, change it appropriately according to your settings.-->
<account>
<Name>输入你的帐号</Name>
<Password>输入你的密码</Password>
</account>
<settings>
<!--Network Adapter Name-->
<NIC>eth0</NIC>
<!--0: Standard, 1: Private-->
<AuthenticationMode>0</AuthenticationMode>
<EchoInterval>25</EchoInterval>
<!--英特尔ligentReconnect: 0: Disable 英特尔ligentReconnect, 1: Enable 英特尔ligentReconnect -->
<英特尔ligentReconnect>1</英特尔ligentReconnect>
<!--AutoConnect: 0: Disable AutoConnect, 1: Enable AutoConnect (only available in gruijieclient) -->
<AutoConnect>0</AutoConnect>
<!--Fake Version for cheating server-->
<FakeVersion>3.35</FakeVersion>
<!--Fake IP for cheating server-->
<FakeAddress></FakeAddress>
<!--DHCP mode 0: Disable, 1: Enable DHCP before authentication, 2: Enable DHCP after authentication 3: DHCP after DHCP authentication andre |