CentOS下pppoe拨号设置

简介:

1.查看并安装拨号软件:

1
2
3
[root@redhat ~] # rpm -qa|grep pppoe
[root@redhat ~] # yum -y install rp-pppoe
rp-pppoe.i686 0:3.10-8.el6

2.查看adsl-setup命令所在位置:

1
2
[root@redhat ~] #whereis adsl-setup
adsl-setup:

或者直接搜索pppoe信息,yum search pppoe。

3.设置拨号:

1
[root@redhat ~] # pppoe-setup

首先,你会看到欢迎信息。

1
2
Welcome to the PPPoE client setup.  First, I will run some checks on
your system to  make  sure the PPPoE client is installed properly...

然后要求我们输入登陆名。

1
2
LOGIN NAME 
Enter your Login Name (default root): (这里填宽带连接的用户名)

接着,要求我们选择使用的网络接口。我们这时候,填入我们刚刚设置的那个网卡。对于大多数只有一个网卡的朋友而言,默认eth0就可以了。 

1
2
3
4
5
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):

接下来,询问的是,adsl连接以后,是否持续保持连接。或者是自动的断开,在指定的时间(以秒数计算)内。多数情况下,我们希望手动的打开关闭连接。所以这里选择默认的no。 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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): (no)
再下来,就是dns了。建议你输入ISP的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. (server)

帐号密码是必须,输入两次。密码显示风格和其他的地方一样,不显示在屏幕上。这个,我不知道改怎么填写。太高深的问题了。希望你将你的答案和我分享。:P。 

PASSWORD 

1
2
Please enter your Password: (宽带连接密码)
Please re-enter your Password:

下面的设置,是表示是否允许普通用户启用/关闭 ADSL连接。默认是允许。 

1
2
Please enter  'yes'  (two letters, lower- case .)  if  you want to allow 
normal user to start or stop DSL connection (default  yes ): ( yes )

我们看下防火墙选项。这里提供的防火墙可以给你提供基本的安全保护。我不推荐你使用----你最好选择“NONE”选项。无论是什么样的用户使用,我都建议你使用额外的工具来配置防火墙规则(iptables目前看来是一个非常不错的工具)。 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
Start this connection at boot  time

是否在开机时,打开这个连接? 

1
Do you want to start this connection at boot  time ?** ( yes )

所有的配置信息填写完成之后,系统将给出一个报告,完整的显示出你输入的配置信息。如果,你确信你输入的配置信息是正确的,输入yes写入配置文件。输入no放弃配置。 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 )? (y)
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 www.baidu.com就可以了。 

当然关闭连接的话,使用命令adsl-stop就可以了。






      本文转自灬落魄灬  51CTO博客,原文链接:http://blog.51cto.com/smoke520/1895402,如需转载请自行联系原作者

相关文章
|
7天前
|
安全 Linux 数据安全/隐私保护
centos如何将一般用户设置为超级权限
【4月更文挑战第17天】centos如何将一般用户设置为超级权限
24 1
|
3月前
|
Linux 数据安全/隐私保护
CentOS设置IP地址的方法
CentOS设置IP地址的方法
530 0
|
2月前
|
Linux
CentOS8设置网络镜像安装源
CentOS8设置网络镜像安装源
71 0
|
7月前
|
Linux
百度搜索:蓝易云【Centos系统服务器设置时间自动同步!】
通过以上步骤,您可以在CentOS系统服务器上设置时间自动同步。NTP服务将定期与配置的NTP服务器进行通信,以确保系统时间的准确性和同步。
722 0
|
7月前
|
关系型数据库 Linux PostgreSQL
Linux centos8 docker中安装postgresql12.4及远程访问设置
Linux centos8 docker中安装postgresql12.4及远程访问设置
380 0
|
18天前
|
Linux
CentOS 设置静态 IP 配置
防止 CentOS 服务器的 IP 地址更改,可以设置静态 IP 配置,而不是依赖 DHCP(动态主机配置协议)分配 IP 地址。
20 7
|
23天前
|
Linux PHP
zabbix3.0在centos7环境下always_populate_raw_post_data的设置
zabbix3.0在centos7环境下always_populate_raw_post_data的设置
10 0
|
5月前
|
Java Linux 数据安全/隐私保护
百度搜索:蓝易云【centos7系统安装elasticsearch8.7.0,并设置密码访问教程。】
现在,您已经成功安装并设置密码访问Elasticsearch 8.7.0。您可以使用设置的密码来访问和管理Elasticsearch实例。
164 1
|
6月前
|
Linux 数据安全/隐私保护
Centos安装桌面系统并设置成默认启动
Centos安装桌面系统并设置成默认启动
149 0
|
8月前
|
Java 应用服务中间件 Linux
Linux(CentOS7)设置Tomcat为开机启动项
Linux(CentOS7)设置Tomcat为开机启动项
180 0

热门文章

最新文章