2

I work in a ISP where bandwidth is limited. We want to provide our customers a mirror for windows updates, so we can save bandwidth and provide to our customers a faster connection.

How can we achieve this?

Ameer
  • 103
  • 4
Andre
  • 1,333
  • 4
  • 18
  • 31

4 Answers4

2

This is tricky. The only officially sanctioned method for doing this is WSUS, as has been mentioned several times now. In order to use that your clients would have to change their Windows Update data, which can be accomplished by installing the right registry keys but it requires positive action on the part of your clients.

sysadmin1138
  • 131,083
  • 18
  • 173
  • 296
1

In the Windows world, "mirrors" are typically accomplished utilizing Windows Server Update Services (WSUS). However, you may run into licensing issues if you want to provide that for free as part of your ISP services.

Warner
  • 23,440
  • 2
  • 57
  • 69
1

I would install a transparent proxy and cache all downloaded binaries. This would require some sniffing to Windows Update used domains.

1

You may want to give squid a try, if you're not using it already. It's a data-caching application for commonly transferred data. It may not be able to cache Windows Updates, but it should help you save bandwidth, which seems to be your goal.

http://www.squid-cache.org/Intro/why.html

Cypher
  • 1,079
  • 2
  • 17
  • 24