Difference between revisions of "Wake on LAN in routed environment"

From Teknologisk videncenter
Jump to: navigation, search
m (New page: <source lang=cli> ip forward-protocol udp 7 ip forward-protocol udp 9 ! interface Vlan40 description Network containing hosts ip address 192.168.22.1 255.255.255.0 ip directed-broadca...)
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
 
 
<source lang=cli>
 
<source lang=cli>
 
ip forward-protocol udp 7
 
ip forward-protocol udp 7
 
ip forward-protocol udp 9
 
ip forward-protocol udp 9
 
!
 
!
interface Vlan40
+
interface Vlan10
 
  description Network containing hosts
 
  description Network containing hosts
 
  ip address 192.168.22.1 255.255.255.0
 
  ip address 192.168.22.1 255.255.255.0
 
  ip directed-broadcast
 
  ip directed-broadcast
 
!
 
!
interface Vlan50
+
interface Vlan20
 
  description Server Network with server that sends WOL
 
  description Server Network with server that sends WOL
 
  ip address 192.168.1.1 255.255.255.0
 
  ip address 192.168.1.1 255.255.255.0
 
  ip helper-address 192.168.22.255
 
  ip helper-address 192.168.22.255
 
</source>
 
</source>
{{#css:
+
{{Source cli}}
   
+
=Links=
    pre {  font-family: Lucida Console; font-weight: bold; font-size: 14px; color: #00FF00; background: black; margin: 10px 50px; width: 800px; line-height: 200%; overflow: auto;}
+
*[http://www.cisco.com/en/US/products/hw/switches/ps5023/products_configuration_example09186a008084b55c.shtml Cisco WOL]
}}
 
 
[[Category:Cisco]][[Category:CCNA]][[Category:IOS]][[Category:Network]]
 
[[Category:Cisco]][[Category:CCNA]][[Category:IOS]][[Category:Network]]

Latest revision as of 18:34, 28 February 2010

ip forward-protocol udp 7
ip forward-protocol udp 9
!
interface Vlan10
 description Network containing hosts
 ip address 192.168.22.1 255.255.255.0
 ip directed-broadcast
!
interface Vlan20
 description Server Network with server that sends WOL
 ip address 192.168.1.1 255.255.255.0
 ip helper-address 192.168.22.255

Links