Results 1 to 3 of 3
I'm using ZyXEL 660HW T2 router for my internet connection. The router is already set up.., my connection is working on winXP(just plug the cable and that's it).
How to ...
- 01-13-2011 #1Just Joined!
- Join Date
- Mar 2010
- Posts
- 6
Internet connection problem, help please..
I'm using ZyXEL 660HW T2 router for my internet connection. The router is already set up.., my connection is working on winXP(just plug the cable and that's it).
How to connect my suse 11.2 to internet ?
I tried to setup in YaST --> Network Settings
What to do next ? Please help. Thank you !
**********************************
---------------------------------------Code:OUTPUT OF "lspci": linux-1c1l:~ # lspci 00:00.0 Host bridge: Intel Corporation 82G33/G31/P35/P31 Express DRAM Controller (rev 02) 00:01.0 PCI bridge: Intel Corporation 82G33/G31/P35/P31 Express PCI Express Root Port (rev 02) 00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01) 00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01) 00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 01) 00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01) 00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01) 00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01) 00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01) 00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01) 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1) 00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01) 00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01) 00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01) 00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01) 01:01.0 Multimedia audio controller: C-Media Electronics Inc CM8738 (rev 10) 01:02.0 Communication controller: Conexant Systems, Inc. SoftV92 SpeakerPhone SoftRing Modem with SmartSP (rev 01) 02:00.0 Ethernet controller: Attansic Technology Corp. L1 Gigabit Ethernet Adapter (rev b0) 04:00.0 VGA compatible controller: ATI Technologies Inc RV515 [Radeon X1300] 04:00.1 Display controller: ATI Technologies Inc RV515 [Radeon X1300] (Secondary)
Code:OUTPUT OF "ifconfig -a": linux-1c1l:~ # ifconfig -a eth0 Link encap:Ethernet HWaddr 00:1D:60:89:9A:2D inet6 addr: fe80::21d:60ff:fe89:9a2d/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:4111 errors:0 dropped:0 overruns:0 frame:0 TX packets:3247 errors:0 dropped:0 overruns:0 carrier:2 collisions:0 txqueuelen:1000 RX bytes:1198905 (1.1 Mb) TX bytes:1108386 (1.0 Mb) 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:70 errors:0 dropped:0 overruns:0 frame:0 TX packets:70 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:4020 (3.9 Kb) TX bytes:4020 (3.9 Kb)Last edited by MikeTbob; 01-14-2011 at 12:39 AM. Reason: Added Code Tags
- 01-14-2011 #2
What happens when you go into Yast? Is the device not listed or something?
Try the command line and use sudo or login as root, depends on your system.
Code:ifconfig eth0 up
Code:dhcpcd eth0
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 02-12-2011 #3Just Joined!
- Join Date
- Apr 2005
- Location
- Perth, Western Australia
- Posts
- 11
answer these questions first:
1) Is dhcp setup on the router or do you want it setup on this unit?
2) if this is a server and you have dhcp installed test it with:
ps auxf | grep dhcpd
if you get only a single line output it's not running:
ex: ps auxf | grep dhcpd
root 5539 0.0 0.0 3232 728 pts/1 S+ 08:42 0:00 \_ grep dhcpd
this indicates that dhcp is not running, therefore if you have dhcp installed and running on your router which I suspect it is based on the fact that you can plug your PC into it and it works.
What you need to do is either:
a) setup the suse to be a dhcp client
or
b) hard code a IP Address on the Suse system
Is this Suse unit supposed to be a server? if so then you will want to "hard code" the IP address. Go through yast to do this.
Another option is to hardcode this yourself by going to /etc/sysconfig/network
see if there is a file named ifcfg-eth0, if so open it with vi.
check that the contents resembles this one:
BOOTPROTO='static'
IPADDR='192.168.2.249/24'
BROADCAST='192.168.2.255'
LLADDR='00:15:17:c4:c3:ec'
STARTMODE='onboot'
NAME='82575EB Gigabit Network Connection'
hope this helps.
Jon


Reply With Quote