转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 数据库 >> MySql >> 正文
如何在linux下进行ADSL拨号         ★★★★

如何在linux下进行ADSL拨号

作者:闵涛 文章来源:闵涛的学习笔记 点击数:771 更新时间:2009/4/22 20:45:28
如何在linux下进行ADSL拨号
cowboy
chenzizhao@hotmail.com
2004-04-21

目录
背景
安装拨号软件
配置网卡
配置拨号软件
测试拨号
结束

背景
本来很简单,老被人问起。我干脆写下来得了。省的又动嘴皮子。
命令行模式,易于描述。更重要的是,使用命令行模式,看起来更像高手。:P。

安装拨号软件
首先,你必须安装相应的ADSL拨号软件。平常用的redhat发行版本中,带有pppoe这个rpm包。
我们通过下面的命令实现:
[root@www root]# rpm -qa|grep pppoe
rp-pppoe-3.4-7
这个命令的输出来确定系统中是否已经安装了pppoe这个包。rpm -qa是列出系统中已经安装的包。通过管道|将这个命令的输出,作为第二个命令的输入。grep pppoe是列出包含有pppoe的行。如果返回为空,则说明没有安装。如果安装了,会返回安装了pppoe的版本号。如果你还没有安装的话,通过下面的命令安装。
[root@www root]# rpm -ivh redhat/ppp-2.4.1-7.i386.rpm
这样,你就安装好了拨号需要的软件。

配置网卡
拨号需要将拨号的网卡设置为动态获取ip。而动态获取ip在机器启动的时候,将会花费很长时间去获取ip。所以,我们最好将网卡设置不启动时不激活。
设置网卡,使用命令netconfig可以方面的配置网络相关信息。当然,也可以通过修改网卡的配置文件实现:
[root@www root]# vim /etc/sysconfig/network-scripts/ifcfg-eth0

配置拨号软件
安装了拨号软件,接下来,就进行设置,告诉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):
接着,要求我们选择使用的网络接口。我们这时候,填入我们刚刚设置的那个网卡。对于大多数只有一个网卡的朋友而言,默认eth0就可以了。
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连接以后,是否持续保持连接。或者是自动的断开,在指定的时间(以秒数计算)内。多数情况下,我们希望手动的打开关闭连接。所以这里选择默认的no。
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地址。这些信息在isp的网站上一般都有公布。
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.
帐号密码是必须,输入两次。密码显示风格和其他的地方一样,不显示在屏幕上。这个,我不知道改怎么填写。太高深的问题了。希望你将你的答案和我分享。:P。
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 stop DSL connection (default yes):
我们看下防火墙选项。这里提供的防火墙可以给你提供基本的安全保护。我不推荐你使用——你最好选择“NONE”选项。无论是什么样的用户使用,我都建议你使用额外的工具来配置防火墙规则(iptables目前看来是一个非常不错的工具)。
FIREWALLING

Please choose the firewall rules to use. Note that these rules are
very basic. You are strongly encouraged to use a more sophisticated
firewall setup; however, these will provide basic security. If you
are running any servers on your machine, you must choose ''''NONE'''' and
set up firewalling yourself. Otherwise, the firewall rules will deny
access to all standard servers like Web, e-mail, ftp, etc. If you
are using SSH, the rules will block outgoing SSH connections which
allocate a privileged source port.

The firewall choices are:
0 - NONE: This script will not set any firewall rules. You are responsible
for ensuring the security of your machine. You are STRONGLY
recommended to use some kind of firewall rules.
1 - STANDALONE: Appropriate for a basic stand-alone web-surfing workstation
2 - MASQUERADE: Appropriate for a machine acting as an Internet gateway
for a LAN
Choose a type of firewall (0-2): Start this connection at boot time
是否在开机时,打开这个连接?
Do you want to start this connection at boot time?**
所有的配置信息填写完成之后,系统将给出一个报告,完整的显示出你输入的配置信息。如果,你确信你输入的配置信息是正确的,输入yes写入配置文件。输入no放弃配置。
Summary of what you entered **

Ethernet Interface: eth0
User name: root
Activate-on-demand: No
DNS: Do not adjust
Firewalling: NONE
User Control: yes
Accept these settings and adjust configuration files (y/n)?

Please enter no or yes (default no):



Congratulations, it should be all set up!

Type ''''/sbin/ifup ppp0'''' to bring up your xDSL link and ''''/sbin/ifdown ppp0''''
to bring it down.
Type ''''/sbin/ADSL-status /etc/sysconfig/network-scripts/ifcfg-ppp0''''
to see the link status.

测试拨号
现在,我们需要测试下我们的拨号是否配置正确了。
输入ADSL-start拨号。一般情况下,我会ping 我的ISP的主WWW服务器。比如
ping www.scmy169.com
如果不怕麻烦,打开浏览器测试下,也可以。如果一切ok。那么我们就可以结束我们的配置了。
当然,你关闭连接的话,使用命令adsl-stop就可以了。

结束
本文结束介绍在linux操作系统中命令行模式下,进行adsl拨号的一般方法。如果你有什么疑问,欢迎和我探讨。


[网络技术]宽带ADSL用户如何进入网通电信的路由器Router  [网络技术]ADSL的100Mbps和上网带宽的10Mbps、100Mbps是什么…
[网络技术]批处理断开网络连接rasphone与连接ADSL的Rasdial命…  [系统软件]如何在Linux系统上进行快速磁带备份
[C语言系列]如何在Jbuilder9中使用SQLServer JDBC驱动  [VB.NET程序]如何在Visual Basic 6.0 中连接加密的Access数据库
[VB.NET程序]如何在vb 中用api函数代替winsock控件建立网络连接…  [Delphi程序]如何在delphi6中调试web程序
[Delphi程序]如何在Delphi中用代码来完成计算字段的创建  [Delphi程序]如何在 Listbox 上显示 In-place Tooltips
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · Sql Server  · MySql
    · Access  · ORACLE
    · SyBase  · 其他
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台