issues on crossover

Sharky Forums


Results 1 to 14 of 14

Thread: issues on crossover

  1. #1
    Expensive Sushi
    Join Date
    Sep 2001
    Posts
    11

    Post issues on crossover

    I set both pc on share files and windows family logon.
    set at
    192.016.000.000 """"
    255.255.254.000

    but they dont see each other.
    ofcourse its not the whole real ip and both system hv a diff one.


    plz direct me in the right direction

    thk

  2. #2
    Great White Shark Un4given's Avatar
    Join Date
    Oct 2000
    Location
    Salt Lake City, UT United States
    Posts
    22,553

    Post

    Since your IP is subnetted, we need the complete IP address of both systems. We also need to know more detail about how these systems are connected, and that includes any broadband Internet connections, if you have a router, etc.

    ------------------
    Earl for the OC Crusaders

    P3 700@1001 (143x7.0 1.85V)
    Abit VH6-II w/256MB PC150 (2-2-2)
    Radeon 64MB VIVO 200/200
    SBLive! Value
    13.5GB & 30GB Maxtor ATA100 (5400RPM)
    Memorex 36X CD-ROM/TDK 8x4x32 CD-RW
    Prince of the OC Crusaders

    Intel i7 3.2GHz @ 4.24GHz
    Cooler Master V8
    Asus P9X79 Pro
    16GB Patriot Viper Extreme DDR3-1600 (quad channel)
    HIS R9 290X @1050MHz
    Asus 20x DVD-RW DL DVD-RW

  3. #3
    Expensive Sushi
    Join Date
    Sep 2001
    Posts
    11

    Post

    its 2 laptop under Win ME
    192.016.000.001
    255.255.254.000

    ***.***.***.002
    **************

    with a crossover cable,no internet acces

  4. #4
    Great White Shark Un4given's Avatar
    Join Date
    Oct 2000
    Location
    Salt Lake City, UT United States
    Posts
    22,553

    Post

    Originally posted by Huh:
    its 2 laptop under Win ME
    192.016.000.001
    255.255.254.000

    ***.***.***.002
    **************

    with a crossover cable,no internet acces
    That's why you can't see each other. You can't use 254 in the subnet mask, it isn't valid. Try changing the 254 in the subnet mask to 255 and then see what happens.



    ------------------
    Earl for the OC Crusaders

    P3 700@1001 (143x7.0 1.85V)
    Abit VH6-II w/256MB PC150 (2-2-2)
    Radeon 64MB VIVO 200/200
    SBLive! Value
    13.5GB & 30GB Maxtor ATA100 (5400RPM)
    Memorex 36X CD-ROM/TDK 8x4x32 CD-RW
    Prince of the OC Crusaders

    Intel i7 3.2GHz @ 4.24GHz
    Cooler Master V8
    Asus P9X79 Pro
    16GB Patriot Viper Extreme DDR3-1600 (quad channel)
    HIS R9 290X @1050MHz
    Asus 20x DVD-RW DL DVD-RW

  5. #5
    Crash Test Dummy SkyDog's Avatar
    Join Date
    Oct 2000
    Location
    Upstate New York
    Posts
    12,183

    Post

    Although he's using a Class B subnet mask on Class C addresses, I don't see why it wouldn't work on a simple network between two computers. I mean, there's no gateway to confuse or anything. (If I get REALLY bored at home, I might try it just to see what happens.)

    But technically, the subnet mask for a Class C address should be 255.255.255.xxx. When something's not working, let's start by making sure everything's configured properly. Then see if you can ping one computer from the other. If you get a ping reply, TCP/IP's working, and then we can worry about getting file sharing working.

  6. #6
    Great White Shark Un4given's Avatar
    Join Date
    Oct 2000
    Location
    Salt Lake City, UT United States
    Posts
    22,553

    Post

    Originally posted by SkyDog:
    Although he's using a Class B subnet mask on Class C addresses, I don't see why it wouldn't work on a simple network between two computers. I mean, there's no gateway to confuse or anything. (If I get REALLY bored at home, I might try it just to see what happens.)

    But technically, the subnet mask for a Class C address should be 255.255.255.xxx. When something's not working, let's start by making sure everything's configured properly. Then see if you can ping one computer from the other. If you get a ping reply, TCP/IP's working, and then we can worry about getting file sharing working.
    It won't work because 254 is not a valid address when subnetting. Valid numbers are:

    128
    192
    224
    240
    248
    252

    You also have to keep in mind that subnetting does create different domains. For example, lets say that he/she did actually use a valid number like 252. His/Her availabe addresses per domain are only 2. You can figure it out by taking 256-252=4 and then you have to subtract 2 again because you have the domain address and the other is the broadcast address. In this case valid numbers for hosts would be 2 & 3 because 1 would be the domain and 4 would be the broadcast. Now in the previous case if you use 254 you would get 256-254=2-2=0...so no valid host addresses.



    ------------------
    Earl for the OC Crusaders

    P3 700@1001 (143x7.0 1.85V)
    Abit VH6-II w/256MB PC150 (2-2-2)
    Radeon 64MB VIVO 200/200
    SBLive! Value
    13.5GB & 30GB Maxtor ATA100 (5400RPM)
    Memorex 36X CD-ROM/TDK 8x4x32 CD-RW
    Prince of the OC Crusaders

    Intel i7 3.2GHz @ 4.24GHz
    Cooler Master V8
    Asus P9X79 Pro
    16GB Patriot Viper Extreme DDR3-1600 (quad channel)
    HIS R9 290X @1050MHz
    Asus 20x DVD-RW DL DVD-RW

  7. #7
    Crash Test Dummy SkyDog's Avatar
    Join Date
    Oct 2000
    Location
    Upstate New York
    Posts
    12,183

    Post

    Originally posted by Un4given:
    It won't work because 254 is not a valid address when subnetting. Valid numbers are:...
    Oh yeah. (Duh!) I know that valid decimal subnet numbers have to correlate to the the binary places. That *and* the "-2 rule" slipped my mind.

    Last time I dealt with subnetted networks was in a Cisco class in '96. It's amazing how much of that knowledge comes back in a hurry when someone points out you're wrong!

    Thanks for the reminder!


  8. #8
    Great White Shark Un4given's Avatar
    Join Date
    Oct 2000
    Location
    Salt Lake City, UT United States
    Posts
    22,553

    Post

    Originally posted by SkyDog:
    Oh yeah. (Duh!) I know that valid decimal subnet numbers have to correlate to the the binary places. That *and* the "-2 rule" slipped my mind.

    Last time I dealt with subnetted networks was in a Cisco class in '96. It's amazing how much of that knowledge comes back in a hurry when someone points out you're wrong!

    Thanks for the reminder!

    I know what you mean. I'm taking Cisco classes myself...CCNP stuff.



    ------------------
    Earl for the OC Crusaders

    P3 700@1001 (143x7.0 1.85V)
    Abit VH6-II w/256MB PC150 (2-2-2)
    Radeon 64MB VIVO 200/200
    SBLive! Value
    13.5GB & 30GB Maxtor ATA100 (5400RPM)
    Memorex 36X CD-ROM/TDK 8x4x32 CD-RW
    Prince of the OC Crusaders

    Intel i7 3.2GHz @ 4.24GHz
    Cooler Master V8
    Asus P9X79 Pro
    16GB Patriot Viper Extreme DDR3-1600 (quad channel)
    HIS R9 290X @1050MHz
    Asus 20x DVD-RW DL DVD-RW

  9. #9
    Hammerhead Shark
    Join Date
    Feb 2001
    Location
    Jacksonville, FL., USA
    Posts
    1,064

    Post

    Well, from what I recall, that subnet mask isnt completely invalid. Isnt that supernetting? I remember it being typically used just on the routers to keep the routing tables smaller. However, couldnt it be used otherwise as well (even if Microsoft OSs dont know what to do with it)?

    [This message has been edited by Nabu_the_Wise (edited September 27, 2001).]

  10. #10
    Tiger Shark MoleDude's Avatar
    Join Date
    Jan 2001
    Location
    California, USA
    Posts
    822

    Post

    Originally posted by Huh:
    its 2 laptop under Win ME
    192.016.000.001
    255.255.254.000

    ***.***.***.002
    **************

    with a crossover cable,no internet acces
    easiest way to get them to work

    set ones ip to 10.1.1.x, and the other to the same thing. (x being any number you choose, but you cant have the same number on any two computers).

    then set the subnet mask on both computers to 255.255.255.0

    should work without a hitch.

    ------------------
    Squire of an OC Crusader

    Current System Specs

  11. #11
    Tiger Shark MoleDude's Avatar
    Join Date
    Jan 2001
    Location
    California, USA
    Posts
    822

    Post

    Originally posted by SkyDog:
    Oh yeah. (Duh!) I know that valid decimal subnet numbers have to correlate to the the binary places. That *and* the "-2 rule" slipped my mind.

    Last time I dealt with subnetted networks was in a Cisco class in '96. It's amazing how much of that knowledge comes back in a hurry when someone points out you're wrong!

    Thanks for the reminder!

    i know it...i took the class in 98-99. it does come back real quick...thats why im gonna start postin' in the networking section here...gotta keep up on this stuff so i dont forget everything i learned...

    ------------------
    Squire of an OC Crusader

    Current System Specs

  12. #12
    Great White Shark Un4given's Avatar
    Join Date
    Oct 2000
    Location
    Salt Lake City, UT United States
    Posts
    22,553

    Post

    Originally posted by Nabu_the_Wise:
    Well, from what I recall, that subnet mask isnt completely invalid. Isnt that supernetting? I remember it being typically used just on the routers to keep the routing tables smaller. However, couldnt it be used otherwise as well (even if Microsoft OSs dont know what to do with it)?

    [This message has been edited by Nabu_the_Wise (edited September 27, 2001).]
    No, what he is doing isn't supernetting, if anything it was subnetting. Doing this allows you to have more than one domain when all you have is one, but it reduces the number of hosts possibilities. However, this is only important if the network will be exposed to the outside world. A LAN that isn't exposed can use any addressing scheme they want. However, since he only has a two computers (via x-over cable) connection, I don't know why he even opted for anything but a standard subnet mask and address.


    ------------------
    Earl for the OC Crusaders

    P3 700@1001 (143x7.0 1.85V)
    Abit VH6-II w/256MB PC150 (2-2-2)
    Radeon 64MB VIVO 200/200
    SBLive! Value
    13.5GB & 30GB Maxtor ATA100 (5400RPM)
    Memorex 36X CD-ROM/TDK 8x4x32 CD-RW
    Prince of the OC Crusaders

    Intel i7 3.2GHz @ 4.24GHz
    Cooler Master V8
    Asus P9X79 Pro
    16GB Patriot Viper Extreme DDR3-1600 (quad channel)
    HIS R9 290X @1050MHz
    Asus 20x DVD-RW DL DVD-RW

  13. #13
    Ex-*** kid A's Avatar
    Join Date
    Sep 2000
    Location
    Norway
    Posts
    5,322

    Post

    Huh, (coolest username I've seen in ages btw!) I also think the subnetmask should be set to 255.255.255.0

    And try pinging one computer from the other.

    ------------------
    Now listening to:
    Kaizers Orchestra - Ompa Til Du Dør
    Now listening to various rock and metal
    143rd member to join Sharkyforums.

  14. #14
    Tiger Shark PDR60's Avatar
    Join Date
    Oct 2000
    Location
    Oakland Tn USA
    Posts
    732

    Post

    If he were using a supernet the proper net mask would be 10.168.0.0/23 thats 23 bit subnet mask. That would be the first usable class b subnet. However he should use a straight class c 192.168.0.0/24 this will give him the full class c without any problems.

    By the way that /23 is 255.255.254.0. This is a good subnet. His problem is that he is not using a valid address. 192.0.0.0 is a class c. If you use a 10.168.0.0/23 it will work.

    Sub/supernetting can be tricky.

    ------------------
    VP6 with dual GIG and loving it
    Gigabyte GA-990FXA UD3 3.6x4 | 16gig Ram | Nvidia GTX550-TI | 60Gig SSD | running Kubuntu 64 bit
    www.linuxloader.com

Posting Permissions

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