Whats in the box?
What's it the box Rodos? You can guess, but I am not gonna tell you.
Everyone loves new toys to play with.
Rodos
Musings on areas of technology that effect the Enterprise. Focus on Cloud, Virtualisation, Storage and Data Center.
Home > July 2009
What's it the box Rodos? You can guess, but I am not gonna tell you.
Everyone loves new toys to play with.
Rodos
A day does not go by when we can't learn something new. Love the "What I learned today" posts that Mike Laverick has been doing.
So here is what I learnt today, the right order for DC tiers.
Friday, July 24, 2009 Category : cloud, VMware 0
Did you think VMware and the Cloud could help you meet your Data Center Security certifications? Well they can.
I have been reading through the ISO 27001 / ISO 27002 standards on data security. Okay, so some of us don't really have a life. Am I allowed to say its really interesting reading.
So I am reading along and get to section A.10.3 in ISO 27002 which is all about minimising the risk of systems failure, which is about doing capacity planning and system acceptance.
Control A.10.3.1 is all about
The standard requires the organisation to monitor its capacity demands and then to make projections of future capacity requirements so that it can ensure that it has adequate power and data storage facilities available. The utilization of key system resources (file servers, domain servers, e-mail server, printers and other output devices) should be monitored so that additional capacity can be brought on-stream when it is needed. The projections should obviously take account of predictions of levels of business activity, and there should therefore be an overt link between this activity and the annual business planning cycle. The trends that should be consider are the increase in business activity, and therefore in transaction processing; [...] E-commerce businesses should also consider the expected increase in website activity and plan sufficient capacity to ensure that the site remains operational, paritculararly at times of peak activity.Interesting. One can see how the elastic and scalable aspects of VMware and vCloud could drive a long way to organisations being able to show a capacity to mediate this risk and therefore achieve compliance.
All of this should enable network managers and webmasters to identify and avoid potential bottlenecks that could threaten system security or the availability of network or system resources or data.
Over the last six months I have been investing a bit of time every now and again to improve my working methods. If I can do things better and faster then I can start doing better things with my time. Today I wanted to write up one of them, a way to save me much time and frustration each day processing email.
The solution was to write a macro to go off and file emails I have read into my mail folder tree. The key is that its dynamic and works out where to put messages based on the sender. Sweet.
Some background. Everyone has a different method of handling their email. Some people think they have no method, that just means they have a bad one. My method is that an email stays in my email box until its processed and can go to archive. I try to use a GTD method so most don't stay there for that long. The exception to this rule is I do have a folder under my Inbox called Process, where I move messages that just need some mindless activity that I must do at some stage, I troll this folder every few days when I have a short period of time to kill.
Now I also never delete emails unless they are really spam, advertising or addressed wrong, its amazing how that email you never thought important becomes critical after six months. Many people are like me and file mail away in folders that categorise them. A folder tree works great and anables you to filter mail and perform searches. I have folders for each of the companies that I deal with and for colleagues. This method was great back in the day when the search function in Outlook was slow and painful, it really helped to speed things up.
However I find I spend a lot of time filing messages, there are probably 80 or so folders and even though there are a few speed tricks for moving messages they never really make it truly effective. As you get more and more messages a day that need a scan and file, this time really adds up.
I figured there are three possible solutions to the problem.
Sub FileMessage()
Const olFolderInbox = 6
Dim objItem As Outlook.MailItem
Dim objMailbox As Outlook.MAPIFolder
Dim FolderToSendTo As String
Set objOutlook = CreateObject("Outlook.Application")
Set objNamespace = objOutlook.GetNamespace("MAPI")
Set objInbox = objNamespace.GetDefaultFolder(olFolderInbox)
strFolderName = objInbox.Parent
Set objMailbox = objNamespace.folders(strFolderName)
Set colItems = objInbox.Items
If objOutlook.ActiveExplorer.Selection.Count = 0 Then
'Require that this procedure be called only when a message is selected
Exit Sub
End If
For Each objItem In objOutlook.ActiveExplorer.Selection
If objItem.Class = olMail Then
' SenderEmailType is "EX" or "SMTP"
' SenderEmailAddress
' SenderName
FolderToSendTo = ""
If objItem.SenderEmailType = "SMTP" Then
' Lets determine the domain name to file in under
atLoc = InStr(objItem.SenderEmailAddress, "@")
DomainName = Right(objItem.SenderEmailAddress, Len(objItem.SenderEmailAddress) - atLoc)
If LCase(DomainName) = "vmware.com" Then
DomainName = Left(objItem.SenderEmailAddress, atLoc - 1)
DomainName = Replace(DomainName, ".", " ") ' Replace dots with spaces
DomainName = Replace(DomainName, "'", "") ' Replace quotes with nothing
End If
FolderToSendTo = DomainName
ElseIf objItem.SenderEmailType = "EX" Then
'MsgBox objItem.SenderName, vbOKOnly + vbExclamation, "INFO"
FolderToSendTo = objItem.SenderName
Else
MsgBox "Don't know what to do, unknown SenderEmailType (not EX or SMTP)", vbOKOnly + vbExclamation, " OPPS"
Exit Sub
End If
' MsgBox "Will look for folder " + FolderToSendTo, vbOKOnly, "INFO"
FindFolder objMailbox, objItem, FolderToSendTo
End If
Next
Set objItem = Nothing
Set objFolder = Nothing
Set objInbox = Nothing
Set objNS = Nothing
End Sub
Sub FindFolder(oFolder As Outlook.MAPIFolder, theMessage As Outlook.MailItem, theFolderToFind)
Dim folders As Outlook.MAPIFolder
Dim iFolder As Outlook.MAPIFolder
Dim foldercount As Integer
Set theFolders = oFolder.folders
foldercount = theFolders.Count
'Check if there are any folders below oFolder
If foldercount Then
For Each iFolder In theFolders
If theFolderToFind <> "" Then
' Debug.Print iFolder.FolderPath + " ^ " + theFolderToFind
If InStr(LCase(iFolder.FolderPath), "\" + LCase(theFolderToFind)) Then
' Move it to the final location!
theMessage.UnRead = False
theMessage.Move iFolder
theFolderToFind = ""
Else
FindFolder iFolder, theMessage, theFolderToFind
End If
End If
Next
End If
End Sub
Tuesday, July 21, 2009 Category : Cisco, UCS 0
More documentation is coming out for UCS on the Cisco sites. As mentioned by Steve the other day a lot of the documentation is now becoming available.
Further to what has been mentioned I notice that the "Release Notes for Cisco UCS Release 1.0(1e)" are out. You will need a CCO login to read these though, unlike the public documentation. Looks like some documents go into both locations and others do not, can't see any rhyme or reason to as why yet. Of course then there are the documents in the Partner Resource Center. Reminds me of my post "Does VMware have too many locations for technical materials?"
The release notes for UCS have all sorts of juicy details about little things that don't work at the moment. The workarounds to some of these are funny as is often the case. Some examples.
Symptom : When several KVM Consoles are launched, the SUN JRE sometimes reports an error and the KVM Console fails to launch.
Workaround : Launch the KVM Console again.
Symptom : The vNIC templates are not exported when you backup all system and logical configuration settings (the All Configuration option).
Workaround : Create the vNIC templates after you import the configuration.
Symptom : On a system with five or more chassis, the following sequence of events causes the system to not be HA ready for up to five minutes:
1. Discover all chassis
2. Wait for HA READY
3. Decommission all chassis
4. Recommission all chassis
Workaround : Wait for HA READY.
Friday, July 10, 2009 Category : cloud, VMware 1
Could the Google OS become the platform for delivering Desktop As A Service (DaaS) or VDI from the Cloud?
Google have announced their Google Chrome OS which is to be the OS users have been waiting for.
Google Chrome OS is being created for people who spend most of their time on the web, and is being designed to power computers ranging from small netbooks to full-size desktop systems.
Thursday, July 02, 2009 Category : Cisco, cloud 2
Cisco are running their annual conference, Cisco Live in San Francisco and its their 20th birthday. Its huge with around 10,000 people I think and its up there with VMworld on interesting events for the year.
Some great bloggers are doing some daily video summaries which you can see at the Cisco DCN blog. They have Omar, Urquhart, the Hoff, Chad et al giving their views.
If you do the free registration for the Live Virtual you can watch many of the sessions on demand including the keynotes. I just finished watching John Chambers do his usual preacher session style which everyone seams to love.
Tomorrow is Padmasree Warrior, Cisco's chief technology officer. Like the contrast between Paul Maritz and Stephen Herrod at VMworld, the tag team between the business and the technical, we should see the difference between John and Padmasree.
However it looks like Padmasree has done the analyst briefings on her session already, as there have been many reports out today on where Cisco are heading with the cloud.
Just some of them are
ITMATO-2601 : Achieving the Intercloud: Trust and Interoperability in Federated Cloud Computing Markets
Session Abstract:
The role of the Internet in the future of Cloud Computing is one of today´s unanswered questions. While much of the conversation has been about "speeds and feeds", the need for network and computing services to enable evolution from siloed clouds to an open and federated "Intercloud" is just beginning to be understood. This talk will explore the concept of the "Intercloud", and the importance of trust and open interfaces to those who leverage it. Other topics include a roadmap from static data center architectures to truly dynamic "intercloud" architectures, as well as what enterprises can do today with virtualization and cloud technologies to prepare for that transition.
Session Speaker:
James Urquhart, Market Manager, Cloud Computing and Virtualization - Cisco
Powered by Blogger | Theme mxs | Converted by LiteThemes.com