位置: 编程技术 - 正文

centos6.5宽带拨号上网的方法(centos8拨号上网)

编辑:rootadmin

推荐整理分享centos6.5宽带拨号上网的方法(centos8拨号上网),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:centos7配置拨号上网,centos 拨号上网,centos8拨号上网,centos7宽带拨号,centos8拨号上网,centos 拨号上网,centos拨号上网pppoe,centos adsl拨号,内容如对您有帮助,希望把文章链接给更多的朋友!

CentOS6以后要安装rp-pppoe这个软件,centos之前的版本是adsl-setup命令安装。

(1)查看是否安装

#rpm -qa|grep rp-pppoe

没有内容输出则没安装,若可以联网使用# yum install rp-pppoe

无法联网则:CentOS安装盘放入光驱

挂载光盘

#mount /dev/cdrom /media

找出文件路径

# find /media -name 'rp-pppoe*'

这个文件没有依赖项,可以直接安装

#rpm -ivh /media/CentOS_6.5_Final/Packages/rp-pppoe-3.-8.el6.i.rpm

(2)设置拨号

#whereis pppoe-setup

#/sbin/pppoe-setup

或#pppoe-setup

开始设置ADSL和DNS信息:

Welcome to the PPPoE client setup. First, I will run some checks on

your system to make sure the PPPoE client is installed properly...

The following DSL config was found on your system:

Device: Name:

ppp0 DSLppp0

Please enter the device if you want to configure the present DSL config

(default ppp0) or enter 'n' if you want to create a new one: ppp0

LOGIN NAME

Enter your Login Name (default root): 中国电信或者网通给你的ADSL用户名,注意电信给的有ad打头

INTERFACE

Enter the Ethernet interface connected to the PPPoE 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← 指定网络接入设备,一块网卡的情况下,一般为默认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): ← 直接按回车,接受默认设置,询问的是,adsl连接以后,是否持续保持连接。或者是自动的断开,在指定的时间(以秒数计算)内。多数情况下,我们希望手动的打开关闭连接。所以这里选择默认的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',

centos6.5宽带拨号上网的方法(centos8拨号上网)

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: ...5 第一个DNS建议手动设置,不然可能连不上(或Enter the DNS information here: server //PPPOE拨号的输入server即可,即动态获得DNS)

Please enter the IP address of your ISP's secondary DNS server.

If you just press enter, I will assume there is only one DNS server.

Enter the secondary DNS server address here: ... 第二个DNS建议手动设置,不然可能连不上

PASSWORD

Please enter your Password: 输入ADSL的连接密码

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

USERCTRL

Please enter 'yes' (three letters, lower-case.) if you want to allow

normal user to start or stop DSL connection (default yes): yes← 填入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

Accept these settings and adjust configuration files (y/n)? y← 配置信息确认无误后,键入y同意设置

** Summary of what you entered **

Ethernet Interface:eth0

User name:

[root@localhost ~]# pppoe-start← 启动ADSL pppoe连接(或# ifup ppp0 //启动ppp0接口)

[root@localhost ~]# pppoe-status 设置完成后我们看看adsl状态

CentOS6.5基本操作常用命令详解 在你准备使用Linux系统作为网站服务器系统之前,我建议大家先学习一些基本的Linux系统的操作命令,这些命令都是在日常操作中和配置Linux服务器网络

CentOS下程序内存空间分配详解 先来看一段简单代码:[cpp]viewplaincopy在CODE上查看代码片派生到我的代码片#includestdio.h#includeunistd.hintmain(){printf(%dn,getpid());while(1);}运行结果:这时另开一

CentOS虚拟机下的相关操作详解 在VM虚拟机中安装完Redhat系统之后如果需要用secureCRT连接linux系统的话操作步骤如下:1.进入linux系统,在终端输入ifconfig(注意,不是windows的ipconfig)结

标签: centos8拨号上网

本文链接地址:https://www.jiuchutong.com/biancheng/359089.html 转载请保留说明!

上一篇:CentOS下永久修改系统时间的方法(centos永久修改主机名)

下一篇:CentOS6.5基本操作常用命令详解(centos6基础命令)

  • 减免的企业所得税计入什么科目
  • 按份共同保证和连带共同保证
  • 个人所得税汇算表
  • 公司亏损汇算清单模板
  • 椅子坐垫有用吗
  • 支付给个人的劳务费需要发票吗
  • 公司滴滴发票是什么意思
  • 工商银行资产负债表
  • 企业所得税可以不交吗
  • 个人从海外买东西自用要交税吗
  • 指定会计科目是
  • 公司注销银行公户怎么注销
  • 房屋出租收入其税收如何计算呢?
  • 亏损结转本年利润会计分录
  • 高新企业如何结转成本
  • 公司收到股东的投资款以后怎么处理
  • 预缴物业费是否符合法律规定
  • 个人捐赠如何抵扣个税30%
  • 年末增值税结转账务处理流程
  • 增值税专用发票可以开电子发票吗
  • 个人独资企业所得税
  • 案例讲解:将自己的房产用于办公使用,在税收的缴纳中该如何把控?
  • 内含报酬率的计算公式插值法
  • 不动产增值税发票抵扣
  • 个体工商户怎么办对公账户
  • 法定代表人的个人债务会执行公司财产么
  • 税盘服务费抵税分录
  • 升级声卡驱动后声音禁用了怎么恢复
  • 投资回报周期是多少天
  • 赠与合同公证收费标准
  • macbook视频怎么用
  • 哪家银行理财产品收益率高
  • 为实习生支付人身意外伤害保险如何进行账务处理?
  • 废品损失科目的期末余额在借方表示什么?
  • PHP:mdecrypt_generic()的用法_Mcrypt函数
  • 增值税专用发票的税率是多少啊
  • 企业清算时
  • Chrome谷歌浏览器网页
  • 微信php开发包
  • vue 响应式自适应布局
  • linuxroot切换
  • iscan扫描仪使用方法
  • 固定资产一次性折旧账务处理
  • 预收账款可以通过什么科目核算
  • 增值税发票税率1%
  • 职工短期薪酬包括哪些
  • 应收账款在贷方为负数表示什么
  • 商贸企业增值税税负率低于1%则存在涉税问题
  • 会务费要纳税调整吗
  • 公益性捐赠要确认递延吗
  • 公司发放员工工资不走账
  • 公司厂房房产税计税依据最新
  • sql server日期相减
  • sql空值用什么表示
  • 如何保证系统异常状态
  • XP系统安装不了游戏
  • winxp显示设置
  • win8.1核心版密钥
  • 'GL_COMBINE_ARB' : undeclared 'GL_RGB_SCALE_ARB' : undeclared 问题
  • 控制台报错是前端问题吗
  • c++服务器与客户端连接
  • 一键清除照片上多余的人
  • linux自动重启程序脚本
  • Unity NGUI添加事件监听(转摘)
  • 表单元素的属性
  • 针对后台列表table拖拽比较实用的jquery拖动排序
  • android教学
  • python随机发红包代码
  • 安卓手机管家是什么
  • jQuery插件封装时如要实现链式编程,需要
  • jquery中validate
  • 南京退林还耕
  • 金条如何销售
  • 财产保险合同的种类
  • 河南省税务局冯伟
  • 社保工资申报错了可以重新申请吗
  • 江苏税务缴费小程序
  • 日本各界
  • 认缴制什么时候开始的?
  • 车辆购置税怎么做账
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设