LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 08-10-2005, 11:42 AM   #1
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Rep: Reputation: 15
Instllation of the Terayon modem


Hi all!

I need the advice how to install this modem in my Fedora Core 4. I have the Ethernet card and Terayon modem. When I enter the "Network configuration" option I see the USB CDC Ethernet driver. I suppose it's what I need. But when I try to activate this device I get this message: "/sbin/adsl-start: line 215: 3380 Terminated $CONNECTION "$@" >dev/null 2>&1". What's wrong? Should I config the IRQ? or something else?

P.S. I found this in logs:

Using interface ppp0
pppoe: ioctl(SI0CGIFMWADDR): Session 0: No such device
Connect: ppp0 <---> /dev/pts/3
Modem hangup
Connection terminated

Please help! I find nothing relevant in the Internet

Last edited by tornado_11; 08-10-2005 at 12:22 PM.
 
Old 08-10-2005, 01:13 PM   #2
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
I don't think you need adsl-start. Is your connection ADSL or Cable? In either case, you probably just need a DHCP configuration with it being connected via ethernet.
 
Old 08-10-2005, 01:36 PM   #3
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Original Poster
Rep: Reputation: 15
What's that DHCP? I found some information in Google But I still have so many questions

1. When I use Network configuration I have two options
a. eth0 Marvell Gigabyte Ethernet Controller
b. eth1 USB CDC Ethernet driver

2. I use adsl-setup and provide the DNS of my provider.
Logs:
a. eth0
Connect: ppp0 <--> /dev/pts/3
LCP: timeout sending Config-Request
Connection terminated
ppp0: Timeout waiting for PADO pockets
b. eth1
Unknown interface
Modem hangup

I have ADSL connection. So what should I use eth0 or eth1? And how to config DHCP?

Thank you!
 
Old 08-10-2005, 01:37 PM   #4
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
If you use a DSL modem, you *generally* don't need to use adsl-setup, that's intended for PPPoE-style connections. Just do a standard network config with "automatic configuration".
 
Old 08-10-2005, 01:49 PM   #5
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Original Poster
Rep: Reputation: 15
Thaaaaanks! I selected Ethernet connection and not xDSL, one mouse click and I have my connection active!
But now I have the next problem! When I type address in my browser I get : <address> couldn't be found. Please check name and try again. What have I lost?

P.S when I do ping to my provider DNS I get:

Network is unreachable

Last edited by tornado_11; 08-10-2005 at 01:51 PM.
 
Old 08-10-2005, 01:56 PM   #6
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
Please post the output of the 'ifconfig' and 'route' commands.
 
Old 08-10-2005, 02:07 PM   #7
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Original Poster
Rep: Reputation: 15
route

Destination Gateway Genmask Flags Metric Ref Use Iface

172.24.128.0 * 255.255.224.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0
ifconfig

Link encap: Ethernet HWaddr 00:0f:ea:fb:30:94
inet addr: 172.24.148.218 Bcast:255.255.255.255 Mask 255.255.224.0
inet6 addr: fe80::20f:eaff:fefb:3094/64 Scope Link
UP BROADCAST RINNING MULTICAST MTU:1500 Metric:1
RX packets:8936 errors:0 dropped:0 overruns:0 frame:0
TX packets:413 errors:0 droppped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1746128 (1.6 MiB) TX bytes:21107 (26.4 KiB)


lo Link encap: Local Loopback
inet addr:127.0.0.1 Mask 255.0.0.0
inet6 addr ::1/128 Scope: Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:3352 errors:0 droppped:0 overruns:0 frame:0
TX packets:3352 errors:0 droppped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:3425455 (3.2 MiB) TX bytes:3425455 (3.2 MiB)


Last edited by tornado_11; 08-10-2005 at 02:33 PM.
 
Old 08-10-2005, 02:27 PM   #8
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
First you'll want to add:
"route add default gw MODEM_IP"
and
"route add -net MODEM_NET netmask MODEM_NETMASK dev eth0"

MODEM_IP might be, say, 192.168.1.1. MODEM_NET would be 192.168.1.0, and MODEM_NETMASK 255.255.255.0.
 
Old 08-10-2005, 02:42 PM   #9
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Original Poster
Rep: Reputation: 15
I tried the first and got

SIOCADDRT: Network is unreachable

I added the default gw of my provider and it was ok I suppose, there was no Network unreachable.

the gw is 172.24.128.1

how should I choose the MODEM_NET and MODEM_MASK?

Last edited by tornado_11; 08-10-2005 at 02:51 PM.
 
Old 08-10-2005, 02:51 PM   #10
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
You know what? I accidentally gave the commands to you in the wrong order, sorry. Try them the other way around.
 
Old 08-10-2005, 02:57 PM   #11
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Original Poster
Rep: Reputation: 15
I tried the second command and got:
SI0CADDRT: No such device

Was it mistake to use default gw of my provider?
 
Old 08-10-2005, 03:05 PM   #12
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
Hrrm, try pinging at this point and see if it works.
 
Old 08-10-2005, 03:09 PM   #13
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Original Poster
Rep: Reputation: 15
No Nothing changed

Network is unreachable for my provider IP any other Unknown host

;(
 
Old 08-10-2005, 03:22 PM   #14
tornado_11
Member
 
Registered: Aug 2005
Posts: 30

Original Poster
Rep: Reputation: 15
It's strange. I see now in the Configure Network Setting the "Automatically obtain...." is disabled but "Static IP address..." is enabled. Is it possible to enable "Automatic obtain..."?
 
Old 08-10-2005, 03:25 PM   #15
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
It should be possible, and that's what you really need.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help for Internal Modem driver Instllation samlog1960 Linux - Hardware 14 12-29-2007 06:55 AM
Baseline instllation Ghent SUSE / openSUSE 1 08-23-2005 01:17 PM
Terayon Cable Modem lmanwarren Mandriva 6 08-09-2005 05:47 PM
Terayon modem problems luminiscent Linux - Newbie 4 05-20-2004 09:33 PM
Conexant modem instllation - RH8 Dek Linux - Software 6 04-22-2003 10:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 02:59 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration