PPPoE Connection on RHEL5

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat PPPoE Connection on RHEL5
# 1  
Old 05-25-2011
Java PPPoE Connection on RHEL5

Hi,

I am having broadband connection, I need to connect broadband internet through eth0. Please give me some use full information for configuring this.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. IP Networking

authentication of VM's via PPPoE

I have two VM's running on Ubuntu box.Their name and IP addresses are give below. nas 192.168.129.153 home_user 192.168.129.152 I establish a ppp connection between the two machines #nas (server) sudo pppd noauth local lock defaultroute... (0 Replies)
Discussion started by: karthik.sharma
0 Replies

2. Linux

Unable to setup ODBC connection in RHEL5 64 bit and MySql 5.0

Hi , I am unable to setup ODBC connection in RHEL5 64 bit and MySql 5.0 I had modified ODBC.ini file , set the env variables such as LD_LIBRARY_PATH, ODBCINI , ODBCSYSINI etc . Getting the error as Data source name not found, and no default driver specified ERROR: Could not SQLConnect ... (0 Replies)
Discussion started by: roopalidalvi231
0 Replies

3. Ubuntu

PPPOE + Ubuntu = Frustrating

Hii everyone, I will be explaining what kind of problem I am having with Ubuntu and PPPOE. I have dual booted my PC with Win 7 and Ubuntu 10.10 Previously, whenever I use to start my ubuntu, internet automatically used to start up.. .no problems. I had created a DSL connection through... (0 Replies)
Discussion started by: zsycho
0 Replies

4. Slackware

pppoe-start not working

Hello. I'm new here and i'm new to slack (concept) as well. I made a connection for pppoe with pppoe-setup, bringed up eth0 with ifconfig but when i try pppoe-connect i get "Cannot determine ethernet address for proxy ARP" and with pppoe-start i get "child pppd process terminated". How can i make... (0 Replies)
Discussion started by: editheraven
0 Replies

5. Solaris

Solaris 10 ftp connection problem (connection refused, connection timed out)

Hi everyone, I am hoping anyone of you could help me in this weird problem we have in 1 of our Solaris 10 servers. Lately, we have been having some ftp problems in this server. Though it can ping any server within the network, it seems that it can only ftp to a select few. For most servers, the... (4 Replies)
Discussion started by: labdakos
4 Replies

6. SCO

pppoe

Greetings... I'm looking for a pppoe client for SCO SYS_V can u guys gimme some help ? a website address or even the program name would be just fine. Thanx (1 Reply)
Discussion started by: nEuRoMaNcEr
1 Replies

7. UNIX for Dummies Questions & Answers

PPPoE + ADSL on FreeBSD 4.4

