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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running-config Assistance (Netopia config - Cisco config)

Status
Not open for further replies.

alexleon

Programmer
Joined
Jul 23, 2002
Messages
17
Location
US
Hello, I plan on swapping out a Netopia R5300 router with a Cisco 1751 router. I am new to Cisco IOS and needed some help with my configuration prior to implementing Cisco router on a live environment. Below is the configuration information found on the Netopia R5300 and following that you will find my Cisco 1751 running-config. I would greatly appreciate if I one of you could review and assist me with my configuration.

The FastEthernet 0/0 goes to a firewall handling NAT functions for my internal network 10.1.1.X

Thanks in advance.


Netopia Router R5300
---------------------------------------------------------------
DLCI
- DLCI 16
- Remote address 216.X.6.1

T1 Line Configration
- Line encoding: B8ZS
- Frame Mode: ESF
- Number of DSO channels: 24
- Channel data rate: Nx64K
- Data Link Encapsulation: Frame Relay

- Address Translation: no
- IP Addressing: no
- Local WAN IP Address: 216.X.6.52
- Local WAN IP Mask: 255.255.255.0
- Frame Relay Management Type: ANSI (ANNEX D)

Frame Relay
- LMI Type: ANSI (ANNEX D)
- T391 (polling interval in secs): 10
- N391 (Polls/Full Status Cycles): 6
- N392 (Error threshold): 3
- N393 (Monitored event window): 4
- TX injection management: none
- Maximum TX frame size: 1522

IP Setup
- Ethernet IP address: 216.X.60.97
- Ethernet subnet mask: 255.255.255.240
- Default IP Gateway: 216 X.6.1
- Backup IP Gateway: 0.0.0.0
- Primary Domain Name server: 216.X.0.2
- Secondary Domain Name Server: 216.X.0.3
- Domain Name: ispname.net
- Receive RIP: off
- Transmit RIP: off


CISCO 1751
-------------------------------------------------------------

!
! Last configuration change at 23:29:28 America Wed Feb 4 2004 by alex
! NVRAM config last updated at 23:33:00 America Wed Feb 4 2004 by alex
!
version 12.2
no service pad
service tcp-keepalives-in
service tcp-keepalives-out
service timestamps debug datetime msec localtime show-timezone
service timestamps log datetime msec localtime show-timezone
service password-encryption
service sequence-numbers
!
hostname LAADSA
!
logging queue-limit 100
logging buffered 51200 debugging
logging console critical
enable secret 5 $1$fNu.$LZj2FNb7Dd4ZKnhYi5Y0
!
username alex privilege 15 password 7 042E351A01444F1D
memory-size iomem 20
clock timezone America/New_York -5
clock summer-time America/New_York date Apr 6 2003 2:00 Oct 26 2003 2:00
ip subnet-zero
no ip source-route
!
!
ip name-server 216.X.0.3
ip name-server 216.X.0.2
!
no ip bootp server
ip cef
!
!
!
!
interface Null0
no ip unreachables
!
interface FastEthernet0/0
description $FW_INSIDE$connected to EthernetLAN
ip address 216.X.60.97 255.255.255.240
no ip redirects
no ip unreachables
no ip proxy-arp
ip route-cache flow
speed auto
!
interface Serial0/0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
encapsulation frame-relay
ip route-cache flow
service-module t1 remote-alarm-enable
frame-relay lmi-type ansi
!
interface Serial0/0.1 point-to-point
description $FW_OUTSIDE$connected to Internet
ip address 216.X.6.52 255.255.255.240
ip verify unicast reverse-path
no ip redirects
no ip unreachables
no ip proxy-arp
frame-relay interface-dlci 16 IETF
!
router rip
version 2
passive-interface Serial0/0.1
network 216.X.60.0
no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0.1
ip http server
ip http access-class 1
!
!
logging trap debugging
logging 216.X.60.97
access-list 1 remark HTTP Access-class list
access-list 1 remark SDM_ACL Category=1
access-list 1 permit 216.X.60.96 0.0.0.15
access-list 1 deny any
access-list 100 remark VTY Access-class list
access-list 100 remark SDM_ACL Category=1
access-list 100 permit ip 216.X.60.96 0.0.0.15 any
access-list 100 deny ip any any
no cdp run
banner login ^CWARNING: Authorized access only!

Disconnect IMMEDIATELY if you are not an authorized user!^C
!
line con 0
password 7 045919035A01696E
login local
transport output telnet
line aux 0
login local
transport output telnet
line vty 0 4
access-class 100 in
privilege level 15
password 7 0204165E5E262A01
login local
transport input telnet
!
scheduler allocate 4000 1000
scheduler interval 500
end
 
Instead of ...

ip route 0.0.0.0 0.0.0.0 Serial0/0.1

Use

ip route 0.0.0.0 0.0.0.0 216.X.6.1

Also, it looks like you aren't using the correct IP address / subnet mask on your WAN T1 interface (serial0/0.1).

It should be ip address 216.X.6.52 255.255.255.0
 
Great eyes baddos, really appreciate your findings. I am confident this will work out correctly now.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top