cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
231
Views
0
Helpful
4
Replies

Network with two uplink

SSibu
Level 1
Level 1

Q.png

Hello everyone,

Here i have two uplink from my main core switch which is connected to Main-R.

i would like to utilize both uplink same time for different network Eg:

MGMT network use Service Provider as a Uplink (192.168.3.2)

DATA network use Main-R as a uplink (192.168.2.2)

 

4 Replies 4

Hello,

policy routing would be an option. Post your zipped Packet Tracer project (.pkt) file...

 

Hello,

I don't really see where your networks 192.168.2.0 and 192.168.3.0 are located. Either way, if you want to deploy PBR on the main router, the config would look like this (unfortunately Packet Tracer does not support PBR). 

route-map PBR permit 10
match ip address ACL-MGMT
set ip next-hop x.x.x.x
!
route-map PBR permit 20
match ip address ACL-DATA
set ip next-hop x.x.x.x
!
ip access-list extended ACL-MGMT
permit ip 192.168.3.0 0.0.0.255 any
!
ip access-list extended ACL-DATA
permit ip 192.168.2.0 0.0.0.255 any
!
interface FastEthernet0/1/0
ip policy route-map PBR

Hello Georg,

Thanks a lot. but i am a little bit confused about PBR.

QN.png

As mentioned above 192.168.2.0 is main router and we are forwarding 192.168.101.0 and 192.168.102.0 packets from Site-2 switch.

i would like to forward 192.168.101.0 packets to reach 192.168.0.10 through 192.168.3.1(Service Provider Router)

and forward 192.168.102.0 packets to reach 192.168.0.10 through 192.168.0.1(link directly connected to core switch)

one more question

Is there any drawback to use  PBR or it will slow down the speed?.

please suggest me.

Regards,

Sibu.