Hi everyone, This is basically my problem. I setup freebsd, and wanted to get my adsl connection up which uses pppoe to connect. I followed the steps in this (http://free.mine.nu/~squirrel/PPPoE/FreeBSD%20PPPoE%20Howto.htm) manual and configured everything successfully. The problem begins when i... (7 Replies)
Discussion started by: Luftwaffe
7 Replies

8. UNIX for Dummies Questions & Answers

dns/pppoe Problems

I would appreciate any help anyone could give. I am having DNS problems... Here are the facts: linux: 2.2.16 Distrib: SUSE 7.0 pppd: rp-pppoe ISP: Verizon Avenue IP: Dynamic DNS: 10.5.0.65 ??? Default Gateway: 10.5.0.65 ???? I have tried putting the above IP into /etc/resolv.conf with... (3 Replies)
Discussion started by: Recon
3 Replies
Login or Register to Ask a Question
pppoec(1M)						  System Administration Commands						pppoec(1M)

NAME
pppoec - PPPoE chat utility SYNOPSIS
pppoec [-omillisecs] [-smillisecs] [-v] device [service [ [except]server... [only]]] pppoec [-omillisecs] [-v] -i [device] DESCRIPTION
The pppoec utility implements the client-side negotiation of PPPoE. It is intended to be used with the pppd(1M) connect option, in the same manner as the chat(1M) utility is used for asynchronous dial-up PPP. When given with the -i flag, pppoec sends out a broadcast query on the given interface named by the device parameter. You can specify no other arguments in this mode. All responding PPPoE servers and the offered services are displayed on standard output. Otherwise, when given without the -i flag, pppoec does the full PPPoE client-side negotiation. The device parameter is the intended Ether- net interface, and must already be plumbed with sppptun(1M). The optional service parameter specifies a particular service desired; other offered services will be ignored. The optional server parameter specifies a specific server desired. You can specify server as an Ethernet address in the usual x:x:x:x:x:x format (with "*" in any of the six byte positions interpreted to mean "any"), or as a symbolic name resolved through /etc/ethers (or NIS), or as a PPPoE access concentrator name. The sense of the match (true or false) can be inverted by specifying the keyword except before this string. This parameter can be specified more than once, and the first match is taken. If you specify the server parameter, then the selected servers become "preferred." If no preferred server responds, then the first respond- ing server is used instead. To exclude non-matching servers entirely, append the keyword only. OPTIONS
The following options are supported: -i Sends out broadcast query over interface specified by device. -o Sets the initial wait time in milliseconds for PADO from the server before PADI is retried. The default is 500 milliseconds for nor- mal operation, or 3000 milliseconds (3 seconds) for inquiry (-i) mode. -s Sets the initial wait time in milliseconds for PADS from the server before PADR is retried. The default is 2000 milliseconds (2 sec- onds). -v Displays verbose progress messages, including all PPPoE messages sent, and all state machine transitions. You normally do not need to adjust the parameters set with -o and -s. They are provided for coping with unusually slow servers. OPERANDS
The following operands are supported: device plumbed Ethernet interface server preferred server or, if you specify only, the specified server service desired service; other available services are ignored EXAMPLES
Example 1 Connecting to Any Service on hme0 The following command enables you to connect to any PPPoE service on hme0: # /usr/bin/pppd sppptun plugin pppoe.so connect "/usr/lib/inet/pppoec hme0" debug Often, a command such as the preceding is specified in an /etc/ppp/peers file instead. For example, enter the following in /etc/ppp/peers/myisp: sppptun plugin pppoe.so connect "/usr/lib/inet/pppoec hme0" debug To invoke the PPP connection described in the file, enter: % /usr/bin/pppd call myisp Note that, because the /etc/ppp/peers files are considered privileged by pppd, you need not be root to invoke the preceding command. Example 2 Connecting to a Particular Service A more complex example: on hme0, connect to only the internet service offered by PPPoE servers with access concentrator name isp, but not to any Ethernet addresses starting with 40:0:1a. # /usr/lib/inet/pppoec hme0 internet except 40:0:1a:*:*:* isp only Note that the except 40:0:1a:*:*:* filter must come before isp, because the filters are first-match. EXIT STATUS
The following exit values are returned: 0 Successful completion. >0 An error occurred. FILES
/usr/lib/inet/pppoec executable command /dev/sppptun Solaris PPP tunneling device driver. /etc/ppp/connect-errors usual location of error output (see DIAGNOSTICS, below) ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWpppdt | +-----------------------------+-----------------------------+ SEE ALSO
pppd(1M), sppptun(1M), pppoed(1M), sppptun(7M) RFC 2516, Method for Transmitting PPP Over Ethernet (PPPoE), Mamakos et al, February 1999 DIAGNOSTICS
Error messages are written to standard error, which is normally redirected by pppd to /etc/ppp/connect-errors. The errors can also be redi- rected to pppd's standard output by using the updetach option. If you specify the -v, verbose progress messages are displayed, including all PPPoE messages sent, and all state machine transitions. Spec- ifying the updetach or nodetach pppd option is helpful when using verbose mode. SunOS 5.11 9 Jan 2002 pppoec(1M)