Re: [Tutor] Python code to connect using PPPoE

2007-01-29 Thread Johan Geldenhuys
2007 12:25 AM To: tutor@python.org Subject: Re: [Tutor] Python code to connect using PPPoE Hi Johan, PPPoE is both in the Linux Kernel (for the low level work) and as some executables and scripts. It fou want to establish a connection from a Python script (E.G. ehn the computer has no internet

Re: [Tutor] Python code to connect using PPPoE

2007-01-26 Thread Hugo González Monteverde
Hi Johan, PPPoE is both in the Linux Kernel (for the low level work) and as some executables and scripts. It fou want to establish a connection from a Python script (E.G. ehn the computer has no internet access and you need it) The best way would be to call the appropriate utilities, and

[Tutor] Python code to connect using PPPoE

2007-01-24 Thread Johan Geldenhuys
Hi all, I don't know if this the right place to ask the question, but I did some Googling and struggled to get decent examples of code to use for PPPoE connection. I have a wireless modem that uses PPPoE to connect and want to use Python to connect to the internet through this modem using

Re: [Tutor] Python code to connect using PPPoE

2007-01-24 Thread Kent Johnson
Johan Geldenhuys wrote: Hi all, I don't know if this the right place to ask the question, but I did some Googling and struggled to get decent examples of code to use for PPPoE connection. I have a wireless modem that uses PPPoE to connect and want to use Python to connect to the

Re: [Tutor] Python code to connect using PPPoE

2007-01-24 Thread Johan Geldenhuys
PROTECTED] Cc: tutor@python.org Subject: Re: [Tutor] Python code to connect using PPPoE Johan Geldenhuys wrote: Hi all, I don't know if this the right place to ask the question, but I did some Googling and struggled to get decent examples of code to use for PPPoE connection. I have a wireless

Re: [Tutor] Python code to connect using PPPoE

2007-01-24 Thread Kent Johnson
Johan Geldenhuys wrote: Kent, I want to establish the connection with Python. I think in Linux you can use a PPPoE package to make life easier, but I don't want to use the Kernel to do that. If you are on Linux, maybe you can use os.command() to control rp-pppoe.

Re: [Tutor] Python code to connect using PPPoE

2007-01-24 Thread Johan Geldenhuys
Is there a module that I can use for this or is it a os function? Johan -Original Message- From: Kent Johnson [mailto:[EMAIL PROTECTED] Sent: 24 January 2007 04:39 PM To: [EMAIL PROTECTED] Cc: tutor@python.org Subject: Re: [Tutor] Python code to connect using PPPoE Johan Geldenhuys

Re: [Tutor] Python code to connect using PPPoE

2007-01-24 Thread Kent Johnson
@python.org Subject: Re: [Tutor] Python code to connect using PPPoE Johan Geldenhuys wrote: Kent, I want to establish the connection with Python. I think in Linux you can use a PPPoE package to make life easier, but I don't want to use the Kernel to do that. If you are on Linux, maybe you can use