Link to home
Start Free TrialLog in
Avatar of alex alexandre
alex alexandreFlag for United States of America

asked on

CISCO 2960-s OSPF routing

hello all-

i am trying to replace a 3760 switch with a 2960 at one of my location, the 3760 is doing OSPF  to my router  and just realize i dont have license on the 2960 to do OSPF, whats my option there to get this switch to work please see the config from the previous switch.

interface GigabitEthernet1/0/46
 description P2P with CP-RT-Worship-1 Gi0/0/2
 switchport trunk allowed vlan 912
 switchport mode trunk
 srr-queue bandwidth share 1 30 35 5
 priority-queue out
 mls qos trust cos
 auto qos trust
 spanning-tree portfast trunk



interface Vlan912
 description P2P with CP-RT-Worship-1
 ip address 10.3.6.102 255.255.255.252
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 ip ospf network point-to-point
 ip ospf 1 area 3
!
router ospf 1
 router-id 10.3.6.1
 passive-interface default
 no passive-interface Vlan912
 network 10.3.0.0 0.0.255.255 area 3
!
ip default-gateway 10.0.10.1
ip forward-protocol nd
no ip http server
no ip http secure-server
ip flow-export source Loopback0
!
!

any help would be greatly appreciated.

thanks
Avatar of Infamus
Infamus

You can try sdm prefer lanbase-routing then enable ip routing.

And you will need to add static routes.
Avatar of Predrag Jovic
Forget about Catalyst 2960-S and OSPF in the same sentence. There is no license for OSPF for that one.
Yes, 2960-s is layer 2 switch so it won't support dynamic routing however Cisco added a basic routing feature since IOS 12.2(55) and requires LAN Base which has been around since late last year
config t
sdm prefer lanbase-routing
ip routing
ip route x.x.x.x x.x.x.x x.x.x.x.
Avatar of alex alexandre

ASKER

what route would i need to add to get it to talk to router according to the old config
For routing you have just one option - static routes (if available on that model).
SOLUTION
Avatar of Infamus
Infamus

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
16 static routes can be configured total, so it all depends on your needs (maybe something has changed in the meantime from last time I checked).
You are right, the maximum static routes you can add is 16.
But, in the end, looks like the wrong type of switch is purchased and most likely it should be replaced if OSPF is essential for your network (check with your reseller what are your options).
the router is 10.3.6.2 the 10.0.10.1 default gateway was doing routing to the core at one time, do i also need to do a loopback for the switch
"ip flow-export source Loopback0"

This is for netflow and switches typically don't have netflow feature.

As for the default route, whatever IP on the LAN facing interface on the router is the gateway.

If it's possible, replacing with layer 3 switch is the best option as Predrag mentioned.

I only suggested this option because that is what you asked in the question.
I guess, no one can tell you configuration details without knowing your topology in much more details than it can be found here (since it may include other devices and not just those two).
Since previously you had routing configured maybe you need just one static route  to replace all routes (and you previously did not need routing after all at least on device that was replaced), or you simply can't do it with that switch.
this is the config from the router
interface GigabitEthernet0/0/0
 description Boynton Metro-E Connection
 bandwidth 20000
 vrf forwarding metroe
 ip address 10.0.10.3 255.255.255.0
 no ip redirects
 no ip unreachables
 load-interval 30
 speed 100
 no negotiation auto
 service-policy output WAN-INT-SHAPE
!
interface GigabitEthernet0/0/1
 description to CP-SW-Worship Gi1/1
 no ip address
 load-interval 30
 negotiation auto
!
interface GigabitEthernet0/0/1.912
 description -- Inside --
 encapsulation dot1Q 912
 ip address 10.3.6.101 255.255.255.252
 no ip redirects
 no ip unreachables
 ip pim sparse-mode
 ip nbar protocol-discovery
 ip flow monitor SWINDS-FLOWMONITOR input
 ip flow monitor SWINDS-FLOWMONITOR output
 ip ospf network point-to-point
 ip ospf 1 area 3
 no cdp enable
!
interface GigabitEthernet0/0/2
 no ip address
 negotiation auto
!
interface Service-Engine0/1/0
!
interface Service-Engine0/2/0
!
interface Service-Engine0/4/0
!        
interface GigabitEthernet0
 vrf forwarding Mgmt-intf
 no ip address
 shutdown
 negotiation auto
!
interface Vlan1
 no ip address
 shutdown
!
!
router eigrp IWAN
 !
 address-family ipv4 unicast autonomous-system 100
  !
  af-interface default
   passive-interface
  exit-af-interface
  !
  af-interface Tunnel11
   summary-address 10.3.0.0 255.255.248.0
   authentication mode md5
   authentication key-chain LAN-KEY
   hello-interval 20
   hold-time 60
   no passive-interface
  exit-af-interface
  !
  topology base
   default-metric 1000000 1 255 1 1500
   redistribute ospf 1
  exit-af-topology
  network 10.0.0.0
  eigrp router-id 10.3.6.2
  eigrp stub connected summary redistributed
 exit-address-family
