diff --git a/docs/source/cloudlabtutorial/index.rst b/docs/source/cloudlabtutorial/index.rst
new file mode 100644
index 000000000..95907d28f
--- /dev/null
+++ b/docs/source/cloudlabtutorial/index.rst
@@ -0,0 +1,133 @@
+Cloudlab Tutorial
+=====================================
+
+Getting Started
+-----------------
+
+- This tutorial assumes that you have access the NSF sponsored `CloudLab `_ testbed
+ - To gain access, you must first create an account, and join a project from your university. See the CloudLab `Docs `_ for more information
+
+Setting up SSH Keys for CloudLab
+-----------------
+
+If you do not already have an SSH key associated with your account you will need to create one. Here are the steps to create an SSH key and upload it to CloudLab.
+
+- Open a terminal and cd to the directory you want to store the keys in
+
+ Generally, on a Windows machine, all SSH-related files are found in following location: /c/Users/PC_USER_NAME/.ssh/
+
+ On Mac/Linux, it's typically found in the ~/.ssh directory
+
+To generate an SSH Key:
+
+- Type :code:`ssh-keygen` to make an ssh-key
+
+- Give it a name and an optional password
+
+- The public key has the extension .pub
+
+
+To upload the key:
+
+- Go to cloudlab, and click on your username in the top-right corner
+
+- Go to "manage SSH keys"
+
+- Press "Load from file" and select the public key file
+
+- Once it's loaded in, select "add key"
+
+.. image:: ../images/cloudlab-ssh.png
+ :width: 600
+
+Starting a ONVM Profile With 1 Node on CloudLab
+-----------------
+
+- Click on experiments in the upper-left corner, then start an experiment
+
+- For "select a profile" you can choose the desired profile (onvm is the most updated/recommended)
+
+ If you don't have access to the GW profiles, you can find it `here `_
+
+- For "parameterize" use 1 host, and for node type, you can keep it as is or select a different one.
+
+ If you're running into trouble running the manager, selecting the c220g5 node may assist you
+
+- For "finalize" you can just click next
+
+- For "schedule," you don't have to make a schedule, leaving it blank will start it immediately
+
+
+To test your connection, you can connect Via a terminal
+
+- Open a VSCode terminal and cd inside your .ssh folder
+
+- :code:`ssh -p 22 -i @`
+
+- Your @ can be found by going to your experiment and clicking on "list view," it should be under "SSH Command"
+
+.. image:: ../images/ssh-connect.png
+ :width: 600
+
+Connecting to the Node via VSCode
+-----------------
+
+Before connecting, you must have uploaded your SSH key, and started an experiment
+You also must have these VSCode extensions:
+ Remote - SSH
+ Remote - SSH: Editing Configuration Files (may come preinstalled with Remote SSH)
+
+These aren't neccessary but may be helpful in the future:
+ Remote - Containers
+ Remote - WSL (if using Windows)
+
+Connecting Via a Remote Window
+
+- Open the "Remote Explorer" via the sidebar (on the left by default)
+
+- In the drop-down window at the top, select SSH Targets
+
+.. image:: ../images/vscode-remote-explorer.png
+ :width: 600
+
+- To the right of the SSH Targets bar, click the plus button, and enter :code:`ssh @`
+
+- Select a configuration file (recommanded to use the one in the .ssh folder as mentioned earlier)
+
+- Modify the config file so that it has the correct settings:
+ It should have :code:`Port 22` :code:`IdentityFile ` and :code:`AddKeysToAgent Yes` (on seperate lines)
+
+ You can also rename :code:`Host` to whatever you want, but :code:`HostName` must not be changed
+
+.. image:: ../images/config.png
+ :width: 600
+
+- If it asks you to choose an operating system, select Linux
+
+Running the ONVM Manager and Speed Tester NF on the node
+-----------------
+Once you are properly connected to the node, it's time to run the manager
+
+- First, cd into /local/onvm/openNetVM/scripts and run :code:`source setup_cloudlab.sh`
+
+- Depending on which node you're using, it will ask you to bind certain network devices to dpdk
+
+ For this guide, we won't be working with real network traffic so we do not need to bind any ports
+
+ When working with 2+ nodes, you want to make sure that the two 10 GbE devices are bound (the letters/numbers before listing the device can be used as identifiers)
+
+- Go to /local/onvm/openNetVM/onvm and run :code:`make`
+
+- Go to /local/onvm/openNetVM/examples and run :code:`make`
+
+- Go to /local/onvm/openNetVM and run sudo :code:`./onvm/go.sh -k 1 -n 0xF8 -s stdout`
+ If this gives you an error, it may be an issue with the pre-made profile, and you mmay have to pull a new onvm profile from GitHub in a new directory
+
+ Instructions on how to do so can be found `here `_
+
+.. image:: ../images/onvm-manager.png
+ :width: 600
+
+- To run the speed tester, open a new tab while the manager is running and go to /local/onvm/openNetVM/examples/speed_tester
+
+- run :code:`./go.sh 1 -d 1 -c 16000`
diff --git a/docs/source/images/cloudlab-ssh.png b/docs/source/images/cloudlab-ssh.png
new file mode 100644
index 000000000..1f5c3cb14
Binary files /dev/null and b/docs/source/images/cloudlab-ssh.png differ
diff --git a/docs/source/images/config.png b/docs/source/images/config.png
new file mode 100644
index 000000000..6e00be943
Binary files /dev/null and b/docs/source/images/config.png differ
diff --git a/docs/source/images/onvm-manager.png b/docs/source/images/onvm-manager.png
new file mode 100644
index 000000000..53cadbcdb
Binary files /dev/null and b/docs/source/images/onvm-manager.png differ
diff --git a/docs/source/images/ssh-connect.png b/docs/source/images/ssh-connect.png
new file mode 100644
index 000000000..4cbaefff3
Binary files /dev/null and b/docs/source/images/ssh-connect.png differ
diff --git a/docs/source/images/vscode-remote-explorer.png b/docs/source/images/vscode-remote-explorer.png
new file mode 100644
index 000000000..ab6aaa9ee
Binary files /dev/null and b/docs/source/images/vscode-remote-explorer.png differ
diff --git a/docs/source/index.rst b/docs/source/index.rst
index 3d82c7d0c..dc55de905 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -106,6 +106,7 @@ Please let us know if you use OpenNetVM in your research by `emailing us
Three Node Topology Tutorial
Packet Generation Using Pktgen
Running OpenNetVM in Docker
@@ -129,4 +130,4 @@ Please let us know if you use OpenNetVM in your research by `emailing us
Release Notes
Frequently Asked Questions
- CI Development
\ No newline at end of file
+ CI Development