Okay...thanks to good-ol Vonage, I've thought of a simple, yet brilliant (in my humble opinion) method to throttle bandwidth based on the time of day. Here's the story: I use Vonage VoIP lines for ALL of my phone lines at home - primarily because I'm cheap, not because of the VoIP "cool factor." The problem? I run a massive file server at home that holds every digital picture, work project, video recording, etc... that I've ever done. Sure, I have a local backup that runs, but I always think "what if the house burns down?!?" so...I have an automated program that backs EVERYTHING up to a remote FTP server anytime things change (add/deletes/etc.) on my file server. The problem? I save so much stuff to the server, the FTP file backup is always running and destroying my Vonage call quality for my home phone. Here's how I fixed it:
Step 1: Create an access-list that matches my file server (172.30.100.11), but only during the day.
Router(config)# time-range DAY (creates a new time range)
Router(config-time-range)# periodic weekdays 6:00 to 22:00 (matches weekdays from 6:00am to 10:00pm)
Router(config-time-range)# periodic weekend 6:00 to 22:00 (matches weekends from 6:00am to 10:00pm)
Router(config-time-range)# exit
Router(config)# ip access-list extended SERVER
Router(config-ext-nacl)# permit ip host 172.30.100.11 any time-range DAY (matches my server during the time-range I specified above)
Router(config-ext-nacl)# exit
Router(config)#
