01-09-2012 07:33 AM - edited 03-07-2019 04:14 AM
I am trying to setup the WOL for our enterprise. We have a C4500 setup with mutliple Vlans. We are using Microsoft SCCM server to wake up workstations for security update. The workstations are on vlan190 and the Microsoft server is on vlan 441
Here's my config
the config below
interface Vlan190
ip directed-broadcast 100 (Enables the translation of a directed broadcast to physical broadcasts)
access-list 100 remark ====== Wake-On-LAN ======
no access-list 100 permit udp host 10.4.40.98 any eq 9 log
access-list 100 remark ====== End of ACL 100 ======
ip forward-protocol udp 9 (Specifies the protocol and port to be forwarded)
interface Vlan441
ip address 10.4.40.2 255.255.252.0
standby ip 10.4.40.1
standby preempt delay minimum 2
Thanks
01-19-2012 11:06 AM
It is not clear to me how your server is set up. Is it generating directed broadcast messages to the subnet of VLAN 190? Or is it generating local broadcasts and you need an ip helper address on VLAN 441 to forward to the directed broadcast address of VLAN 190?
Also this line is creating part of your problem
no access-list 100 permit udp host 10.4.40.98 any eq 9 log
I assume that the no in the line was done while you were testing but it needs to be removed otherwise access list 100 only has remark statements.
HTH
Rick
01-20-2012 02:46 AM
I have recently setup this up on our network using SCCM to wake up the machines. The only thing you seem to off missed off you config is the ip helper-address commands.
Presuming vlan 441 is the subnet your server is on.
interface Vlan441
ip address 10.4.40.2 255.255.252.0
ip helper-address (the broadcast address of the target network you wish to wake up)
standby ip 10.4.40.1
standby preempt delay minimum 2
interface Vlan190
ip directed-broadcast 100
ip helper-address 10.4.40.98 (which is the address of your server)
This setup has worked for me on our all Cisco network.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide