zoukankan      html  css  js  c++  java
  • Linux下pppoe客户端拔号--pppoe-setup

    Linux下pppoe客户端拔号--pppoe-setup

    root@jlive:~#pppoe-setup
    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:
    #拔号接口名

    LOGIN NAME

    Enter your Login Name (default 8280):
    #ISP(电信,长城等)提供的用户名

    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 br0):
    #连接到PPPoE调制解调器的接口,我这里配置了桥接,所以用的br0

    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

    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设置,为空则使用ISP提供的DNS

    PASSWORD

    Please enter your Password:
    Please re-enter your Password:
    #拔号密码

    USERCTRL

    Please enter 'yes' (three letters, lower-case.) if you want to allow
    normal user to start or stop DSL connection (default yes):
    #是否允许普通用户拔号

    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

    Do you want to start this connection at boot time?
    Please enter no or yes (default no):

    ** Summary of what you entered **

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


    root@jlive:~#ifconfig ppp0
    ppp0: flags=4305  mtu 1492
            inet 10.0.0.37  netmask 255.255.255.255  destination 10.0.0.1
            ppp  txqueuelen 3  (Point-to-Point Protocol)
            RX packets 2767  bytes 1243954 (1.1 MiB)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 3885  bytes 773951 (755.8 KiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    root@jlive:~#pppoe-status
    pppoe-status: Link is up and running on interface ppp0
    8: ppp0: mtu 1492 qdisc pfifo_fast state UNKNOWN qlen 3
        link/ppp
        inet 10.0.0.37 peer 10.0.0.1/32 scope global ppp0
           valid_lft forever preferred_lft forever

    注:没有设置开机自动拔号的话,每次启动系统后都要手动拔一次ifup ppp0或pppoe-start
  • 相关阅读:
    angular源码分析:angular中$rootscope的实现——scope的一生
    angular源码分析:图解angular的启动流程
    angular源码分析:angular的整个加载流程
    angular源码分析:injector.js文件分析——angular中的依赖注入式如何实现的(续)
    angular源码分析:angular中jqLite的实现——你可以丢掉jQuery了
    第二章:互联网的进化成型
    angular源码分析:angular的源代码目录结构说明
    angular源码分析:angular中各种常用函数,比较省代码的各种小技巧
    angular源码分析:angular中的依赖注入式如何实现的
    【Linux】Shell基础命令、文件软(硬)链接的理解
  • 原文地址:https://www.cnblogs.com/lixuebin/p/10814410.html
Copyright © 2011-2022 走看看