Results 31 to 40 of 98
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-13-2012 #31
Ask the clerk for an RJ-45 cable cat-5/6
- 03-13-2012 #32Just Joined!
- Join Date
- Jul 2011
- Posts
- 55
- 03-14-2012 #33
That is fine. cat-5/6 was meant as cat-5 or cat-6 cable.
- 03-14-2012 #34Just Joined!
- Join Date
- Jul 2011
- Posts
- 55
Robert and Jay,
Now I have disabled wireless and connect my Debian with LAN 1 on the back of my router using the Network Cable RJ45 CAT5.
Can you help me configure the wired connection or point me to a good tutorial on how to do that.
Thank You in advance !
AmandaLast edited by amanda099; 03-15-2012 at 12:10 AM.
- 03-15-2012 #35
The config in the first post looked to be OK. Check to see if the interface has been enabled with;
If it hasn't then simply enable it with;Code:ifconfig
Code:ifup eth0
- 03-15-2012 #36Just Joined!
- Join Date
- Jul 2011
- Posts
- 55
Robert,
Here is the output of ifconfig
lucky@cornucopia:~$ sudo ifconfig
eth0 Link encap:Ethernet HWaddr 20:cf:30:63:53:bb
inet addr:192.168.0.15 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::22cf:30ff:fe63:53bb/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:23 errors:0 dropped:0 overruns:0 frame:0
TX packets:38 errors:0 dropped:0 overruns:0 carrier:1
collisions:0 txqueuelen:1000
RX bytes:2335 (2.2 KiB) TX bytes:6009 (5.8 KiB)
Interrupt:36
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:112 errors:0 dropped:0 overruns:0 frame:0
TX packets:112 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:22057 (21.5 KiB) TX bytes:22057 (21.5 KiB)
It looks like there's something wrong in the 1. paragraph. How do you interpret it ?
Amanda
- 03-15-2012 #37Just Joined!
- Join Date
- Jul 2011
- Posts
- 55
Does this mean that the interface hasn't been enabled ?
Should I just enable the wired connection with
ifup eth0
?
Amanda
- 03-15-2012 #38That's your network card, and you seem to have a valid IP address from your router.Code:
eth0 Link encap:Ethernet HWaddr 20:cf:30:63:53:bb inet addr:192.168.0.15 Bcast:192.168.0.255 Mask:255.255.255.0
If you would like, you can test for a connection to the Internet, you can do the following command:
That will send 4 ping requests to Google. The results, if good, should look similar to this:Code:ping -c 4 www.google.com
Code:$ ping -c 4 www.google.com PING www.l.google.com (173.194.68.103) 56(84) bytes of data. 64 bytes from qa-in-f103.1e100.net (173.194.68.103): icmp_req=1 ttl=44 time=33.1 ms 64 bytes from qa-in-f103.1e100.net (173.194.68.103): icmp_req=2 ttl=44 time=34.3 ms 64 bytes from qa-in-f103.1e100.net (173.194.68.103): icmp_req=3 ttl=44 time=33.1 ms 64 bytes from qa-in-f103.1e100.net (173.194.68.103): icmp_req=4 ttl=44 time=34.1 ms --- www.l.google.com ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 3003ms rtt min/avg/max/mdev = 33.136/33.713/34.382/0.571 ms
Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 03-15-2012 #39Just Joined!
- Join Date
- Jul 2011
- Posts
- 55
Jay,
I was me who assigned this static IP to it....you seem to have a valid IP address from your router.
The output ofisCode:ping -c 4 www.google.com
And I can not open any website. It looks like I have no connection.Code:ping: unknown host www.google.com
Amanda
- 03-16-2012 #40
You need to ensure that your /etc/resolv.conf contains your DNS server:
Code:search your domain nameserver dns server 1 nameserver dns server 2
Also lets ensure you have a route configured. What is the output from the following:
Code:route -n


1Likes
Reply With Quote

