Problem:
I have a network with 3 routers (1 to Internet, 2 to Corporate) and need an additional layer 3 switch to be programmed to route the traffic appropriately. The two corporate routes serve different purposes and use different carriers, but one needs to fail over to the other. So far I have been unsuccessful in doing this.
Scenario:
Router 1 used to be the default route for the workstations and is the main WAN router for the corporate data traffic. The IP address is 10.0.82.1/24.
Router 2 is a new router establishing application-specific traffic to the Corporate office and if this one fails, the traffic needs to be sent to Router 1. Currently, this failover does not work as attempted. The IP address is 10.0.82.203/24.
Router 3 is actually a simple firewall that connects to the internet router and then out to the internet. By design, all traffic that is not explicitly intended for the Corporate office goes out this way to the internet. The IP address is 10.0.82.2/24.
New Layer 3 Switch --- Cisco 3650 --- was configured like it shows below, I have tried to add additional failover routes with different metrics and I have tried changing the gateway from Router 3 to Router 1 to try to force the traffic out& but surprisingly that did not work. The IP address is 10.0.82.18/24.
Also all routing is static. Routers 1 and 2 are managed by someone else and do not have any dynamic routing enabled. Part of the reason for my trouble.
version 12.2
no service pad
service timestamps debug uptime
service timestamps log datetime localtime
service password-encryption
!
hostname layer3
!
enable secret 5 $1jalmXQo4gyONC/6LLD0
enable password 7 01030712
!
no aaa new-model
clock timezone EST -5
clock summer-time EDT recurring
system mtu routing 1500
ip subnet-zero
ip routing
no ip domain-lookup
ip host layer3 10.0.82.18
ip name-server 10.0.24.211
ip name-server 205.218.123.50
!
!
!
!
no file verify auto
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
interface FastEthernet0/1
speed 100
duplex full
!
interface FastEthernet0/2
!
interface FastEthernet0/3
!
interface FastEthernet0/4
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!
interface FastEthernet0/10
!
interface FastEthernet0/11
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface FastEthernet0/16
!
interface FastEthernet0/17
!
interface FastEthernet0/18
!
interface FastEthernet0/19
!
interface FastEthernet0/20
!
interface FastEthernet0/21
!
interface FastEthernet0/22
!
interface FastEthernet0/23
!
interface FastEthernet0/24
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
!
interface Vlan1
ip address 10.0.82.18 255.255.255.0
!
ip default-gateway 10.0.82.2
no ip classless
ip route 0.0.0.0 0.0.0.0 10.0.82.2
ip route 10.0.24.0 255.255.252.0 10.0.82.1
ip route 10.0.24.44 255.255.255.255 10.0.82.203
ip route 10.0.24.47 255.255.255.255 10.0.82.203
ip route 10.0.24.126 255.255.255.255 10.0.82.203
ip route 10.0.25.128 255.255.255.255 10.0.82.203
ip route 10.0.26.33 255.255.255.255 10.0.82.203
ip route 10.0.248.0 255.255.254.0 10.0.82.1
ip route 10.0.252.0 255.255.252.0 10.0.82.1
ip route 10.186.160.0 255.255.224.0 10.0.82.1
ip route 64.46.192.0 255.255.192.0 10.0.82.1
ip route 64.46.248.0 255.255.255.0 10.0.82.2
ip route 64.46.249.0 255.255.255.128 10.0.82.2
ip route 199.21.16.0 255.255.240.0 10.0.82.1
ip http server
!
snmp-server community UHSsncmrm RW
!
control-plane
!
!
line con 0
line vty 0 4
password 7 011048
login
length 0
line vty 5 15
password 7 011048
login
!
ntp clock-period 36028911
ntp server 10.0.24.3 prefer
end
***
So if I want traffic going to 10.0.82.203 to be sent to 10.0.82.1 if the Router 2 fails how do I do that?
Thank you so much for your assistance.
Start Free Trial