Results 1 to 12 of 12

Thread: [Serious] Static route question

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2004
    Posts
    751

    [Serious] Static route question

    Here is a little networking fun for you boys and ladies.

    http://mypage.skrbl.com/staticroute.html

    Bob's computer wants to talk to Nicole's computer. Is this possible by adding static routes to Router1 and Router2? If so how?
    My Projects: [ Instant Messagener Client/Server ] [ VBPictochat ]

    My Sites:
    [ Datanethost ]
    [ Helpdesk ]

    Remember if my post was helpful then Rate This Post.

  2. #2
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: [Serious] Static route question

    As far as I know you do not need a static route for this as the LAN nodes are all on the same subnet.

  3. #3
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985

    Re: [Serious] Static route question

    Quote Originally Posted by k1ll3rdr4g0n
    Great, a blank webpage with a green bar at the top. How fun
    Quote Originally Posted by k1ll3rdr4g0n
    Bob's computer wants to talk to Nicole's computer. Is this possible by adding static routes to Router1 and Router2? If so how?
    Do your own homework!
    KrisSiegel.com - My Personal Website with my blog and portfolio
    Don't Forget to Rate Posts!

    Free Icons: FamFamFam, VBCorner, VBAccelerator
    Useful Links: System.Security.SecureString Managed DPAPI Overview Part 1 Managed DPAPI Overview Part 2 MSDN, MSDN2, Comparing the Timer Classes

  4. #4
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: [Serious] Static route question

    It's not a blank page (at least, not in Firefox) and it's not obviously homework.

  5. #5
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: [Serious] Static route question

    Quote Originally Posted by k1ll3rdr4g0n
    Here is a little networking fun for you boys and ladies.

    http://mypage.skrbl.com/staticroute.html

    Bob's computer wants to talk to Nicole's computer. Is this possible by adding static routes to Router1 and Router2? If so how?
    Yes and it depends on your operating system. And why have you slapped a DHCP server into your router network?
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  6. #6
    Powered By Medtronic dbasnett's Avatar
    Join Date
    Dec 2007
    Location
    Jefferson City, MO
    Posts
    9,897

    Re: [Serious] Static route question

    Quote Originally Posted by k1ll3rdr4g0n
    Here is a little networking fun for you boys and ladies.

    http://mypage.skrbl.com/staticroute.html

    Bob's computer wants to talk to Nicole's computer. Is this possible by adding static routes to Router1 and Router2? If so how?
    I have blue boxes attached to RTR1 and RTR2, that I assume are Bob and Nicole.

    The external = ? should be IP addresses on the same network since they are attached to a switch.

    So RTR1 ext ip = 192.168.1.1 and RTR2 ext ip = 192.168.1.2 for example

    then add static routes

    rtr1
    ip route 192.168.129.0 255.255.255.0 192.168.1.2

    rtr2
    ip route 192.168.128.0 255.255.255.0 192.168.1.1

    edit - i assumed (sorry) because of your post that the routers weren't running a routing protocol (RIP, OSPF, etc.)
    Last edited by dbasnett; Mar 20th, 2008 at 10:37 AM.
    My First Computer -- Documentation Link (RT?M) -- Using the Debugger -- Prime Number Sieve
    Counting Bits -- Subnet Calculator -- UI Guidelines -- >> SerialPort Answer <<

    "Those who use Application.DoEvents have no idea what it does and those who know what it does never use it." John Wein

  7. #7
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985

    Re: [Serious] Static route question

    Quote Originally Posted by penagate
    It's not a blank page (at least, not in Firefox) and it's not obviously homework.
    Still a blank page in Opera. If it was developed correctly this wouldn't be a problem
    KrisSiegel.com - My Personal Website with my blog and portfolio
    Don't Forget to Rate Posts!

    Free Icons: FamFamFam, VBCorner, VBAccelerator
    Useful Links: System.Security.SecureString Managed DPAPI Overview Part 1 Managed DPAPI Overview Part 2 MSDN, MSDN2, Comparing the Timer Classes

  8. #8
    Powered By Medtronic dbasnett's Avatar
    Join Date
    Dec 2007
    Location
    Jefferson City, MO
    Posts
    9,897

    Re: [Serious] Static route question

    They are aware that it doesn't work on Opera.
    My First Computer -- Documentation Link (RT?M) -- Using the Debugger -- Prime Number Sieve
    Counting Bits -- Subnet Calculator -- UI Guidelines -- >> SerialPort Answer <<

    "Those who use Application.DoEvents have no idea what it does and those who know what it does never use it." John Wein

  9. #9

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2004
    Posts
    751

    Re: [Serious] Static route question

    Quote Originally Posted by kasracer
    Still a blank page in Opera. If it was developed correctly this wouldn't be a problem
    It's ok man. -pats you on the back- it'll be ok. Just download and use firefox and we will forget this conversation ever happened.
    My Projects: [ Instant Messagener Client/Server ] [ VBPictochat ]

    My Sites:
    [ Datanethost ]
    [ Helpdesk ]

    Remember if my post was helpful then Rate This Post.

  10. #10

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2004
    Posts
    751

    Re: [Serious] Static route question

    Quote Originally Posted by dbasnett
    I have blue boxes attached to RTR1 and RTR2, that I assume are Bob and Nicole.

    The external = ? should be IP addresses on the same network since they are attached to a switch.

    So RTR1 ext ip = 192.168.1.1 and RTR2 ext ip = 192.168.1.2 for example

    then add static routes

    rtr1
    ip route 192.168.129.0 255.255.255.0 192.168.1.2

    rtr2
    ip route 192.168.128.0 255.255.255.0 192.168.1.1

    edit - i assumed (sorry) because of your post that the routers weren't running a routing protocol (RIP, OSPF, etc.)
    I am actually starting to question if the answer to my question is no because the IP addresses are from my ISP. Which I don't know if they are on the same 'network'. And you know if I ask them, the canned response "We don't know, we just want your money".
    My Projects: [ Instant Messagener Client/Server ] [ VBPictochat ]

    My Sites:
    [ Datanethost ]
    [ Helpdesk ]

    Remember if my post was helpful then Rate This Post.

  11. #11
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: [Serious] Static route question

    If the IP addresses are assigned by the ISP then the ISP should be handling the routing between the two interfaces. It will however mean the communications between the two routers is sent via the ISP.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  12. #12
    Powered By Medtronic dbasnett's Avatar
    Join Date
    Dec 2007
    Location
    Jefferson City, MO
    Posts
    9,897

    Re: [Serious] Static route question

    Quote Originally Posted by k1ll3rdr4g0n
    I am actually starting to question if the answer to my question is no because the IP addresses are from my ISP. Which I don't know if they are on the same 'network'. And you know if I ask them, the canned response "We don't know, we just want your money".
    When you look at your routers you should see the addresses assigned by the ISP and know if they are on the same network.
    My First Computer -- Documentation Link (RT?M) -- Using the Debugger -- Prime Number Sieve
    Counting Bits -- Subnet Calculator -- UI Guidelines -- >> SerialPort Answer <<

    "Those who use Application.DoEvents have no idea what it does and those who know what it does never use it." John Wein

Posting Permissions

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



Click Here to Expand Forum to Full Width