Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Cisco > Point to Point T1

Reply
Thread Tools

Point to Point T1

 
 
John Smith
Guest
Posts: n/a
 
      12-05-2007
Hello:

I am trying to bridge to locations via a point to point t1. The provider
says that they do no provide clocking on the line. My routers are 1720's
with a WIC T1 interface card in both of them. Does anybody have a good
configuration for this application? I would like to be able to pull DHCP
from the main facility too. Is this possible? Currently I can ping the
serial0 interfaces between the routers, but I cannot see through to the LAN.
I am willing to scrap my current config, it somebody has a working config.

Thank you,

Jason Goddard


 
Reply With Quote
 
 
 
 
Gabriele Beltrame
Guest
Posts: n/a
 
      12-05-2007
"John Smith" <> ha scritto nel messaggio
news:. ..
> Hello:
>
> I am trying to bridge to locations via a point to point t1. The provider
> says that they do no provide clocking on the line. My routers are 1720's
> with a WIC T1 interface card in both of them. Does anybody have a good
> configuration for this application? I would like to be able to pull DHCP
> from the main facility too. Is this possible? Currently I can ping the
> serial0 interfaces between the routers, but I cannot see through to the
> LAN. I am willing to scrap my current config, it somebody has a working
> config.
>
> Thank you,
>
> Jason Goddard


Hi,

If the routers can ping each other then you are almost done; maybe you only
need to configure some routing protocol betwen the routers or use static
routes.

Regards,
Gabriele


 
Reply With Quote
 
 
 
 
goddard@phoneranger.net
Guest
Posts: n/a
 
      12-05-2007
On Dec 5, 11:36 am, "Gabriele Beltrame" <bel...@drvsource.net> wrote:
> "John Smith" <some...@microsoft.com> ha scritto nel messaggionews:BqGdnS7rx7BqUsvanZ2dnUVZ_tGonZ2d@com cast.com...
>
> > Hello:

>
> > I am trying to bridge to locations via a point to point t1. The provider
> > says that they do no provide clocking on the line. My routers are 1720's
> > with a WIC T1 interface card in both of them. Does anybody have a good
> > configuration for this application? I would like to be able to pull DHCP
> > from the main facility too. Is this possible? Currently I can ping the
> > serial0 interfaces between the routers, but I cannot see through to the
> > LAN. I am willing to scrap my current config, it somebody has a working
> > config.

>
> > Thank you,

>
> > Jason Goddard

>
> Hi,
>
> If the routers can ping each other then you are almost done; maybe you only
> need to configure some routing protocol betwen the routers or use static
> routes.
>
> Regards,
> Gabriele


Thank you so much. Do you have an example of the static routes? Do I
need to assign an ip address to my fastethernet0 ports? I mentioned
above that I would like to DHCP over them, but now I am just going to
plug my PBX's directly into them. So no need to DHCP. So basicily, I
am creating a tunnel for two PBX's to talk back and forth.

Thank you,
Jason
 
Reply With Quote
 
Gabriele Beltrame
Guest
Posts: n/a
 
      12-05-2007
<> ha scritto nel messaggio
news:c2df2640-83cd-4183-ab7b-...
> On Dec 5, 11:36 am, "Gabriele Beltrame" <bel...@drvsource.net> wrote:
>> "John Smith" <some...@microsoft.com> ha scritto nel
>> messaggionews:BqGdnS7rx7BqUsvanZ2dnUVZ_tGonZ2d@com cast.com...
>>
>> > Hello:

>>
>> > I am trying to bridge to locations via a point to point t1. The
>> > provider
>> > says that they do no provide clocking on the line. My routers are
>> > 1720's
>> > with a WIC T1 interface card in both of them. Does anybody have a good
>> > configuration for this application? I would like to be able to pull
>> > DHCP
>> > from the main facility too. Is this possible? Currently I can ping
>> > the
>> > serial0 interfaces between the routers, but I cannot see through to the
>> > LAN. I am willing to scrap my current config, it somebody has a working
>> > config.

