Posts

Showing posts with the label service

20533 Azure roadmap Cloud Service

20533 Azure roadmap Cloud Service Many an IT department has built on the Classic model for Cloud Services over the years.  As Microsoft shifts its focus to the new Resource Manage model what will the roadmap look like? https://www.microsoft.com/en-us/server-cloud/roadmap/ Pundits chime in: http://blogs.technet.com/b/uspartner_ts2team/archive/2015/02/03/public-roadmap-for-cloud-platform-azure-windows-server-etc.aspx http://blogs.technet.com/b/canitpro/archive/2015/02/03/microsoft-cloud-platform-roadmap.aspx https://redmondmag.com/articles/2015/02/02/microsoft-cloud-platform-roadmap.aspx A leading partner: https://www.rackspace.com/microsoft/managed-azure-cloud

3 step of MQC Cisco Modular Quality of Service QoS Command Line Interface CLI

3 step of MQC Cisco Modular Quality of Service QoS Command Line Interface CLI define a class-map - type of traffic, application, etc, to be match define a policy-map - define what to do with the matched traffic service policy - apply the policy map to the interface 1.define a class-map R2(config)#class-map ?   WORD       class-map name   match-all  Logical-AND all matching statements under this classmap   match-any  Logical-OR all matching statements under this classmap we have two option here, say we want to match two kind of traffic, citrix and http R2(config-cmap)#match protocol http R2(config-cmap)#match input-interface fastEthernet 0/0 if previously we choose all, then only http traffic that coming from fa0/0 will fall into this class-map if we choose any, then any http traffic or any traffic from fa0/0 or both kind of traffic will fall into this class-map if you dont configure any, by default is match-all. Create a class-map n...