问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

Linux 系统怎么用电信宽带拨号上网4

发布网友 发布时间:2023-09-14 16:52

我来回答

2个回答

热心网友 时间:2024-12-03 14:18

(1)安装的前提条件

<1>确保安装了网卡并工作正常

使用命令
#ifconfig eth0
查看网卡状态

<2>在系统中不要设置默认路由(网关),让ADSL拨号后自动获得

如果已经设置了默认路由,使用以下方法删除:
在文件 /etc/sysconfig/network/ifconfig-eth0 中删除 GATEWAY= 这一行,然后以root执行:

# service network restart

<3>已经安装了pppd软件包

如果存在文件 /usr/sbin/pppd,则说明已经安装了pppd; 如果未安装,下载安装这个软件包。

(2)安装PPPOE客户端软件

Linux下的PPPOE客户端软件比较多,而且大多使用GNU License,我们推荐使用rp-pppoe
这个软件包。从http://www.roaringpenguin.com/procts/pppoe这个网站上,不仅可以下载
各发布包下的rp-pppoe的二进制软件包,而且可以下载源代码软件包。

我们使用centos下的yum安装方法,来安装rp-pppoe软件包
#yum install rp-pppoe

(3)配置PPPOE客户端软件

<1>配置文件

安装完软件包后,必须配置PPPOE的配置文件/etc/ppp/pppoe.conf,从而让ADSL拨号时使用配置文件中的用户名、密码等参数。

<2>命令配置
# adsl-setup ← 建立ADSL连接

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): ← 填入ADSL连接的用户名

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): ← 指定网络接入设备,一块网卡的情况下,一般为默认eth0

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

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.
Enter the DNS information here: ← 如果知道DNS服务器的信息在此填入。不知道的情况按回车跳过

PASSWORD

Please enter your Password: ← 输入ADSL的连接密码
Please re-enter your Password: ← 再次确认输入ADSL的连接密码

USERCTRL

Please enter 'yes' (two letters, lower-case.) if you want to allow
normal user to start or stop DSL connection (default yes): no ← 填入no,不允许一般用户控制PPPoE的连接

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): 0 ← 输入0,不在这里使用防火墙

Start this connection at boot time

Do you want to start this connection at boot time?
Please enter no or yes (default no): yes ← 填入yes,在系统启动时自动连接ADSL

** Summary of what you entered **

Ethernet Interface: eth0
User name: caun870293@ca.dti.ne.jp
Activate-on-demand: No
DNS: Do not adjust
Firewalling: NONE
User Control: no
Accept these settings and adjust configuration files (y/n)? y ← 配置信息确认无误后,键入y同意设置
Adjusting /etc/sysconfig/network-scripts/ifcfg-ppp0
Adjusting /etc/ppp/chap-secrets and /etc/ppp/pap-secrets
(But first backing it up to /etc/ppp/chap-secrets.bak)
(But first backing it up to /etc/ppp/pap-secrets.bak)

?

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.

(4)启动PPPOE客户端软件
# adsl-start ← 启动ADSL连接
# ← 稍等片刻后若启动成功后出现提示符(无任何提示或Connected意味着连接成功)

如果不成功,请检查网线、ADSL MODEM等物理设备,并查看 /var/log/messages中的信息
/usr/sbin/adsl-stop 关闭和ISP的连接
/usr/sbin/adsl-status 查看当前连接的状态

如果想在Linux系统启动时自动启动ADSL连接,输入以下命令
#chkconfig --add adsl
将在当前的运行级下加入ADSL的自启动脚本

(5)测试
当连接成功后,使用命令 #ifconfig -a 在输出中应该含有关于 ppp0 的一堆信息,其中还绑定了 IP 地址,说明已经从拨号中获 得了IP地址。使用命令 #netstat -nr 查看路由表信息,这时的默认路由应该是上面获得的IP地址。 如果没有默认路由,我们可以手动增加: #route add default gw 上面获得的IP地址使用命令#nslookup www.sina.com.cn 如果解析出新浪的IP,说明已经从拨号中正确获得了DNS服务器最后,使用命令ping某个域名或IP,如果有响应,表示你已经大功告成了。

热心网友 时间:2024-12-03 14:18

参考http://z.baidu.com/question/117454426.html?fr=qrl&cid=89&index=2
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
微信限额20万怎样提到30万 微信怎么提升限额 微信限制额度二十万了怎么办 爱奇艺电视版会员电影没声音 爱奇艺怎么没声音了 爱奇艺万能播放器怎么没声音-爱奇艺播放器没声音修复方法 爱奇艺播放没有声音了怎么回事 主持人刘炽朗诵《采桑子·重阳》 卧室空间大了摆放什么风水好 卧室空间大了摆放什么 中国平安金融集团上海分公司这公司是一家怎样的公司?是骗子吗? 笔记本安装kali linux 系统怎么设置才能正常拨号联网...1 Linux拨号上网17 深度linux系统怎么拨号上网4 Win10打开摄像头提示出现错误怎么解决2 linux下插上一个3G上网卡设备后怎么自动执行脚本,让它自... 女人喜欢穿着暴露性感漂亮的服装,可男人盯着看就说是色狼?为什...13 冉莹颖的写真十分性感动人,男人会介意女人穿着暴露吗? ...右图是菠菜叶片的结构示意图,据图回答下列问题:(1)叶片结构的上表皮... 凌美钢笔好用吗?还是派克钢笔好?21 一个女人穿的那么暴露是为了什么?35 洛克王国石化刺蜥蜴打的过烈火战神吗2 ...一台海尔对开门冰箱,刚好三年压缩机就坏了,维修要1千多,维修1年多... 网络数据也是4G吗?oppor15移动定制版如果换张联通卡语音通话是4G... 女生穿着暴露,是骚还是性感?5 谁给我洛克王国的帕尔萨斯(包母),石化刺蜥蜴,黄金独角兽的蛋 女人穿怎么性感就是想暴露给别人看吗?5 洛克王国石化刺蜥蜴什么时间捉14 是不是女人穿的暴露的一般都比较开放?在约会部落约过好几个夏天... 男朋友很难沟通,我们总是因为一点点小事吵个不停,他根本一点都... 和男朋友总是因为一点小事闹别扭,然后生气了就出去玩,不管完到...2 在linux下,怎么使用PPPoE拨号上网 魔域安装的时候,无论安装到那个盘都提示已经存在,您一定要装装...1 到网吧复制魔域登陆器到2G内存卡在粘贴到另外一台电脑可以吗? windows10系统摄像头无法使用如何解决1 网吧的魔域文件是存放在哪个盘里? 我把魔域的文件夹分成两份,一份装私服,那份还能不能用? 魔域文件问题(高悬赏) WIN10摄像头错误代码0xA00F4271(0x80070...13 WIN10摄像头错误代码0xA00F4271(0x80070...25 我的魔域文件夹 被删了 下载的争霸魔域 玩不起 该 怎么弄啊 清代石碑,求收藏价值和意义10 你好:我的宝宝是个女孩是2007年3月出生,请你帮我起个名字... 清朝石碑值多少钱31 我姓林,谁帮我儿子取个名字?预产期09年3月31日,谢谢 介绍一下清代石碑的价值 原始wxid怎么加好友? 2009年阳历3月28日凌晨2点46分生男孩,劳烦大家帮忙算...1 r15怎么开双4g 清代墓碑是否有价值?1 wxid开头的如何添加好友?