Using NTP to Send Periodic Multicast Time Updates
Problem
You want to set up your router to use the NTP multicast mode so that devices do not need to query periodically for the time.
Solution
Use the ntp multicast interface command to enable server-side NTP multicast packets:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#clock timezoneRouter1(config)#EST -5clock summer-timeEDTrecurringRouter1(config)#ntp serverRouter1(config)#172.25.1.1ntp serverRouter1(config)#172.25.1.3interfaceRouter1(config-if)#FastEthernet 0/0ntp multicast224.0.1.1ttlRouter1(config-if)#1endRouter1#
To enable NTP multicast client functionality on the router, use the following commands:
Router2#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router2(config)#clock timezoneRouter2(config)#EST -5clock summer-timeEDTrecurringRouter2(config)#interfaceRouter2(config-if)#Ethernet0ntp multicast clientRouter2(config-if)#224.0.1.1ntp multicast version3Router2(config-if)#endRouter2#
NTP multicast support is available starting in IOS Version 12.1.
Discussion
On the surface, the ability to forward NTP broadcast packets and
NTP Multicast packets on a LAN interface appear similar. However,
there are some important differences. First, NTP sends broadcast
packets to the 255.255.255.255 local broadcast address. This means that every device on the network must examine the NTP packet. If there are devices on the network ...