如何在linux下进行ADSL拨号
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-04
如何在linux下进行ADSL拨号 cowboy chenzizhao@hotmail.com 2004-04-21 目录 背景 安装拨号软件 配置网卡 配置拨号软件 测试拨号 结束 背景 本来很简单,老被人问起.我干脆写下来得了.省的又动嘴皮子. 命令行模式,易于描述.更重要的是,使用命令行模式,看起来更像高手.:P. 安装拨号软件 ,你安装相应的ADSL拨号软件.平常用的redhat发行版本中,带有pp 我们通过下面的命令实现: [root@www root]# rpm -qa|grep pppoe rp-pppoe-3.4-7 这个命令的输出来确定系统中是否已经安装了pppoe这个包.rpm -qa是列出系统中已经安装的包.通过管道|将这个命令的输出,作为第二个命令的输入 [root@www root]# rpm -ivh redhat/ppp-2.4.1-7.i386.rpm 这样,你就安装好了拨号需要的软件. 配置网卡 拨号需要将拨号的网卡设置为动态获取ip.而动态获取ip在机器启动的时候,将会花费 设置网卡,使用命令netconfig可以方面的配置网络相关信息.当然,也可以通过 [root@www root]# vim /etc/sysconfig/network-scripts/ifcfg-eth 配置拨号软件 安装了拨号软件,接下来,就进行设置,告诉pppoe怎么拨号.启动设置,通过下面这 [root@www root]# adsl-setup ,你会看到欢迎信息. Welcome to the ADSL client setup. First, I will run some checks on your system to make sure the PPPoE client is installed properly... 然后要求我们输入登陆名. LOGIN NAME Enter your Login Name (default root): 接着,要求我们选择使用的网络接口.我们这时候,填入我们刚刚设置的那个网卡.对于大 INTERFACE Enter the Ethernet interface connected to the ADSL modem For Solaris, this is likely to be something like /dev/hme0. For Linux, it will be ethX, where ''X'' is a number. (default eth0): 接下来,询问的是,adsl连接以后,是否持续保持连接.或者是自动的断开,在指定的 Do you want the link to come up on demand, or stay up continuously? If you want it to come up on demand, enter the idle time in seconds after which the link should be dropped. If you want the link to stay up permanently, enter ''no'' (two letters, lower-case.) NOTE: Demand-activated links do not interact well with dynamic IP addresses. You may have some problems with demand-activated links. Enter the demand value (default no): 再下来,就是dns了.我发现很多时候,pppoe都不能够正确获取dns信息.我建 DNS Please enter the IP address of your ISP''s primary DNS server. If your ISP claims that ''the server will provide dynamic DNS addresses'', enter ''server'' (all lower-case) here. If you just press enter, I will assume you know what you are doing and not modify your DNS setup. 帐号密码是,输入两次.密码显示风格和其他的地方一样,不显示在屏幕上.这个,我 PASSWORD Please enter your Password: Please re-enter your Password: 下面的设置,是表示是否允许普通用户启用/关闭 ADSL连接.默认是允许. Please enter ''yes'' (two letters, lower-case.) if you want to allow normal user to start or s |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于如何在linux下进行ADSL拨号的所有评论