diff --git a/docs/en-US/accessing-system-vms.xml b/docs/en-US/accessing-system-vms.xml
new file mode 100755
index 00000000000..e1b6090d7af
--- /dev/null
+++ b/docs/en-US/accessing-system-vms.xml
@@ -0,0 +1,66 @@
+
+
+%BOOK_ENTITIES;
+]>
+
+
+
+
+ Accessing System VMs
+ It may sometimes be necessary to access System VMs for diagnostics of certain issues, for example if you are experiencing SSVM (Secondary Storage VM) connection issues. Use the steps below in order to connect to the SSH console of a running System VM.
+
+ Accessing System VMs over the network requires the use of private keys and connecting to System VMs SSH Daemon on port 3922.
+ XenServer/KVM Hypervisors store this key at /root/.ssh/id_rsa.cloud on each &PRODUCT; agent.
+ To access System VMs running on ESXi, the key is stored on the management server at /var/lib/cloudstack/management/.ssh/id_rsa.
+
+
+
+ Find the details of the System VM
+
+ Log in with admin privileges to the &PRODUCT; UI.
+ Click Infrastructure, then System VMs, and then click the name of a running VM.
+ Take a note of the 'Host', 'Private IP Address' and 'Link Local IP Address' of the System VM you wish to access.
+
+
+
+
+ XenServer/KVM Hypervisors
+
+ Connect to the Host of which the System VM is running.
+ SSH the 'Link Local IP Address' of the System VM from the Host on which the VM is running.
+ Format: ssh -i <path-to-private-key> <link-local-ip> -p 3922
+ Example: root@faith:~# ssh -i /root/.ssh/id_rsa.cloud 169.254.3.93 -p 3922
+
+
+
+ ESXi Hypervisors
+
+ Connect to your &PRODUCT; Management Server.
+ ESXi users should SSH to the private IP address of the System VM.
+ Format: ssh -i <path-to-private-key> <vm-private-ip> -p 3922
+ Example: root@management:~# ssh -i /var/lib/cloudstack/management/.ssh/id_rsa 172.16.0.250 -p 3922
+
+
+
+
+
+
+
+
diff --git a/docs/en-US/images/view-systemvm-details.png b/docs/en-US/images/view-systemvm-details.png
new file mode 100755
index 00000000000..bce270bf258
Binary files /dev/null and b/docs/en-US/images/view-systemvm-details.png differ
diff --git a/docs/en-US/working-with-system-vm.xml b/docs/en-US/working-with-system-vm.xml
index 70f7dd1aa4e..073d0772561 100644
--- a/docs/en-US/working-with-system-vm.xml
+++ b/docs/en-US/working-with-system-vm.xml
@@ -32,6 +32,7 @@
parameter on the &PRODUCT; UI or by calling the listConfigurations API.
+