OT: Cisco 2610 PPP

Just a quick thought -

Make sure your workstation's Default Gateway and your Main Router is setup
correctly otherwise it won't know how to get off your network to the other
location. For example, if you have one router that handles your access to
the internet and now you have the cisco to talk to your other location, your
default router needs to know that traffic bound for 192.168.2.x needs to use
the cisco's ip address to get there and all other "off" network traffice
goes out the default getway address. I use an old NT server for a router
and below is router configuration that might meet your requirements. You
can accomplish the same thing with a Linux box. All the workstations on my
10.10.10.x network use this router as the default so they can get where they
need to. Another option would be to bridge your two networks so that they
would be on the same subnet and since they are not routing you can run
non-routeable protocols like netbeui if necessary. Performance in a bridged
mode is not a good as routed, but the difference might not be noticable
depending on the traffic. The only other thing I saw in you Cisco dump that
I would look into was the Half-Duplex setting for the ethernet interface.
If possible - set to Full-Duplex.

Good Luck,

Charles


C:\>ROUTE PRINT
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 aa 00 62 e5 85 ...... Intel EtherExpress PRO 100 LAN Adapter
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 10.10.10.253 10.10.10.1 1
10.10.10.0 255.255.255.0 10.10.10.254 10.10.10.1 1
10.10.10.1 255.255.255.255 127.0.0.1 127.0.0.1 1
10.10.10.199 255.255.255.255 127.0.0.1 127.0.0.1 1
10.10.10.254 255.255.255.255 127.0.0.1 127.0.0.1 1
10.255.255.255 255.255.255.255 10.10.10.254 10.10.10.1 1
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.254 10.10.10.1 1
192.168.1.254 255.255.255.255 127.0.0.1 127.0.0.1 1
192.168.2.0 255.255.255.0 192.168.1.5 10.10.10.1 1
224.0.0.0 224.0.0.0 10.10.10.254 10.10.10.1 1
255.255.255.255 255.255.255.255 10.10.10.254 10.10.10.1 1
===========================================================================

C:\>

----- Original Message -----
From: <jeremyrleonard@...>
To: <vantage@yahoogroups.com>
Sent: Monday, August 08, 2005 9:11 AM
Subject: [Vantage] OT: Cisco 2610 PPP


