Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

dual gateway on cisco as5200

Status
Not open for further replies.

humpy

ISP
May 8, 2001
5
0
0
AU
I have a Cisco AS5260, which until recently used to gateway through a squid box that proxied all from IP A, while all other traffic used default gateway IP B.

The squidbox has died and cant be revived for the moment.

Can anyone suggest a config that would make the AS5200 redirect so it was coming from from ip A, and the rest of teh traffic from ip B,

The AS5200 itself has only one ethernetport
cheers
 
! Prevent loops
access-list 101 deny tcp host 192.168.1.1 any eq 80
! All other clients:
access-list 101 permit tcp 192.168.1.0 0.0.0.255 any eq 80
access-list 101 permit tcp 192.168.2.0 0.0.0.255 any eq 80
! Route-map
route-map forced-proxy permit 10
match ip address 101
set ip next-hop 192.168.1.1
!
! LAN interfaces
interface Ethernet 0
ip policy route-map forced-proxy
!
! Dialup
interface Group-Async 1
group-range 1 16
ip policy route-map forced-proxy


192.168.1.1 - proxy-server....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top