cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
462
Views
0
Helpful
1
Replies

2 circuits and one router

skhirbash
Level 1
Level 1

Can you have one router with 2 separate interfaces(2 separate circuits) to provide 2 separate traffic, one for company users and the other for non-company users (Internet Only)? Currently, we have 35 sites connecting to corporate headquarters via ATM cloud and we will adding a new site which will have two user communities and want to have separate network environments.

Thanks in advance,

sK

1 Reply 1

Istvan_Rabai
Level 7
Level 7

Hi Sadik,

One solution could be to use policy-based routing similarly to this:

ip access-list extended Non_company_users

permit ip x.x.x.x x.x.x.x y.y.y.y y.y.y.y

route-map Non_company_users permit 10

match ip address Non_company_users

set default interface serial1/1

interface fa0/0

ip policy route-map Non_company_users

This solution will route the traffic defined by the access-list to the interface that leads to the service provider and will override the default route in the routing table.

Notes:

- The "ip policy route-map" command should be configured on the interface(s) receiving traffic from the non-company users, in the example fa0/0 LAN interface.

- Use the "set default interface" only if there is no explicit route in the routing table to the destination ip addresses for the traffic.

If the router finds explicit routes in the routing table, it will ignore the default interface.

- In general situations you can use the "set ip next-hop" command in the route-map.

Cheers:

Istvan

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card