> Hello,
> I am attempting to setup my first private Point to Point T1. I am using
two cisco 2610 routers with the WIC DSU\CUS cards.
>
> Everything looks good and I am able to ping one router from the other
without any problems. I have set the IP addresses as follows:
> WIC Router A:10.20.12.1
> WIC Router B:10.20.12.3
> Eithernet Router A:192.168.1.3
> Eithernet Router B:192.168.2.3
>
> I have connected each router to a hub and a PC to each hub. I can not
ping the PC on router B from the PC on Router A or vise versa. Since I can
ping the Eithernet Ports on the Routers then I am thinking that there one
one more thing I need to activate or setup. Maybe I need to enable the
enthernet ports? When I ping the eithernet ports, I am doing so from the
telnet session in the router console.
>
> I am suprised I have gotten this far.
> Any advice would be appreciated.
> Thanks
> Jeremy
>
>
>
> [Non-text portions of this message have been removed]
>
>
>
>
> Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have already linked your email address to a yahoo id to enable access. )
> (1) To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
> (2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
> (3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
Hello,
I am attempting to setup my first private Point to Point T1. I am using two cisco 2610 routers with the WIC DSU\CUS cards.

Everything looks good and I am able to ping one router from the other without any problems. I have set the IP addresses as follows:
WIC Router A:10.20.12.1
WIC Router B:10.20.12.3
Eithernet Router A:192.168.1.3
Eithernet Router B:192.168.2.3

I have connected each router to a hub and a PC to each hub. I can not ping the PC on router B from the PC on Router A or vise versa. Since I can ping the Eithernet Ports on the Routers then I am thinking that there one one more thing I need to activate or setup. Maybe I need to enable the enthernet ports? When I ping the eithernet ports, I am doing so from the telnet session in the router console.

I am suprised I have gotten this far.
Any advice would be appreciated.
Thanks
Jeremy



[Non-text portions of this message have been removed]
Some ideas to try (I use similar settings to connect our router to our ISP):

Serial interfaces:

- Network Address Translation needs to be on for both sides. Put "ip nat
outside" on both of the Serial interfaces - then it should translate your
"internal" addresses at each router and send them to the other side if
necessary


Routers:

- a route needs to be established in each router. Some speculation, here;
If one of your routers handles a path to the outside world this may need to
be adjusted). This will let the router know how to get to the other
network:

router A: "ip route 192.168.2.0 0.0.0.255 10.20.12.3"
router B: "ip route 192.168.1.0 0.0.0.255 10.20.12.1"

- enable an access list for nat to go across to the other router

router A: "access-list 1 permit 192.168.1.0 0.0.0.255"
router B: "access-list 1 permit 192.168.2.0 0.0.0.255"

- tell the router which interface handles the external nat (substitute your
interface):

router A: "ip nat inside source list 1 interface Serial0/0 overload"
router B: "ip nat inside source list 1 interface Serial0/0 overload"


Chris



Christopher Gitzlaff, MSCIS
Manager - Information Systems & Technology
Major Industries, Inc.
Phone: 715.842.4616 ext. 323
Email: cgitzlaff@...



-----Original Message-----
From: jeremyrleonard@... [mailto:jeremyrleonard@...]
Sent: Monday, August 08, 2005 8:11 AM
To: vantage@yahoogroups.com
Subject: [Vantage] OT: Cisco 2610 PPP


Hello,
I am attempting to setup my first private Point to Point T1. I am using two
cisco 2610 routers with the WIC DSU\CUS cards.

Everything looks good and I am able to ping one router from the other
without any problems. I have set the IP addresses as follows: WIC Router
A:10.20.12.1 WIC Router B:10.20.12.3 Eithernet Router A:192.168.1.3
Eithernet Router B:192.168.2.3

I have connected each router to a hub and a PC to each hub. I can not ping
the PC on router B from the PC on Router A or vise versa. Since I can ping
the Eithernet Ports on the Routers then I am thinking that there one one
more thing I need to activate or setup. Maybe I need to enable the
enthernet ports? When I ping the eithernet ports, I am doing so from the
telnet session in the router console.

I am suprised I have gotten this far.
Any advice would be appreciated.
Thanks
Jeremy



[Non-text portions of this message have been removed]




Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
Yahoo! Groups Links
From a PC can you ping the Ethernet port on the router it is connected
to?

The other thing to try is pinging across the T1 line from the Ethernet
port on each router.

To do this you need to add a few arguments to your ping command from the
telnet interface.

From Router A:

Ping <enter>
Protocol [ip] <enter>
Target IP address: 192.168.2.3
Source IP address: 192.168.1.3

And just take the defaults for the rest of the options.

From Router B:
Ping <enter>
Protocol [ip] <enter>
Target IP address: 192.168.1.3
Source IP address: 192.168.2.3

And just take the defaults for the rest of the options.

Hope this helps...

Brandon R Murch
Supervisor of Information Technology
WindStone Medical Packaging
406.259.6387
bmurch@... <mailto:bmurch@...>

-----Original Message-----
From: jeremyrleonard@... [mailto:jeremyrleonard@...]
Sent: Monday, August 08, 2005 7:11 AM
To: vantage@yahoogroups.com
Subject: [Vantage] OT: Cisco 2610 PPP

Hello,
I am attempting to setup my first private Point to Point T1. I am using
two cisco 2610 routers with the WIC DSU\CUS cards.

Everything looks good and I am able to ping one router from the other
without any problems. I have set the IP addresses as follows:
WIC Router A:10.20.12.1
WIC Router B:10.20.12.3
Eithernet Router A:192.168.1.3
Eithernet Router B:192.168.2.3

I have connected each router to a hub and a PC to each hub. I can not
ping the PC on router B from the PC on Router A or vise versa. Since I
can ping the Eithernet Ports on the Routers then I am thinking that
there one one more thing I need to activate or setup. Maybe I need to
enable the enthernet ports? When I ping the eithernet ports, I am doing
so from the telnet session in the router console.

I am suprised I have gotten this far.
Any advice would be appreciated.
Thanks
Jeremy



[Non-text portions of this message have been removed]



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
<http://groups.yahoo.com/group/vantage/files/>
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links



SPONSORED LINKS
Technical support
<http://groups.yahoo.com/gads?t=ms&k=Technical+support&w1=Technical+supp
ort&w2=Vantage&w3=Database&w4=Database+management+software&w5=Membership
+database+software&w6=Church+database+software&c=6&s=148&.sig=D_JdAFeHAo
eH6OugOKk1Yg>
Vantage
<http://groups.yahoo.com/gads?t=ms&k=Vantage&w1=Technical+support&w2=Van
tage&w3=Database&w4=Database+management+software&w5=Membership+database+
software&w6=Church+database+software&c=6&s=148&.sig=8zJYQk3edGWFMUVgup9j
Kw>
Database
<http://groups.yahoo.com/gads?t=ms&k=Database&w1=Technical+support&w2=Va
ntage&w3=Database&w4=Database+management+software&w5=Membership+database
+software&w6=Church+database+software&c=6&s=148&.sig=PnI9nhHllVsjEbHxRXs
1IQ>
Database management software
<http://groups.yahoo.com/gads?t=ms&k=Database+management+software&w1=Tec
hnical+support&w2=Vantage&w3=Database&w4=Database+management+software&w5
=Membership+database+software&w6=Church+database+software&c=6&s=148&.sig
=fKR9gtx-Yh-u9MWSh0_-hA>
Membership database software
<http://groups.yahoo.com/gads?t=ms&k=Membership+database+software&w1=Tec
hnical+support&w2=Vantage&w3=Database&w4=Database+management+software&w5
=Membership+database+software&w6=Church+database+software&c=6&s=148&.sig
=Nu4StMQZ8LT26M5TzRGQlg>
Church database software
<http://groups.yahoo.com/gads?t=ms&k=Church+database+software&w1=Technic
al+support&w2=Vantage&w3=Database&w4=Database+management+software&w5=Mem
bership+database+software&w6=Church+database+software&c=6&s=148&.sig=UAi
Qi3Ftbp7Qnq6ys_yZxg>

_____

YAHOO! GROUPS LINKS

* Visit your group "vantage
<http://groups.yahoo.com/group/vantage> " on the web.

* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>

* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> .

_____



[Non-text portions of this message have been removed]