Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: I am trying to connect to a Network

  1. #1
    Join Date
    Aug 2010
    Beans
    11

    I am trying to connect to a Network

    I am trying to connect an old Pentium III running Lubuntu to my school's network through the wired network ethernet protocol with automatic settings, but it isn't connecting! This year, the school got new Windows 7 computers, and the section of the school I am working in had to be rewired due to remodeling. If it has anything to do with the DHCP Client ID, I don't understand much of it at all. MAC Address filtering could also be a problem.

    If it is a DHCP problem, I would need to have access to DHCP Client ID generators that make available IDs. Again, I don't understand DHCP very much. All I know about it is that it can be used for PXE. I have no access to the router, so I can't add exceptions to the filter list for MAC Addresses. I do need help, however. I have access to other computers, so I can still use the Internet.

    The question would be this: Am I blocked because of MAC Address filters, or lack of DHCP Client IDs?

  2. #2
    Join Date
    Feb 2010
    Location
    U.K.
    Beans
    782
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: I am trying to connect to a Network

    Quote Originally Posted by Gladian00b View Post
    The question would be this: Am I blocked because of MAC Address filters, or lack of DHCP Client IDs?
    There's a whole raft of ways to prevent "unknown" devices using a network. Only your network administrator would be able to tell you definitively one way or another what is in place.

  3. #3
    Join Date
    Aug 2010
    Beans
    11

    Re: I am trying to connect to a Network

    OK, but I am assuming this is linked to the new Windows 7 computers. The students are logging into the domain, unlike last year, which they used Novell client services.

  4. #4
    Join Date
    Nov 2008
    Location
    Sussex, England
    Beans
    871
    Distro
    Lubuntu

    Smile Re: I am trying to connect to a Network

    Quote Originally Posted by Gladian00b View Post

    The question would be this: Am I blocked because of MAC Address filters, or lack of DHCP Client IDs?
    I doubt that your school is using MAC filtering, as they would have to maintain a list of all school hardware and keep updating it as old computers were chucked out and new ones bought in. Its more likely that the school has a domain, and you are not part of it. But you don't say if you were able to connect last year (before the changes).

    So, from the little information you have supplied, here are a couple of possibly useless suggestions.

    The first basic check is to try to ping another networked machine.
    Open a terminal (from menu Accessories > LXTerminal) and type:-
    Code:
    ping {ip address}
    ...where {ip address} is the ip of a known computer/server on the network.

    As your network probably supports internet connection, you could also ping a website like this:-
    Code:
    ping www.bbc.co.uk
    If these tests work it shows you have basic network connectivity.

    It sounds like your school has a network domain, so you wont be able to use resources without joining the domain. But here is an easy test which only requires you to know the domain name, the name of a network server or your network Windows 7 desktop machine, and your usename and password;

    Start the Synaptic Package Manager and search for "rdesktop". Install this package.

    Now open a terminal and type:-
    Code:
    rdesktop -d {domain name} -u {your username} {known computer name}
    Here are a couple of examples:-
    Code:
    rdesktop -d myschool -u tony 192.168.0.15
    
    rdesktop -d Hogwarts -u harry room7-pc02
    NOTE: Be aware that if you do this using a Win7 desktop name/ip it will bump off the currently logged in user on that machine (so only use your own machine...not the headmaster's). But if you do this specifying a server name, it will just create a new desktop session.

    What you should see (if this works) is a blue Win7 login screen (with your name on it) on your Lubuntu computer!

    Does any of this rubbish help?

  5. #5
    Join Date
    Aug 2010
    Beans
    11

    Re: I am trying to connect to a Network

    It doesn't even let me ping. The terminal said there is no network connection, and yet the light on my hub works just fine. It looks like it has a lot to do with the network protocols. I will ask my network administrator.

    Also, there is no access to the Internet or any of the other network resources. I can't get the requested packages without an internet connection through the Lubuntu computer.
    Last edited by Gladian00b; October 26th, 2011 at 04:18 PM.

  6. #6
    Join Date
    Jul 2011
    Beans
    8

    Re: I am trying to connect to a Network

    For fear of being too obvious - plug in and run ifconfig - do you get an IP address? Win 7 domains etc etc won't stop you getting an IP.

  7. #7
    Join Date
    Nov 2008
    Location
    Sussex, England
    Beans
    871
    Distro
    Lubuntu

    Smile Re: I am trying to connect to a Network

    Quote Originally Posted by Gladian00b View Post
    It doesn't even let me ping...
    Are you able to ping from one networked MS Windows machine to another?
    I ask this because the ping port may be blocked on your network by firewall or other security settings.

  8. #8
    Join Date
    Aug 2010
    Beans
    11

    Re: I am trying to connect to a Network

    No, the pings aren't working with the windows 7 computers either.
    Code:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    
    C:\Users\me>ping google.com
    
    Pinging google.com [74.125.224.113] with 32 bytes of data:
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    
    Ping statistics for 74.125.224.113:
        Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
    
    C:\Users\me>ping bbc.co.uk
    
    Pinging bbc.co.uk [212.58.241.131] with 32 bytes of data:
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    
    Ping statistics for 212.58.241.131:
        Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
    I can still ping the school router, with a 100% success. I find it strange that it knows what the IP addresses for these sites are, but that's probably the dns.
    Last edited by Gladian00b; October 28th, 2011 at 04:24 PM.

  9. #9
    Join Date
    May 2005
    Location
    Minnesota USA
    Beans
    313
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: I am trying to connect to a Network

    Have you tried a DHCP request?
    Code:
    sudo dhclient
    If you can't ping out it's possible that ICMP is being filtered at the gateway but I don't see why. I assume your school actually has an active internet connection because DNS seems to be resolving. Can you browse those websites that you tried to ping?

    Post an ipconfig /all from one of the Windows boxes.
    Tony
    Last edited by tonysathre; October 28th, 2011 at 04:43 PM.

  10. #10
    Join Date
    Aug 2010
    Beans
    11

    Re: I am trying to connect to a Network

    Yes, I have been able to access the sites that I pinged. I am not at the Lubuntu computer at the moment, but I will try a dhcp request.

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •