- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm confused about this mysterious port that isn't open after I provision a computer into CCM. In my provisioning profile, I enable KVM and all the other redirection options, and set an RFB password but apparently this is still half-baked after a provision. For example, if I try to connect to the machine via UltraVNC I get this:
I don't get a prompt for a password or anything. Just a failed to connect error.
But here's the thing. If I go into the Manageability Commander, I see this:
If I click into this I get an option to enable the "standard port" 5900 for RFB. Once that is done, I can use UltraVNC Viewer to connect to the machine and get to the user consent screen.
So why is this not enabled when I specify in the profile to enable KVM? I killed the firewall and I still couldn't access the machine so it doesn't seem like a networking port. What exactly is the port this is referring to... something on the AMT device itself?
How do I open this "port" at provision-time? I'd rather not have to open Manageability Commander (whose issues are worthy of another thread) after the fact for every computer I need to connect to. I feel I should just be able to open UltraVNC viewer and type in the hostname::port and be set.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It used to be in older versions of AMT, when you enabled Redirection in the BIOS, the listener was automatically enabled. Now that is not the case. If your MEBx menus have an option to enable "Legacy Redirection Mode" that should enable the listener for you. Here is a blog that describes more fully what is going on: https://communities.intel.com/community/itpeernetwork/vproexpert/blog/2010/04/12/amt-legacy-redirection-mode.
Does your configuration utility provide the ability to enable Legacy Redirection Mode?
In the SDK Documentation if you want to run a script to do this, take a look at the following section:
Change the Listener Enabled Setting
The following steps describe how to change the state of the Intel AMT redirection listener. The listener must be enabled to establish a KVM session.
1. Ensure that the KVM interface is enabled: See Enable/Disable the KVM Interface. If it is enabled, continue to the next step.
2. Retrieve the instance of AMT_RedirectionService, where the “Name” key equals “Intel(r) AMT Redirection Service”.
3. Change AMT_RedirectionService.ListenerEnabled to true or false (enable or disable).
4. Invoke AMT_RedirectionService.Put.
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$redirectionServiceRef = $wsmanConnectionObject.NewReference("SELECT * FROM AMT_RedirectionService WHERE Name='Intel(r) AMT Redirection Service'")
$redirectionServiceInstance = $redirectionServiceRef.Get()
$redirectionServiceInstance.SetProperty("ListenerEnabled", "true")
$redirectionServiceRef.Put($redirectionServiceInstance)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Does your configuration utility provide the ability to enable Legacy Redirection Mode?Nothing that I could find. Here's the only relevant options I can find on this in the ACUWizard:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have you taken a look at the Director in the Open DTK for provisioning? It doesn't seem like it should be this hard...
Open DTK: http://opentools.homeip.net/open-manageability

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page