Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco 1601 router config from Polycomm

Status
Not open for further replies.

scoopseven

IS-IT--Management
Jun 6, 2001
8
0
0
US
I have a Polycomm router hosting a T1 connection now and I'm trying to connect a Cisco 1601 in place of the Ploycomm with very little success. The Polycomm doesn't really route, I think it acts as more like a bridge. I have a lan block of around 27 IP's(66.87.194.162-165/255.255.255.224) and a WAN IP(66.87.193.2/255.255.255.252). Ideally I'd like to route 4 of my LAN IP's to internal IP's (192.168.0.2-5/255.255.255.0??) and DHCP the rest out to clients. I don't care if the clients are visible via the Internet, they only need internal IP's and access to the Internet.

Furthermore, whenever I try to config the Cisco with the command: network 66.87.194.0 - and I save the config and then go look at it, it says network 66.0.0.0 - why is this happening?

Here's the working Polycomm config and routing table followed by my best attempt at the Cisco config and it's resultant routing table. Any help would be greatly appreciated.

POLYCOMM CONFIG******************************************
CURRENT ROUTER CONFIGURATION:
Software Version: 3.3.6
Serial Number: 00E0751C6C34
Contains 2 DSP chip(s)
RIP Disabled
Bridging Enabled
Bridge Database Aging Time 300 seconds
Spanning Tree Enabled
Spanning Tree bridge priority 32768
Spanning Tree hello time 2 seconds
Spanning Tree max age 20 seconds
Spanning Tree forward delay 15 seconds
SNMP Disabled
Multicasting Disabled
Telnet Server Port 23
DNS Server IP Address <removed>
DNS Server Timeout 5 seconds

Application Information
ACOS.BIN 4.2.45 RealTime OS by Polycom, Inc.
Support File Information
BOOT.BIN 2.6.2 Boot Manager
BUSY.PCM 1.2.0 G711 PCM Tone
CAS.PCM 1.2.0 G711 PCM Tone
CW1.PCM 1.2.0 G711 PCM Tone
CW2.PCM 1.2.0 G711 PCM Tone
CW3.PCM 1.2.0 G711 PCM Tone
DIALTONE.PCM 1.2.0 G711 PCM Tone
MSGWAIT.PCM 1.2.0 G711 PCM Tone
RCVROFF.PCM 1.2.0 G711 PCM Tone
RECALL.PCM 1.2.0 G711 PCM Tone
REORDER.PCM 1.2.0 G711 PCM Tone
RINGBACK.PCM 1.2.0 G711 PCM Tone
AAL2LES.VG 2.1.5 AAL2/LES(CAS) Call Control
CALLCTRL.VG 3.4.0p
CUCOMCPE.VG 1.3.4 CopperCom Call Control
LES_ELCP.VG 4.1.7 AAL2/LES CCS-ELCP

T1/E1 interface
Admin state = ENABLED
PHY state = ONLINE
Interface state = ONLINE
DataLink Protocol = Frame Relay
Line Rate = 1544000 BPS

T1 Frame Mode = ESF
B8ZS = ENABLED
Line Build Out = 0 To 133 Feet
Tx Clock Source = External
Tx Channels Enabled = 1-24
Rx Channels Enabled = 1-24

Frame Relay Management is None

PORT 1
Bridging = Enabled
Spanning Tree = Enabled
Port Priority = 128
Path Cost = 100
MTU = 1500

DLCI 528 ATM RFC 1483 (Tunneling)

IP interfaces on port 1:
ID IPAddr IPMask Priority
-- --------------- --------------- --------
0 66.87.193.2 255.255.255.252 NORMAL


PORT 2
Bridging = Disabled
MTU = 1500

DLCI 16 ATM RFC 1483 (Tunneling)

IP interfaces on port 2:
ID IPAddr IPMask Priority
-- --------------- --------------- --------


10/100BaseT Ethernet interface
Ethernet Address = 00-E0-75-1C-6C-34
Full Duplex = Disabled


PORT 1
Bridging = Disabled
MTU = 1500

IP interfaces on port 1:
ID IPAddr IPMask Priority
-- --------------- --------------- --------
0 66.87.194.161 255.255.255.224 NORMAL


POLYCOMM ROUTING TABLE ******************************************

