Using 2 isp on the same network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2020 04:50 PM
Hello , i have a network where the end users (clients) are using pppoe connection , now i want to use a second isp for my users so i want to split those users between the 2 isp companies
i use a catalyst 2960 switch with 2 ports gig0/1 and gig0/2 for the isp’s
and 5 fastethernet protected ports for sectors (mikrotik mantbox , mimosa c5c) and cables going to roads in the city.
how to do this in the named switch without making any conflict between the 2 companies (isp’s)
example: let’s say 2 clients are connected to the same mantbox but each of them is a pppoe user for different isp (note: each isp has a name service provided with their pppoe user )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2020 11:06 PM
- Check if these documents are helpful :
https://blog.router-switch.com/2012/09/cisco-catalyst-2960-series-enables-routing/
M.
-- Each morning when I wake up and look into the mirror I always say ' Why am I so brilliant ? '
When the mirror will then always repond to me with ' The only thing that exceeds your brilliance is your beauty! '

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2020 12:31 AM
Hello,
I guess you could use policy based routing on the 2960, to send traffic out specific interfaces, based on the source IP address. That of course only works if your PPPoE clients get IP addresses from different pools/subnets.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2020 01:20 AM
if they are different subnets - then you can route them respected ISP and NAT in Mickrotk box , you also looking ISP failover ?
write a small diagram for you to understand and easy for you to diagnose later for your network faults
Hope you are in india as cable operator looking this kind of solution is this correct (if not ignore it) - this what we did many places in india.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2020 06:05 AM
Hello
Can you post a topology diagram of your network setup?
Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.
Kind Regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2021 02:36 PM - edited 01-05-2021 02:42 PM
Hello
The assumption is then that the 2960 is performing L3 routing between the two isp's via svis interfaces or routed ports and you have a default routes with preference towards one particular ISP next-hop - If so then policy based routing would be applicable.
The below example will policy route on specific host to host, host to network for vlan 10,20 and for all users in vlan 30 and monitor/track the isp2 connection and if that isp2 connection fails normal routing via the preferred default next-hop will be performed.
Example:
ip access-list extended PBR_ACL
permit ip host 10.1.1.1 host 4.4.4.4
pemit ip host 10.1.1.1 8.8.8.0 0.0.0.255
permit ip host 20.1.1.1 host 4.4.4.4
pemit ip host 20.1.1.1 8.8.8.0 0.0.0.255
track 1 interface <isp2 interface> ip routing
route-map PBR
match ip address PBR_ACL
set ip next-hop verify-availability <isp2> track 1
int vlan 10
description vlan 10
ip address 10.1.1.1 254 255.255.255.0
ip policy route-map PBR
ip route-cache policy
int vlan 20
description vlan 20
ip address 20.1.1.1 254 255.255.255.0
ip policy route-map PBR
ip route-cache policy
int vlan 30
description vlan 30
ip address 30.1.1.1 254 255.255.255.0
ip policy route-map PBR
ip route-cache policy
Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.
Kind Regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2021 12:47 PM
it's something look like this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2021 02:12 PM
Hello,
post the full running configuration of your 2960 switch. PBR is probably your best option.
