Hello All,
I have three subnets 192.168.1.x/24, 192.168.2.x/24 and 192.168.3.x/24 they are on 4507 with HSRP configuration
now i want for one subnet 192.168.1.x/24 default route should be towards 10.15.0.10 and for rest of two networks
10.15.0.11
L3(config)#access-list 110 permit ip 192.168.1.0 0.0.0.255 any
L3(config)#route-map TestPBR permit 10
L3(config)#match ip address 110
L3(config)#set ip default next-hop 10.15.0.10
L3(config-if)#interface vlan 200
L3(config-if)#ip add 192.168.1.1 255.255.255.0
L3(config-if)#ip policy route-map TestPBR
L3(config)#ip route 0.0.0.0 0.0.0.0 10.15.0.11
with above route map i also want to apply WOL configuration on this subnet (Vlan 200)
L3(config)#access-list 101 permit udp host 192.168.2.15 any eq discard
L3(config)#ip forward-protocol udp discard
L3(config-if)#interface vlan 200
L3(config-if)#ip add 192.168.1.1 255.255.255.0
L3(config-if)#ip helper-address 192.168.2.15
L3(config-if)#ip directed-broadcast 101
Can you please let me know if it will work fine, i am confused because of two differnt access lists called on the same
Vlan interface called to take the decision?
Thanks
JD