QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 5563|回复: 13

安装ADSL过程(debian上测试)

[复制链接]
发表于 2003-4-26 18:53:06 | 显示全部楼层 |阅读模式
1:我的使用方法是把ADSL连接到eth0,也就是网卡上的,不是连接到USB接口

2:为了保证通用性,我不介绍具体的软件,只说方法:

编译内核,2.4.20,配置文件我已经贴出来了,在最下面,文件名是“.config”,有一个点的

然后编译内核:
[code:1]
make dep && make bzImage && make modules && make modules_install
[/code:1]

用新的内核启动(不再废话)

这个内核已经支持ppp,

对于Debian,在 /etc/ppp/peers/dsl-provider 内容如下:
[code:1]
pty "/usr/sbin/pppoe -I eth0 -T 80"
noipdefault
defaultroute
hide-password
lcp-echo-interval 60
lcp-echo-failure 3
connect /bin/true
noauth
persist
mtu 1492
user "xxx@xxx"     这里是你的帐号
usepeerdns
[/code:1]
建立/etc/ppp/pap-secrets,内容如下:
[code:1]
# Every regular user can use PPP and has to use passwords from /etc/passwd
*       (none)  ""      *

# UserIDs that cannot use PPP at all. Check your /etc/passwd and add any
# other accounts that should not be able to use pppd!
guest   (none)  "*"     -
master  (none)  "*"     -
root    (none)  "*"     -
support (none)  "*"     -
stats   (none)  "*"     -

# OUTBOUND connections

# Here you should add your userid password to connect to your providers via
# PAP. The * means that the password is to be used for ANY host you connect
# to. Thus you do not have to worry about the foreign machine name. Just
# replace password with your password.
# If you have different providers with different passwords then you better
# remove the following line.

(none)  *       password

xxx@xxx * xxxxx    这里是帐号密码,中间有一个*不要少
[/code:1]

现在用下面的方法拨号:
[code:1]pppoe -I eth0 -T 80[/code:1]  (Maybe all user)
或者
[code:1]pon dsl-provider[/code:1]  (Debian User)
也可以在/etc/init.d下面加入一个ppp,用来启动
[code:1]
test -x /usr/sbin/pppd -a -f /etc/ppp/ppp_on_boot || exit 0
if [ -x /etc/ppp/ppp_on_boot ]; then RUNFILE=1; fi

case "$1" in
  start)
      echo -n "Starting up PPP link: pppd"
      if [ "$RUNFILE" = "1" ]; then
        /etc/ppp/ppp_on_boot
      else
        pppd call dsl-provider
      fi
      echo "."
    ;;
  stop)
      echo -n "Shutting down PPP link: pppd"
      if [ "$RUNFILE" = "1" ]; then
        poff
      else
        poff dsl-provider
      fi
      echo "."
    ;;
  restart|force-reload)
    echo -n "Restarting PPP link: pppd"
    if [ "$RUNFILE" = "1" ]; then
      poff
      sleep 5
      /etc/ppp/ppp_on_boot
    else
      poff provider
      sleep 5
      pppd call dsl-provider
    fi
    echo "."
    ;;
  *)
      echo "Usage: /etc/init.d/ppp {start|stop|restart|force-reload}"
      exit 1
    ;;
esac

exit 0
[/code:1]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
发表于 2004-1-15 09:22:42 | 显示全部楼层
能否帮我看一下这个呀。
我的ADSL设备是中国网通CNC提供的内置路由器。
http://www.linuxfans.org/nuke/modules.php?name=Forums&file=viewtopic&p=3930326#3930326
回复

使用道具 举报

发表于 2004-1-15 12:41:00 | 显示全部楼层
恩,如果是USB的该怎么办啊
回复

使用道具 举报

发表于 2004-1-16 08:45:14 | 显示全部楼层
能否帮我看一下这个呀。
我的ADSL设备是中国网通CNC提供的内置路由器。
http://www.linuxfans.org/nuke/modules.php?name=Forums&file=viewtopic&p=3930326#3930326
_________________
沟通,从新(心)开始!
回复

使用道具 举报

发表于 2004-1-18 09:38:44 | 显示全部楼层
能否帮我看一下这个呀。
我的ADSL设备是中国网通CNC提供的内置路由器。
http://www.linuxfans.org/nuke/modules.php?name=Forums&file=viewtopic&p=3930326#3930326


谢谢!帮我解决一下吧。
回复

使用道具 举报

发表于 2004-1-18 15:41:31 | 显示全部楼层
我的adsl是alcatel  speedtouch home plus 511e,我在windows xp下把adsl配置为
“路由 PPPoE 信息服务配置采用永远在线的会话连接“,我的redhat linux 9.0就可以上网了
回复

使用道具 举报

发表于 2004-1-19 12:10:10 | 显示全部楼层
内置路由器怎么安装啊。怎么安装呀。
回复

使用道具 举报

发表于 2004-1-19 20:32:23 | 显示全部楼层
[quote:92ae53e634=""]内置路由器怎么安装啊。怎么安装呀。[/quote]去买本2003年12月刊的《在线》来看吧
回复

使用道具 举报

发表于 2004-1-19 23:56:47 | 显示全部楼层
哦!不好意思啦。我按照你说的去。找过此月刊,但是我们这里没有呀。。。这怎么办呀?
回复

使用道具 举报

发表于 2004-1-20 12:14:31 | 显示全部楼层
[quote:64cb1848ed=""]哦!不好意思啦。我按照你说的去。找过此月刊,但是我们这里没有呀。。。这怎么办呀?[/quote]http://bbs.cniti.com/cgi-bin/threaded_show.cgi?tid=350203282&h=1&bpg=1&age=30
自己去看吧
回复

使用道具 举报

发表于 2004-1-22 23:20:27 | 显示全部楼层
谢谢啦。
过年好
回复

使用道具 举报

发表于 2004-6-15 22:06:37 | 显示全部楼层
我是用HUB和同学共享的ADSL,他装的时候是有密码的,我看你上面的内核好像是不设密码的,不知我说的对不对?
还有,我用的是最新的LINUX ES。在启动XWINDOWS后,有图形界面的ADSL设置!
可否帮看一下如何设,最好可把图传上来!
我就是对提供商不大懂!是不是自己随便写一个就行?
回复

使用道具 举报

发表于 2004-6-15 22:12:34 | 显示全部楼层
不好意思,刚没仔细看,
# UserIDs that cannot use PPP at all. Check your /etc/passwd and add any
# other accounts that should not be able to use pppd!

#后面是不是说明文字,可以不写吧?哎,我是菜鸟,这个问题是不是有点子傻???
回复

使用道具 举报

发表于 2004-10-28 22:05:52 | 显示全部楼层
alcatel speedtouch home plus 500

上海电信adsl2m,有成功的么?
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-8 11:30 , Processed in 0.081089 second(s), 17 queries .

© 2021 Powered by Discuz! X3.5.

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