Hi all,
I am trying to separate loopback interfaces and have some of them go out through a different gateway. All gateways are connected to Fa0/0 (same LAN switch). Currently all loopbacks use the same gateway, and for load balancing reasons we need to separate the loopback interfaces.
current sample config is as follows:
interface FastEthernet0/0
ip address 67.x1.x2.1 255.255.252.0
no ip unreachables
ip accounting output-packets
ip accounting precedence input
ip accounting precedence output
speed auto
full-duplex
arp timeout 240
!
!
interface Loopback01
description Customer 1
ip address 10.01.01.1 255.255.255.252
!
!
interface Loopback02
description Customer 2
ip address 10.02.02.1 255.255.255.252
!
!
interface ATM1/0.01 point-to-point
description Customer 1
ip unnumbered Loopback01
no ip route-cache
no ip mroute-cache
pvc 1/01
class-vc bridging
ubr 640
!
!
interface ATM1/0.02 point-to-point
description Customer 1
ip unnumbered Loopback02
no ip route-cache
no ip mroute-cache
pvc 1/02
class-vc bridging
ubr 640
!
!
ip default-gateway 67.x1.x2.2 #(gateway of last resort; this is the first gateway and is currantly used by all)
ip classless
ip route 0.0.0.0 0.0.0.0 67.x1.x2.1
ip route 0.0.0.0 0.0.0.0 67.x1.x3.1
!
!
ip route 67.01.03.0 255.255.255.248 ATM1/0.01 #(we want that one to stay going out gateway 67.x1.x2.1)
ip route 67.01.03.8 255.255.255.248 ATM1/0.02 #(we want that one to go out the new gateway 67.x1.x2.254)
Any ideas on how to get this acomplished?
Thanks,
Lisa
I am trying to separate loopback interfaces and have some of them go out through a different gateway. All gateways are connected to Fa0/0 (same LAN switch). Currently all loopbacks use the same gateway, and for load balancing reasons we need to separate the loopback interfaces.
current sample config is as follows:
interface FastEthernet0/0
ip address 67.x1.x2.1 255.255.252.0
no ip unreachables
ip accounting output-packets
ip accounting precedence input
ip accounting precedence output
speed auto
full-duplex
arp timeout 240
!
!
interface Loopback01
description Customer 1
ip address 10.01.01.1 255.255.255.252
!
!
interface Loopback02
description Customer 2
ip address 10.02.02.1 255.255.255.252
!
!
interface ATM1/0.01 point-to-point
description Customer 1
ip unnumbered Loopback01
no ip route-cache
no ip mroute-cache
pvc 1/01
class-vc bridging
ubr 640
!
!
interface ATM1/0.02 point-to-point
description Customer 1
ip unnumbered Loopback02
no ip route-cache
no ip mroute-cache
pvc 1/02
class-vc bridging
ubr 640
!
!
ip default-gateway 67.x1.x2.2 #(gateway of last resort; this is the first gateway and is currantly used by all)
ip classless
ip route 0.0.0.0 0.0.0.0 67.x1.x2.1
ip route 0.0.0.0 0.0.0.0 67.x1.x3.1
!
!
ip route 67.01.03.0 255.255.255.248 ATM1/0.01 #(we want that one to stay going out gateway 67.x1.x2.1)
ip route 67.01.03.8 255.255.255.248 ATM1/0.02 #(we want that one to go out the new gateway 67.x1.x2.254)
Any ideas on how to get this acomplished?
Thanks,
Lisa