NETWORK ADDRESS NETMASK GATEWAY ADDRESS INTERFACE Metric Type
*************** *************** *************** *************** ****** *******
66.87.193.0 255.255.255.252 66.87.193.2 66.87.193.2 1 local
66.87.193.2 255.255.255.255 66.87.193.2 66.87.193.2 1 local
66.87.194.160 255.255.255.224 66.87.194.161 66.87.194.161 1 local
66.87.194.161 255.255.255.255 66.87.194.161 66.87.194.161 1 local
127.0.0.1 255.0.0.0 127.0.0.1 127.0.0.1 1 local
0.0.0.0 0.0.0.0 0.0.0.0 66.87.193.2 1 default

CISCO CONFIG ******************************************
! I realize I'm only dealing with one IP in this config, but I couldn't even
! get that one to work.
Using 868 out of 7506 bytes
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname mp1601
!
enable secret 5 $1$IaV9$xWUvSJBL5nPePzG/2NKo7/
enable password <removed>
!
!
!
!
!
ip subnet-zero
ip name-server <removed>
!
ip dhcp excluded-address 66.87.194.163
!
ip dhcp pool DHCPPoolLAN_0
network 66.87.194.160 255.255.255.224
dns-server <removed>
default-router 66.87.194.161
!
process-max-time 200
!
interface Ethernet0
ip address 192.168.0.1 255.255.255.0
no ip directed-broadcast
ip nat inside
!
interface Serial0
no ip address
no ip directed-broadcast
shutdown
!
interface Serial1
ip address 66.87.193.2 255.255.255.252
no ip directed-broadcast
ip nat outside
!
router rip
network 66.0.0.0
network 192.168.0.0
!
ip nat inside source static 192.168.0.3 66.87.194.163
ip classless
ip route 0.0.0.0 0.0.0.0 Serial1
no ip http server
!
access-list 1 permit 192.168.0.0 0.0.0.255
!
line con 0
exec-timeout 0 0
transport input none
line vty 0 4
password <removed>
login
!

CISCO ROUTING TABLE ******************************************
66.0.0.0/30 is subnetted, 1 subnets
C 66.87.193.0 is directly connected, Serial1
C 192.168.0.0/24 is directly connected, Ethernet0
S* 0.0.0.0/0 is directly connected, Serial1

Again, any help is greatly appreciated, as I've been at this for 2 weeks with no success.

 
I think I know what you want but am not entirely sure. Try this conifg. Rip v1 is a classfull protocol. 66.0.0.0 is a class A subnet so it won't recognize anythig but it. No worries though, you really don't need a routing protocol.

router: 66.87.193.2/255.255.255.252
subnet: 66.87.194.160 255.255.255.224 (usable range 161-191)
static map: 66.87.194.161 - 192.168.0.2
66.87.194.162 - 192.168.0.3
66.87.194.163 - 192.168.0.4
66.87.194.164 - 192.168.0.5
66.87.194.165 - 192.168.0.6
dynamic map:
66.87.194.166-191 - anyone else in 192.168.0.0
Try this:

ip classless

interface Ethernet0
ip address 192.168.0.1 255.255.255.0
no ip directed-broadcast
ip nat inside

interface Serial1
ip address 66.87.193.2 255.255.255.252
no ip directed-broadcast
ip nat outside

access-list 1 permit 192.168.0.0 0.0.0.255
ip nat pool 101 66.87.193.168 66.87.193.191 255.255.255.244
ip nat inside source list 1 pool 101 overload
ip nat inside source static 66.87.194.161 192.168.0.2
continue with the others.

delete all dhcp commands
delete all rip commands

-Jeff


----------------------------------------
Wasabi Pop Tarts! Write Kellogs today!
 
Just noticed in the Polycom config
DataLink Protocol = Frame Relay
DLCI 528 ATM RFC 1483 (Tunneling), which is MOATM

You need to talk to your provider and find out what encapsulation is being used.
----------------------------------------
Wasabi Pop Tarts! Write Kellogs today!
 
jgercken,

Encapsulation is frame-relay ietf. Would this change the example config you provided? I test and try out the router every morning from 4am - 5am, the only time I'm allowed to. I was going to try your example config tomorrow morning, let me know if this changes anything. Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top