Posted on 06-26-2012 07:27 AM
I have a 10.6.8 server that I have enabled to host 10.7 which will be my master SUS.
before i have even got to the cascading part i have an issue :(
I have followed the instructions from - http://support.apple.com/kb/ht4771
The sections I edited swupd.conf looks like below
## mod_rewrite section added by serveradmin
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Darwin/9
RewriteRule ^/index.sucatalog$ /index-leopard.merged-1.sucatalog
RewriteCond %{HTTP_USER_AGENT} Darwin/10
RewriteRule ^/index.sucatalog$ /index-leopard-snowleopard.merged-1.sucatalog
RewriteCond %{HTTP_USER_AGENT} Darwin/11
RewriteRule ^/index.sucatalog$ /index-lion-snowleopard-leopard.merged-1.sucatalog
</IfModule>
swupd.plist looks like below:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PurgeUnused</key>
<false/>
<key>autoEnable</key>
<false/>
<key>autoMirror</key>
<true/>
<key>autoMirrorOnlyNew</key>
<false/>
<key>limitBandwidth</key>
<false/>
<key>maxDownloadSpeed</key>
<integer>0</integer>
<key>metaIndexURL</key>
<string>http://swscan.apple.com/content/meta/mirror-config-1.plist</string>
<key>otherCatalogs</key>
<array>
<string>index-leopard.merged-1.sucatalog</string>
<string>index-leopard-snowleopard.merged-1.sucatalog</string>
<string>index-lion-snowleopard-leopard.merged-1.sucatalog</string>
</array>
<key>portToUse</key>
<integer>8088</integer>
<key>updatesDocRoot</key>
<string>/var/db/swupd/</string>
<key>valueBandwidth</key>
<integer>0</integer>
</dict>
</plist>
When my client connects to the SUS server it gets the following error in console:
26/06/2012 14:23:28.080 Software Update: Can't load distribution from http://ukhfhmmac06.local:8088/content/downloads/56/07/041-6215/0ulfdubx0svowmm8oq36wo1yynibgcuxyw/041-6215.English.dist: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x104427400 {NSUnderlyingError=0x10448d490 "The request timed out.", NSErrorFailingURLStringKey=http://ukhfhmmac06.local:8088/content/downloads/56/07/041-6215/0ulfdubx0svowmm8oq36wo1yynibgcuxyw/041-6215.English.dist, NSErrorFailingURLKey=http://ukhfhmmac06.local:8088/content/downloads/56/07/041-6215/0ulfdubx0svowmm8oq36wo1yynibgcuxyw/041-6215.English.dist, NSLocalizedDescription=The request timed out.}
Any ideas?