Networking Forums

Networking Forums > Computer Networking > Linux Networking > route

Reply
 
 
orangeKDS@mail.ru
Guest
Posts: n/a

 
      12-20-2004, 12:57 PM
I have a small network: 2PCs and Amiga. (I'll call them A,B,C)

The 2 PCs (A,B) have winXP and Ethernet cards and they are connected to
a switch with UTP cable. Amiga (C) is connected to one of them (B) with
nullmodem cable (mdmcisco.inf).

Here are the IPs:
1st PC (A) 10.1.86.138 (IIRC)
2nd PC (B) 10.1.92.196 192.168.1.1
Amiga (C) 192.168.1.2

I CAN ping:
A,C from B
B from A,C

but I cannot ping:
A from C
C from A

here is output from route print >C:file (done on B)

================================================== =========================

Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...08 00 46 57 43 a9 ...... Intel(R) PRO/100 VE Network Connection
- Packet Scheduler Miniport
0x20004 ...00 53 45 00 00 00 ...... WAN (PPP/SLIP) Interface

================================================== =========================

================================================== =========================

Active Routes:
Network Destination Netmask Gateway Interface
Metric
0.0.0.0 0.0.0.0 10.1.0.2 10.1.92.196
20
10.1.0.0 255.255.0.0 10.1.92.196 10.1.92.196
20
10.1.92.196 255.255.255.255 127.0.0.1 127.0.0.1
20
10.255.255.255 255.255.255.255 10.1.92.196 10.1.92.196
20
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
192.168.1.0 255.255.255.0 192.168.1.1 192.168.1.1
1
192.168.1.1 255.255.255.255 127.0.0.1 127.0.0.1
50
192.168.1.2 255.255.255.255 192.168.1.1 192.168.1.1
1
192.168.1.255 255.255.255.255 192.168.1.1 192.168.1.1
50
224.0.0.0 240.0.0.0 10.1.92.196 10.1.92.196
20
224.0.0.0 240.0.0.0 192.168.1.1 192.168.1.1
50
255.255.255.255 255.255.255.255 10.1.92.196 10.1.92.196
1
Default Gateway: 10.1.0.2

================================================== =========================

Persistent Routes:
None

BTW, cable modem is also connected to switch and A,B can connect to
Internet with it (default gateway is from ISP)

I need computers A and C to "see" each other.
Any reply is highly appreciated.

 
Reply With Quote
 
 
 
 
Jerry Smiley
Guest
Posts: n/a

 
      12-20-2004, 01:33 PM
(E-Mail Removed) wrote:

> I have a small network: 2PCs and Amiga. (I'll call them A,B,C)
>
> The 2 PCs (A,B) have winXP and Ethernet cards and they are connected to
> a switch with UTP cable. Amiga (C) is connected to one of them (B) with
> nullmodem cable (mdmcisco.inf).
>
> Here are the IPs:
> 1st PC (A) 10.1.86.138 (IIRC)
> 2nd PC (B) 10.1.92.196 192.168.1.1
> Amiga (C) 192.168.1.2
>
> I CAN ping:
> A,C from B
> B from A,C
>
> but I cannot ping:
> A from C
> C from A
>
> here is output from route print >C:file (done on B)
>
>

================================================== =========================
>
> Interface List
> 0x1 ........................... MS TCP Loopback interface
> 0x2 ...08 00 46 57 43 a9 ...... Intel(R) PRO/100 VE Network Connection
> - Packet Scheduler Miniport
> 0x20004 ...00 53 45 00 00 00 ...... WAN (PPP/SLIP) Interface
>
>

================================================== =========================
>
>

================================================== =========================
>
> Active Routes:
> Network Destination Netmask Gateway Interface
> Metric
> 0.0.0.0 0.0.0.0 10.1.0.2 10.1.92.196
> 20
> 10.1.0.0 255.255.0.0 10.1.92.196 10.1.92.196
> 20
> 10.1.92.196 255.255.255.255 127.0.0.1 127.0.0.1
> 20
> 10.255.255.255 255.255.255.255 10.1.92.196 10.1.92.196
> 20
> 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
> 192.168.1.0 255.255.255.0 192.168.1.1 192.168.1.1
> 1
> 192.168.1.1 255.255.255.255 127.0.0.1 127.0.0.1
> 50
> 192.168.1.2 255.255.255.255 192.168.1.1 192.168.1.1
> 1
> 192.168.1.255 255.255.255.255 192.168.1.1 192.168.1.1
> 50
> 224.0.0.0 240.0.0.0 10.1.92.196 10.1.92.196
> 20
> 224.0.0.0 240.0.0.0 192.168.1.1 192.168.1.1
> 50
> 255.255.255.255 255.255.255.255 10.1.92.196 10.1.92.196
> 1
> Default Gateway: 10.1.0.2
>
>

================================================== =========================
>
> Persistent Routes:
> None
>
> BTW, cable modem is also connected to switch and A,B can connect to
> Internet with it (default gateway is from ISP)
>
> I need computers A and C to "see" each other.
> Any reply is highly appreciated.

Sounds as if Computer B does not have 'ip forwarding' active to allow
packets to flow from A to C thru B.....

This may be more of a question to be posted in the MS Windows newsgroup.
 
Reply With Quote
 
Dan
Guest
Posts: n/a

 
      12-21-2004, 05:34 AM
On 20 Dec 2004 05:57:49 -0800, (E-Mail Removed) wrote:

You have to have a process that routes packets between the 10.1.92.196
interface to the 192.168.1.1 interface. As far as I know, Windows
won't do that for you. (Linux would do this easily.)

Dan

>I have a small network: 2PCs and Amiga. (I'll call them A,B,C)
>
>The 2 PCs (A,B) have winXP and Ethernet cards and they are connected to
>a switch with UTP cable. Amiga (C) is connected to one of them (B) with
>nullmodem cable (mdmcisco.inf).
>
>Here are the IPs:
>1st PC (A) 10.1.86.138 (IIRC)
>2nd PC (B) 10.1.92.196 192.168.1.1
>Amiga (C) 192.168.1.2
>
>I CAN ping:
>A,C from B
>B from A,C
>
>but I cannot ping:
>A from C
>C from A
>
>here is output from route print >C:file (done on B)
>
>================================================= ==========================
>
>Interface List
>0x1 ........................... MS TCP Loopback interface
>0x2 ...08 00 46 57 43 a9 ...... Intel(R) PRO/100 VE Network Connection
>- Packet Scheduler Miniport
>0x20004 ...00 53 45 00 00 00 ...... WAN (PPP/SLIP) Interface
>
>================================================= ==========================
>
>================================================= ==========================
>
>Active Routes:
>Network Destination Netmask Gateway Interface
>Metric
>0.0.0.0 0.0.0.0 10.1.0.2 10.1.92.196
>20
>10.1.0.0 255.255.0.0 10.1.92.196 10.1.92.196
>20
>10.1.92.196 255.255.255.255 127.0.0.1 127.0.0.1
>20
>10.255.255.255 255.255.255.255 10.1.92.196 10.1.92.196
>20
>127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
>192.168.1.0 255.255.255.0 192.168.1.1 192.168.1.1
>1
>192.168.1.1 255.255.255.255 127.0.0.1 127.0.0.1
>50
>192.168.1.2 255.255.255.255 192.168.1.1 192.168.1.1
>1
>192.168.1.255 255.255.255.255 192.168.1.1 192.168.1.1
>50
>224.0.0.0 240.0.0.0 10.1.92.196 10.1.92.196
>20
>224.0.0.0 240.0.0.0 192.168.1.1 192.168.1.1
>50
>255.255.255.255 255.255.255.255 10.1.92.196 10.1.92.196
>1
>Default Gateway: 10.1.0.2
>
>================================================= ==========================
>
>Persistent Routes:
>None
>
>BTW, cable modem is also connected to switch and A,B can connect to
>Internet with it (default gateway is from ISP)
>
>I need computers A and C to "see" each other.
>Any reply is highly appreciated.


 
Reply With Quote
 
orangeKDS@mail.ru
Guest
Posts: n/a

 
      12-21-2004, 07:03 AM
I understand that and I would like to use Linux but there are some
problems.

I don't know practicaly anything about it (just tried using it once).
It would have to be something like Knoppix; Linux on a CD or floppy
disk (routing is all I need) cause I really dont need repartition, dual
boot and stuff.
BTW, what was the name of distro that worked on fat32?
where am i gonna find Linux drivers for my network card and especially
for nullmodem link to Amiga?

There is a registry hack for windows that turns them into routers, but
it didn't work for me. If you have any info about that please email me.

@Jerry
Sorry for posting [OT] message, I just presumed someone here knew how
to solve my problem.

 
Reply With Quote
 
orangeKDS@mail.ru
Guest
Posts: n/a

 
      12-25-2004, 05:54 PM
Finally it WORKS now ))

it seems that the problem was in mdmcisco.inf, when I tried this :

http://bwinton.latte.ca/Palm/ppp.html
(I also disabled socks on Amiga side, maybe that was problem)
everything is OK

Thanks everybody for help.
I wish you a Marry Christmas and a Happy New Year.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
VPN client adds wrong route to local route table snowdog_2112 Windows Networking 7 11-01-2005 02:05 PM
The best route please... Conbloodyfused Windows Networking 1 07-05-2005 04:08 PM
HELP! - I can't route with SP1 James Curran Windows Networking 1 04-01-2005 08:42 PM
VPN Route Help =?Utf-8?B?UmljayBSdXNoaW5n?= Windows Networking 1 03-06-2005 02:13 PM
route and static route to a gateway Sting Linux Networking 2 02-21-2004 03:35 AM



1 2 3 4 5 6 7 8 9 10 11