如何在Linux下用ADSL拨号上网

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

配置网卡
拨号须要将拨号的网卡设置为动态获取ip。而动态获取ip在机器启动的时候,将会花费很长时间去获取ip。因此,咱们最好将网卡设置不启动时不激活。(不建议这么作,若是是远程登录的话,就很麻烦)通常状况下咱们都使用命令netconfig能够方面的配置网络相关信息。固然,也能够经过修改网卡的配置文件实现:
[root@Server root]# vi /etc/sysconfig/network-scripts/ifcfg-eth0

配置拨号软件web

与ADSL相关的一共有四个命令adsl-connect ,adsl-setup,adsl-start,adsl-status,adsl-stop
经过下面这个命令,启动ADSL设置:
[root@Server 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...windows


而后要求咱们输入登录名。
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):ide


咱们看下防火墙选项。这里提供的防火墙能够给你提供基本的安全保护。我不推荐你使用——你最好选择“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):工具


是否在开机时,打开这个链接?
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 61.139.2.69(该地址是电信的DNS服务器)网站

若是能ping通则说明没有什么问题
若是不怕麻烦,打开浏览器测试下,也能够。若是一切ok。那么咱们就能够结束咱们的配置了。
固然,你关闭链接的话,使用命令adsl-stop就能够了。

 

故障排除

照上边的操做步骤配置下来,通常是没有什么问题的。可是由于Linux没有Windows那么直观,出现问题的话,排除故障是很是恼火的。

故障1:没法浏览网页,可是能够ping通DNS服务器地址,多半是在配置的时候DNS服务器地址填错了。建议检查一下DNS服务器是否正确。
 

故障2:用ifconfig查看连接,确实出现了三个连接,一个eth0,一个lo,一个ppp0,可是就是没法ping通外网,这种状况多出如今手动修改ifcfg-eth0文件,或者用netconfig命令的状况下。

我查看了一下我Windows下和Linux下的路由信息发现少了以下路由,

Network       Destination        Netmask          Gateway       Interface 

 0.0.0.0          0.0.0.0     192.168.0.77    192.168.0.77       1
 注释: 192.168.0.77 是我windows拨号取得的PPPOE客户端地址,这条路由的意思是全部的数据包都从77这个端口出去,可是Linux下就没有这条路由。

后来查了不少资料终于找到了问题所在,由于个人eth0网址信息是我手动修改的,因此就有GATEWAY这一项, 并且我发现路由都是从192.168.0.1这个端口出去的,而我PPP0E客户端拨号得到的地址是192.168.0.76,因此这确定是不对的,怎么解决呢?

将/etc/sysconfig/network文件中的GATEWAY一项用#号注释掉,

将/etc/sysconfig/network-scipts/ifcfg-eth0文件中的GATEWAY也注释掉,

重启拨号,OK了,终于OK了,倒杯茶,点根烟庆祝一下吧!!!

相关文章
相关标签/搜索