I posted the first 3 videos for the Workflow Studio 2.0 video tutorial series on CitrixTV:
- Getting Started with Workflow Studio 2.0
- Workflow Studio 2.0 Architecture and Components
- Installing and Configuring Workflow Studio 2.0
You can access the series and watch them all in a playlist format from here:
http://www.citrix.com/tv/series/109
I plan to add some more video tutorials to this series and also plan to do a series that explores the new features in 2.0 specifically. Let me know what you think and what other topics you want me to cover...
So far, over 4,400 customers, partners and Citrites have checked out the free CEX-100-1W Citrix Essentials for XenServer 5.5 training! It's no wonder - with this course offered at no cost (for a limited time), users can download XenServer 5.5 AND obtain the proper training for free.
Offered in a self-paced online format, course CEX-100-1W Citrix Essentials for XenServer 5.5 introduces learners to XenServer 5.5 and Essentials for XenServer 5.5, and teaches them to install and configure key product features. In addition, students gain insight to various capabilities such as StorageLink, Workload Balancing and LifeCycle Management.
Not ready to take the course? You can still lock in this promotional offer by registering now and adding the course to your learning transcript for future access.
For a limited time, Citrix Education is offering training for Citrix Essentials for Hyper-V at no cost!
If you haven't registered yet, enroll now. Registration fees are waived at the time of registration.
This self-paced online course, CEV-100-1W Getting Started with Citrix Essentials for Hyper-V, introduces students to Citrix Essentials for Hyper-V and helps them gain the proper knowledge and skills needed to perform basic installation and configuration tasks. Through online simulations, students will install and configure key features and explore product capabilities, such as virtual storage management, provisioning services, lifecycle management and workflow studio.
Learn more and register at http://www.citrix.com/ehvtraining
New courseware has been released from Citrix Education - Get up to speed on Citrix XenApp 5.0, XenDesktop 3, NetScaler 9 and more! Click on the course/certification title below for more information on these hot releases.
Instructor-led Courses
- CXA-100-1I Providing Help Desk Support for Citrix XenApp
Prepare to troubleshoot common XenApp issues and identify whether complex issues are related to the XenApp product, the network or directory services. - CXD-200-1I Implementing Citrix XenDesktop 3
Learn to install, configure and manage Citrix XenDesktop 3. - CMB-201-1I Implementing Citrix XenApp Platinum Edition Components
Learn to properly design, implement, and support Citrix XenApp Platinum Edition components, including EdgeSight 5.0, Access Gateway 9.0 Enterprise Edition, Password Manager 4.5 and WANScaler 4.3. For experienced IT professionals.
Self-paced Online Courses
- CNS-200-1W Basic Administration for Citrix NetScaler 9.0
Gain an understanding of NetScaler features such as load balancing, SSL offload, classic and advanced expressions, compression, auditing and logging and monitoring. - CPV-200-1W Implementing Citrix Provisioning Server 5.0
Learn to install, configure and administer Citrix Provisioning Server 5.0 farms.
Certification
- Citrix Certified Administrator (CCA) for Citrix NetScaler 9
Validate expertise in the implementation and administration of NetScaler 9.
Recently I had to configure a virtual machine with two virtual network cards for testing purposes. One of them connects to a private virtual LAN. Another is bridged to the physical NIC card on the host and is connected to the physical LAN which is connected to the INTERNET. first I couldn get to http://www.google.com/ for example. It turned out that IE is not using the NIC that is connected to the INTERNET. How can this happen? Let me explain what I found and how I fixed it.
virtual machine runs windows 2003 server. You can try command print to show the routing table on the machine.
routing table shows two default routes with network destination of 0.0.0.0 and network mask of 0.0.0.0. Both of them have Metric of 10. I am not sure what algorithm my win2k server is using. But it seems to always pick the default route which uses the private LAN to get to http://www.google.com/ or any other external IP addresses on the INTERNET.
did the following to fix it:
the default routes using delete 0.0.0.0
the new default route using the bridged network.
Command:
-p add 0.0.0.0 mask 0.0.0.0 your default gateway here Metric 5 IF your network interface card ID here -p option to make the route persistent across reboot. I chose Metric 5 to make sure that if the default route using the virtual LAN was added back, this route has higher priority.
find out which interface uses the bridged network, check the ip address associated with the virtual network. Match the MAC address with the ones displayed in print would be easier to delete just the default route that uses the virtual LAN. But I can figure out a way to do that using this command. Do you know a better way?
guess the problem and solution is not limited to virtual machine. And there may be other solutions. Your suggestions and comments are welcome.