5 pts.
 Port Forwarding with Cisco 3560
Hi Friends, I have a small requirement. please see my configuration. i have an L3 switch (Cisco 3560) series and now i am forwarding all the traffic from my network to Firewall from L3 switch through this default route " ip route 0.0.0.0 0.0.0.0 10.11.12.2" where 10.11.12.1 is my L3 switch 10.11.12.2 is my firewall 10.11.12.3 is my ISA server now my requirement is... i want to redirect ports 80 and 445 to 10.11.12.3(ISA server) instead of going to 10.11.12.2 (Firewall). please let me know what configuration needs to be added.

Software/Hardware used:
ASKED: December 22, 2008  11:53 AM
UPDATED: February 2, 2009  6:39 PM

Answer Wiki:
You can do this by applying PBR (Policy Based Routing). See below a very simple config. You can amend the PBR rules in below ACL <b>1. Define your PBR rule ACL </b> <pre><pre>ip access-list extended PBR permit ip any any eq 80 permit ip any any eq 445</pre> <b>2. Define next hop</b> <pre>route-map PBR permit 10 match ip address PBR set ip next-hop 10.11.12.3</pre> <b>3. Apply the PBR on L3 inteface(s) </b> e.g. <pre>interface Vlan 11 description Users subnet 10.11.11.0/24 ip address 10.11.11.1 255.255.255.0 ip policy route-map PBR interface Vlan 12 description subnet 10.11.12.0/24 ip address 10.11.12.1 255.255.255.0 ip policy route-map PBR</pre> <b>4. Optional: </b> Apply the below config. if you want to apply PBR on all the local traffic generated from L3 switch itself. <pre>ip local policy route-map PBR</pre></pre>
Last Wiki Answer Submitted:  February 2, 2009  6:39 pm  by  Labnuke99   32,645 pts.
All Answer Wiki Contributors:  Labnuke99   32,645 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _