Olá! Esse artigo te ensinará como configurar o linux ser cliente de um servidor PPPoE, muito usado em redes ADSL e wireless. Nesse artigo usaremos o Linux Slackware como referência. Nota imporante: Se você estiver usando o Linux Slackware 10.2, deverá substituir a palavra "adsl" por "pppoe" nos comandos abaixo. Os principais comandos para trabalhar com conexões PPPoE são: - adsl-setup: configura a conexão. Informações sobre nome de usuário, senha, servidores dns são digitados aqui. - adsl-start: inicia conexão PPPoE. - adsl-stop: finaliza conexão PPPoE. - adsl-status: informa se a conexão PPPoE está ativa. Primeiro passo: Configurar conexão root@servidor:~# adsl-setup Algumas perguntas serão feitas e deverão ser respondidas corretamente, as respostas estão destacadas em vermelho e os comentários em verde: Welcome to the Roaring Penguin ADSL client setup. First, I will run some checks on your system to make sure the PPPoE client is installed properly... Looks good! Now, please enter some information: USER NAME >>> Enter your PPPoE user name (default [email protected]): meulogin 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 ethn, where 'n' 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): (tecle ENTER) DNS Please enter the IP address of your ISP's primary DNS server. If your ISP claims that 'the server will provide 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: server PASSWORD >>> Please enter your PPPoE password: (digite a senha) >>> Please re-enter your PPPoE password: (redigite a senha) 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 ** Summary of what you entered ** Ethernet Interface: User name: Activate-on-demand: DNS addresses: Firewalling: eth0 meulogin No Supplied by ISP's server NONE >>> Accept these settings and adjust configuration files (y/n)? y Adjusting /etc/ppp/pppoe.conf Adjusting /etc/ppp/pap-secrets and /etc/ppp/chap-secrets (But first backing it up to /etc/ppp/pap-secrets-bak) (But first backing it up to /etc/ppp/chap-secrets-bak) Congratulations, it should be all set up! Type 'adsl-start' to bring up your ADSL link and 'adsl-stop' to bring it down. Type 'adsl-status' to see the link status. root@servidor:~# No caso acima, você deverá substituir meulogin pelo seu nome de usuário fornecido pelo provedor. Se você usa Velox, informe o nome de usuário e a senha conforme o número do seu telefone, ddd + número, exemplo: 3155557070. Segundo passo: Conectando Agora, ligue a placa de rede corretamente no modem ADSL ou outro equipamento equivalente. Vamos iniciar a conexão, digite o comando: root@servidor:~# adsl-start Após digitar o comando, o seguinte resultado deve ser exibido: root@servidor:~# adsl-start . Connected! A saida acima significa que a conexão foi estabelecida corretamente e agora você já pode usar a internet normalmente. Para verificar se a conexão está ativa, digite o comando: root@servidor:~# adsl-status adsl-status: Link is up and running on interface ppp0 ppp0 Link encap:Point-to-Point Protocol inet addr:172.31.241.2 P-t-P:172.31.240.2 Mask:255.255.255.255 UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1492 Metric:1 RX packets:3 errors:0 dropped:0 overruns:0 frame:0 TX packets:3 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:3 RX bytes:54 (54.0 b) TX bytes:54 (54.0 b) root@servidor:~# No exemplo acima, o ip adquirido foi 172.31.241.2. Para finalizar a conexão, digite: root@servidor:~# adsl-stop Killing pppd (21729) Killing adsl-connect (21711) root@servidor:~# Problemas comuns Nem sempre as coisas ocorrem como esperado e acabam não funcionando de primeira. Veja alguns exemplos de problemas comuns e como resolver: root@servidor:~# adsl-start ................TIMED OUT /usr/sbin/adsl-start: line 194: 16888 Terminated >/dev/null 2>&1 root@servidor:~# $CONNECT "$@" O erro acima é típico em casos em que o servidor PPPoE não foi encontrado ou as credênciais login/senha não estão corretos. Verifique se o cabo de rede está corretamente conectado e se a infraestrutura da rede está on-line (modem adsl e sinal adsl ou radio wireless/placa pci). Para descobrir se o problema é infraestrutura ou login/senha, procure pelo servidor PPPoE, se ele responder, verifique as credênciais login/senha, se não responder, verifique sua infraestrutura. Procure o servidor com o comando: root@servidor:~# pppoe -A Access-Concentrator: tmsoftlabs Service-Name: myauth Got a cookie: f7 88 13 11 56 b0 e5 e7 1b 48 18 7d cd b7 0a c4 4f 1c 00 00 AC-Ethernet-Address: 00:0b:ac:24:ca:3f -------------------------------------------------root@servidor:~# No exemplo acima, o servidor PPPoE respondeu a busca, verifique as configurações novamente, ou torne a reconfigurar a conexão com adsl-setup. root@servidor:~# pppoe -A pppoe: Timeout waiting for PADO packets root@servidor:~# Agora o servidor PPPoE não respondeu, verifique a infraestrutura de rede.