!
router ospf 1
 router-id 10.3.6.2
 passive-interface default
 no passive-interface GigabitEthernet0/0/1.912
 default-information originate
!
ip forward-protocol nd
ip pim rp-address 10.1.6.2
ip ftp source-interface Loopback0
no ip http server
no ip http secure-server
ip tftp source-interface Loopback0
ip ssh source-interface Loopback0
ip ssh version 2
!
!
ip access-list standard SHELLED
 permit 10.0.0.0 0.255.255.255
 permit 172.16.0.0 0.0.255.255
 deny   any log
Configuration of 3760 that you are replacing?
this is the config from 3760 i am trying to replace
interface Loopback0
 ip address 10.3.6.1 255.255.255.255
 no ip redirects
 no ip proxy-arp
!
interface FastEthernet0
 no ip address
 no ip route-cache
 shutdown
!
interface GigabitEthernet0/1
 description Voice and Data
 switchport access vlan 350
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!        
interface GigabitEthernet0/2
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/3
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/4
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/5
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/6
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/7
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/8
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/9
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/10
 description Voice and Data
 switchport access vlan 350
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 speed 10
 duplex full
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/11
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/12
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/13
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/14
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!        
interface GigabitEthernet0/15
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/16
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/17
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/18
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/19
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/20
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/21
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/22
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/23
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/24
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/25
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/26
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/27
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/28
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/29
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/30
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/31
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/32
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/33
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/34
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/35
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/36
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/37
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!        
interface GigabitEthernet0/38
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/39
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/40
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/41
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/42
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/43
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/44
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/45
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet0/46
 description P2P with CP-RT-Worship-1 Gi0/0/2
 switchport trunk encapsulation dot1q
 switchport trunk allowed vlan 912
 switchport mode trunk
 srr-queue bandwidth share 1 30 35 5
 priority-queue out
 mls qos trust cos
 auto qos trust
 spanning-tree portfast trunk
!
interface GigabitEthernet0/47
!
interface GigabitEthernet0/48
 description Media
 switchport access vlan 355
 switchport mode access
 switchport nonegotiate
 switchport voice vlan 351
 srr-queue bandwidth share 10 10 60 20
 srr-queue bandwidth shape 30 0 0 0
 queue-set 2
 priority-queue out
 mls qos trust device cisco-phone
 mls qos trust cos
 spanning-tree portfast
!
interface GigabitEthernet1/1
!
interface GigabitEthernet1/2
!
interface GigabitEthernet1/3
!
interface GigabitEthernet1/4
!
interface TenGigabitEthernet1/1
!
interface TenGigabitEthernet1/2
!
interface Vlan1
 no ip address
!
interface Vlan350
 description City Data Vlan
 ip address 10.3.2.1 255.255.255.0
 ip helper-address 10.1.0.5
 ip helper-address 172.20.0.7
 no ip redirects
 no ip proxy-arp
!
interface Vlan351
 description City Voice Vlan
 ip address 10.3.3.1 255.255.255.0
 ip helper-address 10.1.0.5
 ip helper-address 172.20.0.7
 no ip redirects
 no ip proxy-arp
!
interface Vlan355
 description City Video Vlan
 ip address 10.3.4.1 255.255.255.0
 ip helper-address 10.1.0.5
 ip helper-address 172.20.0.7
 no ip redirects
 no ip proxy-arp
!
interface Vlan912
 description P2P with CP-RT-Worship-1
 ip address 10.3.6.102 255.255.255.252
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 ip ospf network point-to-point
 ip ospf 1 area 3
!
router ospf 1
 router-id 10.3.6.1
 passive-interface default
 no passive-interface Vlan912
 network 10.3.0.0 0.0.255.255 area 3
!
ip default-gateway 10.0.10.1
ip forward-protocol nd
no ip http server
no ip http secure-server
ip flow-export source Loopback0
!
!
ip access-list standard SHELL
 deny   10.1.224.0 0.0.15.255
 deny   10.2.224.0 0.0.15.255
 permit 10.0.0.0 0.255.255.255
 permit 172.0.0.0 0.31.255.255
 deny   any log
ip access-list standard SHELLED
 permit 10.0.0.0 0.255.255.255
 deny   any log
ip access-list standard SNMP_ACL
 permit 10.1.0.0 0.0.0.255
 permit 172.16.0.0 0.0.255.255
!
!
ip radius source-interface Loopback0
ip sla enable reaction-alerts
logging trap warnings
logging origin-id hostname
logging source-interface Loopback0
logging host 10.1.2.17
I can be done, but I guess it is not good idea since you should do many changes on both devices (including redistribution of those networks on ABR). And I still think that I don't have enough details to make conclusion. So I guess better solution would be to replace that switch.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks for all your help guys