Re: [Cooker] nic configuration for @home (the wave)

2000-06-26 Thread CPT KIDD

try calling @home service.  they can direct you to their website which "shows"
your current ip#/gateway #/dns #'s.  once you get these, use netconf (or
linuxconf  netconf) and enter the #'s in directly.  for you email address smp
#'s etc...use actual "numbers #" and not "$mail" (or characters).

the above is how i do mine. somewhat difficult the first 1 or 2 times but is
easy after you learn it.  also, remeber to restart the network
(linuxconf/netconf does this automatically) after you make changes.

dunno about dhcp or bootp...tried dhcp and didn't work.

think cox also has a "howto" page on the @home and linux/unix (or it maybe
titled other o/s's...dunno)...you should find it in support  how to setup
@home (and maybe "advanced setup"...etc)

On Fri, 23 Jun 2000, you wrote:
 Hi.
 
 I'm have cable modem. I'm trying to get my linux machine two work with the 
 at home service.  @home uses DHCP.  Hence I must configure my linux box run 
 the dhcp client.  I tried the following command but it still failed,
dhcpcd -h hostname eth0
 
 If anyone is familiar with setting up linux to work with the Cable modem  
 your help is appreciated.
 
 p.s. I running redhat6.0
 hamada
 
 
 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
-- 

My ICQ#:  36645898

-
Created with Mandrake 7.0!
http://www.linux-mandrake.com




[Cooker] nic configuration for @home (the wave)

2000-06-24 Thread Hamada Amer



Hi.

I'm have cable modem. I'm trying to get my linux machine two work with the 
at home service.  @home uses DHCP.  Hence I must configure my linux box run 
the dhcp client.  I tried the following command but it still failed,
   dhcpcd -h hostname eth0

If anyone is familiar with setting up linux to work with the Cable modem  
your help is appreciated.

p.s. I running redhat6.0
hamada



Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com




RE: [Cooker] nic configuration for @home (the wave)

2000-06-24 Thread Geoffrey Lee




 Hi.

 I'm have cable modem. I'm trying to get my linux machine two work
 with the
 at home service.  @home uses DHCP.  Hence I must configure my
 linux box run
 the dhcp client.  I tried the following command but it still failed,
dhcpcd -h hostname eth0




maybe it's not dhcp but bootp?

i have no problems what are you using? normal cable modem? if so then
configure the nic with linuxconf or soemthijng and set onboot to yes, and
bring it up with either bootp (/sbin/pump) or dhcp.




 If anyone is familiar with setting up linux to work with the Cable modem
 your help is appreciated.

 p.s. I running redhat6.0
 hamada




this is a mandrake list.





 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com





Re: [Cooker] nic configuration for @home (the wave)

2000-06-24 Thread Ron Stodden

Hamada Amer wrote:

 I'm have cable modem. I'm trying to get my linux machine two work with the
 at home service.  @home uses DHCP.  Hence I must configure my linux box run
 the dhcp client.  I tried the following command but it still failed,
dhcpcd -h hostname eth0
 
 If anyone is familiar with setting up linux to work with the Cable modem
 your help is appreciated.

Is dhclient installed?   If not, download it from the Internet
Software Consortium web site.

As root:

set up /etc/dhclient.conf to contain:

interface "eth0" { send host-name "your client id" ; }

then at the end of /etc/rc.d/rc.local add:

dhclient

and reboot.

Read man dhclient, dhclient.conf, dhclient.leases

-- 

Regards,

Ron. [AU] - sent by Mandrake Linux.




Re: [Cooker] nic configuration for @home (the wave)

2000-06-24 Thread Ellick Chan

On Sat, 24 Jun 2000, you wrote:
 Hi.
 
 I'm have cable modem. I'm trying to get my linux machine two work with the 
 at home service.  @home uses DHCP.  Hence I must configure my linux box run 
 the dhcp client.  I tried the following command but it still failed,
dhcpcd -h hostname eth0
 
 If anyone is familiar with setting up linux to work with the Cable modem  
 your help is appreciated.
 

I have MediaOne, Redhat 6.x for me required me to get a new dhcp package and
compile from www.isc.org.

  p.s. I running redhat6.0
 hamada
 
 
 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
-- 
Regards,

Ellick Chan
[EMAIL PROTECTED]




[Cooker] nic configuration for @home (the wave)

2000-06-18 Thread Hamada Amer


hello,

I'm trying to configure linux so it could use the @home service.
For that I need to use DHCP.

I tried running dhcpcd eth0, but that doesn't work.

If could forward me a series of steps and tests to see if things are 
configured correctly, that would be fantastic.

thanx


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com




Re: [Cooker] nic configuration for @home (the wave)

2000-06-18 Thread David Foresman

Actually, dhcpcd is a DHCP client, dhcpd is the server.
- Original Message - 
From: "Guy T. Rice" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 18, 2000 10:22 PM
Subject: Re: [Cooker] nic configuration for @home (the wave)


 On Sun, 18 Jun 2000, Hamada Amer wrote:
  I'm trying to configure linux so it could use the @home service.
  For that I need to use DHCP.
  
  I tried running dhcpcd eth0, but that doesn't work.
 
 That's actually the reverse of what you want (dhcpcd is a DHCP server,
 you want a DHCP client).
 
  If could forward me a series of steps and tests to see if things are 
  configured correctly, that would be fantastic.
 
 In /etc/sysconfig/network-scripts/ifcfg-eth0, there should be a line
 that says:
 
 BOOTPROTO="dhcp"
 
 If you don't have one, or have one that says BOOTPROTO=something else,
 you need to fix that.  That ought to be all you need to do to enable
 DHCP on your eth0 interface.
 
 




Re: [Cooker] nic configuration for @home (the wave)

2000-06-18 Thread Sebastian Dransfeld

On Sun, 18 Jun 2000, Guy T. Rice wrote:

 On Sun, 18 Jun 2000, Hamada Amer wrote:
  I'm trying to configure linux so it could use the @home service.
  For that I need to use DHCP.
  
  I tried running dhcpcd eth0, but that doesn't work.
 
 That's actually the reverse of what you want (dhcpcd is a DHCP server,
 you want a DHCP client).
 

Nope, "dhcpcd" is the client deamon and "dhcpd" is the deamon.

seb