Category Archives: Stuff

Anything else

IAS, 802.1X and Cisco

This took me hours to fix. I’m so utterly annoyed at myself for not finding the problem out earlier, that I’m going to let you in on what I did.

We have a set up at work of about 100 cisco routers, aironets and other 802.1x devices connecting to a Windows 2008 IAS box for AD RADIUS authentication. Now, this one user was having a problem with them. IAS logs are, as I’m sure you’re aware, impossible to read. I could see something happening in the logs, but the aironet said Station [mac] Authentication failed. Hmm. AD security logs showed he authenticated ok. It took a long time for Windows to give up authenticating, so seemed like a network related issue. This guy was ok at home with his wireless so the laptop was ok. Weird.

Anyway, after a long and hard struggle of no errors being logged, I looked at his “dial-in” tab in AD and lo and behold, it was set to “deny”. Thanks to whomever set his account up, that was a great help. To make it better, that tab doesn’t show in my Win7 RSAT so I had to RDP to a 2k3 box.

SSM and AMT

As you may be aware I’ve been experiementing with SCCM recently. I’m finding it amazing. I’ve not been on a course for this so to say it is daunting is a huge understatement. The myriad configuration options are enough to scare anyone off, but once you grasp the basic concepts of advertisements, packages and collections, life becomes easier. I’d recommend taking it one step at a time. Get one item configured and working before progressing onto the next.

Regarding that, the PC I’m testing on has intels “VPro” architecture. I really had no idea what this was until I had a cause to use it. Basically, for those of you with HP servers, it’s like a very cut down desktop version of an ILO. No remote console viewing or anything fancy. I can reboot the machine (in a hardware way), view some information on the settings and specifiy a boot image for recovery perhaps. I see it being quite useful but it’s a big of a pain to configure initially. Like msot things in SCCM, getting it do thing NOW is quite hard. As its intended to be used in a huge enterprise, everything happens in a scheduled fashion.

With this in mind, here is a basic list of what you will need. I used our own internal CA, to provision it, which makes things a little more difficult. Mainly because I spent a lot of time wondering why it didn’t work. Here;s a hint. If you are using your own internal CA for AMT provisioning, you must go into the AMT screen via ctrl+P (on my HP) and enter the hash (thumprint) of the CA Root certificate. You can USB provison them, you will need to download Intels AMT SDK http://software.intel.com/en-us/articles/download-the-latest-intel-amt-software-development-kit-sdk/and the USB key provisioning tool http://communities.intel.com/docs/DOC-1430 You make the .bin file with the program in the SDK thusly:

usbfile -create c:\setup.bin admin S3curepw! -hash c:\root-ca.cer “MY CAs Hash”

Obviously change the bits above to suit your environment. You can then format the usb key with the tool, give it the .bin file and boot from the usb key to provision the PC. After a while, assuming SCCM has been setup correctly, it will discover the AMT and it will be configured for you to use.

SCCM Site Detection

I’ve been having some fun at work recently with SCCM. Generally got it to work after following most of the articles on-line. It’s a bit of a mammoth program and configuring it takes time, so I’d certainly read everything first. Also, get an Enterprise CA, life is easier.

My first confusion with an SCCM client was when trying to auto-discover the site. It kept failing for no particular reason. Anyway, it turns out that you can’t do it when logged on locally when it’s AD integrated and there’s no WINS (remember that?). Tried it as a domain account and it worked fine. No idea why, one would assume it would use the computer account to connect to the SLP but it appears not to do so when run from the Control Panel

Have Fun!

Quick Addition

Are you ever faced with a problem where you need to add up a series of numbers? Let’s say for example, you wanted to add up all the numbers between 1 and 10. You could do 1 + 2 +3 +… 10 and try it that way. This won’t be easy for a large series of numbers unless you have a fantastic memory. However, if I lay the number out like this, can you see an easier way?

1 + 10
2  + 9
3  + 8
4 + 7
5  + 6

well, all those number pairs add up to 11, and there are 5 of them. Therefore adding the series of numbers from 1 to 10 equals 55 as we end up having 5 sets of 11. The basic formula for doing this is take the highest number (10) add the lowest number to it (1) then multiply that new figure by half the amount of the highest number (5).

Add all the numbers between 1 and 100.

We get highest of 100 plus the lowest of 1 equals 101. There will be 50 sets, so we do 50 x 101 and arrive at 5050