>>
>> > Thank you,

>>
>> > Jason Goddard

>>
>> Hi,
>>
>> If the routers can ping each other then you are almost done; maybe you
>> only
>> need to configure some routing protocol betwen the routers or use static
>> routes.
>>
>> Regards,
>> Gabriele

>
> Thank you so much. Do you have an example of the static routes? Do I
> need to assign an ip address to my fastethernet0 ports? I mentioned
> above that I would like to DHCP over them, but now I am just going to
> plug my PBX's directly into them. So no need to DHCP. So basicily, I
> am creating a tunnel for two PBX's to talk back and forth.
>
> Thank you,
> Jason


Hi,

If you just need static routing you only have to insert something like this
(assuming 192.168.1.0/24 is reachable via router A and 192.168.2.0/24 via
router B):

RouterA
ip route 192.168.2.0 255.255.255.0 192.168.0.2 (where 192.168.0.2 is routerB
serial interface address)

RouterB
ip route 192.168.1.0 255.255.255.0 192.168.0.1 (where 192.168.0.1 is routerA
serial interface address)

You can also avoid using an IP Address and use somethink like this (ip route
ip route 192.168.2.0 255.255.255.0 serial<something>

You need to assign an address to your fastethernet interfaces on both
routers (this IP will be the gateway used by your IP PBX) (i.e.
192.168.1.254/24 for RouterA's fa0 and 192.168.2.254/24 for routerB's fa0)


to proxy DHCP requests arriving at an interface use something like this: ip
helper-address <dhcp server address>


Regards,
Gabriele


 
Reply With Quote
 
goddard@phoneranger.net
Guest
Posts: n/a
 
      12-05-2007
On Dec 5, 1:41 pm, "Gabriele Beltrame" <bel...@drvsource.net> wrote:
> <godd...@phoneranger.net> ha scritto nel messaggionews:c2df2640-83cd-4183-ab7b-...
>
>
>
>
>
> > On Dec 5, 11:36 am, "Gabriele Beltrame" <bel...@drvsource.net> wrote:
> >> "John Smith" <some...@microsoft.com> ha scritto nel
> >> messaggionews:BqGdnS7rx7BqUsvanZ2dnUVZ_tGonZ2d@com cast.com...

>
> >> > Hello:

>
> >> > I am trying to bridge to locations via a point to point t1. The
> >> > provider
> >> > says that they do no provide clocking on the line. My routers are
> >> > 1720's
> >> > with a WIC T1 interface card in both of them. Does anybody have a good
> >> > configuration for this application? I would like to be able to pull
> >> > DHCP
> >> > from the main facility too. Is this possible? Currently I can ping
> >> > the
> >> > serial0 interfaces between the routers, but I cannot see through to the
> >> > LAN. I am willing to scrap my current config, it somebody has a working
> >> > config.

>
> >> > Thank you,

>
> >> > Jason Goddard

>
> >> Hi,

>
> >> If the routers can ping each other then you are almost done; maybe you
> >> only
> >> need to configure some routing protocol betwen the routers or use static
> >> routes.

>
> >> Regards,
> >> Gabriele

>
> > Thank you so much. Do you have an example of the static routes? Do I
> > need to assign an ip address to my fastethernet0 ports? I mentioned
> > above that I would like to DHCP over them, but now I am just going to
> > plug my PBX's directly into them. So no need to DHCP. So basicily, I
> > am creating a tunnel for two PBX's to talk back and forth.

>
> > Thank you,
> > Jason

>
> Hi,
>
> If you just need static routing you only have to insert something like this
> (assuming 192.168.1.0/24 is reachable via router A and 192.168.2.0/24 via
> router B):
>
> RouterA
> ip route 192.168.2.0 255.255.255.0 192.168.0.2 (where 192.168.0.2 is routerB
> serial interface address)
>
> RouterB
> ip route 192.168.1.0 255.255.255.0 192.168.0.1 (where 192.168.0.1 is routerA
> serial interface address)
>
> You can also avoid using an IP Address and use somethink like this (ip route
> ip route 192.168.2.0 255.255.255.0 serial<something>
>
> You need to assign an address to your fastethernet interfaces on both
> routers (this IP will be the gateway used by your IP PBX) (i.e.
> 192.168.1.254/24 for RouterA's fa0 and 192.168.2.254/24 for routerB's fa0)
>
> to proxy DHCP requests arriving at an interface use something like this: ip
> helper-address <dhcp server address>
>
> Regards,
> Gabriele- Hide quoted text -
>
> - Show quoted text -


Gabriele:

If I understand you correctly, I am plugging the ip address of my IP
PBX's into the route table correct? My main pbx is 10.0.1.28
255.255.255.0. My main router serial interface is 10.0.0.1
255.255.255.252. My remote pbx is 10.0.1.30 255.255.255.0. My remote
router serial interface is 10.0.0.2 255.255.255.252.

Is this correct?

Thank you for your patience I am almost there.

Jason
 
Reply With Quote
 
Helge Olav Helgesen
Guest
Posts: n/a
 
      12-06-2007
Hello john,

> I am trying to bridge to locations via a point to point t1.


You should go for routing instead of bridging if possible.

> The provider says that they do no provide clocking on the line.


I have not seen this on a E1 or T1 before. Read the article below to find
out more on how to set some kind of clock.I am not sure if this is what you
are looking for.

http://www.cisco.com/en/US/docs/ios/...e/clkrate.html
---
Helge Olav Helgesen
http://www.helge.ne



--
Posted via a free Usenet account from http://www.teranews.com

 
Reply With Quote
 
Merv
Guest
Posts: n/a
 
      12-06-2007

Please post output of show diag from one of the 1720

 
Reply With Quote
 
Gabriele Beltrame
Guest
Posts: n/a
 
      12-06-2007
<> ha scritto nel messaggio
news:caa40715-1a6f-4d56-9d12-...
> On Dec 5, 1:41 pm, "Gabriele Beltrame" <bel...@drvsource.net> wrote:
>> <godd...@phoneranger.net> ha scritto nel
>> messaggionews:c2df2640-83cd-4183-ab7b-...
>>
>>
>>
>>
>>
>> > On Dec 5, 11:36 am, "Gabriele Beltrame" <bel...@drvsource.net> wrote:
>> >> "John Smith" <some...@microsoft.com> ha scritto nel
>> >> messaggionews:BqGdnS7rx7BqUsvanZ2dnUVZ_tGonZ2d@com cast.com...

>>
>> >> > Hello:

>>
>> >> > I am trying to bridge to locations via a point to point t1. The
>> >> > provider
>> >> > says that they do no provide clocking on the line. My routers are
>> >> > 1720's
>> >> > with a WIC T1 interface card in both of them. Does anybody have a
>> >> > good
>> >> > configuration for this application? I would like to be able to pull
>> >> > DHCP
>> >> > from the main facility too. Is this possible? Currently I can ping
>> >> > the
>> >> > serial0 interfaces between the routers, but I cannot see through to
>> >> > the
>> >> > LAN. I am willing to scrap my current config, it somebody has a
>> >> > working
>> >> > config.

>>
>> >> > Thank you,

>>
>> >> > Jason Goddard

>>
>> >> Hi,

>>
>> >> If the routers can ping each other then you are almost done; maybe you
>> >> only
>> >> need to configure some routing protocol betwen the routers or use
>> >> static
>> >> routes.

>>
>> >> Regards,
>> >> Gabriele

>>
>> > Thank you so much. Do you have an example of the static routes? Do I
>> > need to assign an ip address to my fastethernet0 ports? I mentioned
>> > above that I would like to DHCP over them, but now I am just going to
>> > plug my PBX's directly into them. So no need to DHCP. So basicily, I
>> > am creating a tunnel for two PBX's to talk back and forth.

>>
>> > Thank you,
>> > Jason

>>
>> Hi,
>>
>> If you just need static routing you only have to insert something like
>> this
>> (assuming 192.168.1.0/24 is reachable via router A and 192.168.2.0/24 via
>> router B):
>>
>> RouterA
>> ip route 192.168.2.0 255.255.255.0 192.168.0.2 (where 192.168.0.2 is
>> routerB
>> serial interface address)
>>
>> RouterB
>> ip route 192.168.1.0 255.255.255.0 192.168.0.1 (where 192.168.0.1 is
>> routerA
>> serial interface address)
>>
>> You can also avoid using an IP Address and use somethink like this (ip
>> route
>> ip route 192.168.2.0 255.255.255.0 serial<something>
>>
>> You need to assign an address to your fastethernet interfaces on both
>> routers (this IP will be the gateway used by your IP PBX) (i.e.
>> 192.168.1.254/24 for RouterA's fa0 and 192.168.2.254/24 for routerB's
>> fa0)
>>
>> to proxy DHCP requests arriving at an interface use something like this:
>> ip
>> helper-address <dhcp server address>
>>
>> Regards,
>> Gabriele- Hide quoted text -
>>
>> - Show quoted text -

>
> Gabriele:
>
> If I understand you correctly, I am plugging the ip address of my IP
> PBX's into the route table correct? My main pbx is 10.0.1.28
> 255.255.255.0. My main router serial interface is 10.0.0.1
> 255.255.255.252. My remote pbx is 10.0.1.30 255.255.255.0. My remote
> router serial interface is 10.0.0.2 255.255.255.252.
>
> Is this correct?
>
> Thank you for your patience I am almost there.
>
> Jason



Hi,

You can't have two identical prefixes at both routers (without bridging,
using NATor proxy ARP at least)... so, if you do not want to bridge, you
have to use something like this
-----------------------------------------------------------------
RouterA
interface serial0
ip address 10.0.0.1 255.255.255.252

interface fa0
ip address 10.0.1.254 255.255.255.0

ip route 10.0.2.0 255.255.255.0 10.0.0.2


RouterB
interface serial0
ip address 10.0.0.2 255.255.255.252

interface fa0
ip address 10.0.2.254 255.255.255.0

ip route 10.0.1.0 255.255.255.0 10.0.0.1
------------------------------------------------------------------

If you want (you shouldn't) you can used proxy ARP while having the same
subnets on both routers (or better use bridging)




Regards,
Gabriele


 
Reply With Quote
 
turnip
Guest
Posts: n/a
 
      12-06-2007
On Dec 6, 8:08 am, Helge Olav Helgesen <i...@helge.net> wrote:
> Hello john,
>
> > I am trying to bridge to locations via a point to point t1.

>
> You should go for routing instead of bridging if possible.
>
> > The provider says that they do no provide clocking on the line.

>
> I have not seen this on a E1 or T1 before. Read the article below to find
> out more on how to set some kind of clock.I am not sure if this is what you
> are looking for.
>
> http://www.cisco.com/en/US/docs/ios/...e/clkrate.html
> ---
> Helge Olav Helgesenhttp://www.helge.net
>
> --
> Posted via a free Usenet account fromhttp://www.teranews.com


There is no clocking because its a point to point T1. I set one of
these up recently. It was an AT&T provided line. One router provided
teh clock, the other got it off the line.
 
Reply With Quote
 
 
 
Reply

Thread Tools

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
Share-Point-2010 ,Share-Point -2010 Training , Share-point-2010Hyderabad , Share-point-2010 Institute Saraswati lakki ASP .Net 0 01-06-2012 06:39 AM
Scenario 5: IS-IS routing on Frame Relay Multi-point and Point-to-Point David Sudjiman Cisco 0 06-08-2006 09:11 AM
point to point protocol Gopi VHDL 1 07-13-2004 02:37 PM
simulate point-to-point with 2620's np Cisco 11 03-04-2004 01:44 AM
help, please!! cisco 827H point per point configuration javi Cisco 1 10-16-2003 07:33 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57