diff --git a/doc/deployment_guide/deployment_guide.md b/doc/deployment_guide/deployment_guide.md
index 05827701c1745e73615986e2ea37d36e7121c325..aa8a02d8a44fb148f7ef66f526720a8e9c0f6cb1 100644
--- a/doc/deployment_guide/deployment_guide.md
+++ b/doc/deployment_guide/deployment_guide.md
@@ -329,7 +329,267 @@ sudo apt-get dist-upgrade -y
 
 ### **1.1.5. Vagrant Box**
 
-<TBD_LONG>
+This section describes how to create a Vagrant Box, using the base virtual machine configured in [Oracle Virtual Box](#112-oracle-virtual-box).
+
+<h3><u>Virtual Machine specifications</h3></u>
+Most of the specifications can be as specified in the [Oracle Virtual Box](#112-oracle-virtual-box) page, however, there are a few particularities to Vagrant that must be accommodated, such as:
+
+- Virtual Hard Disk
+  - Size: 60GB (at least)
+  - **Type**: VMDK
+
+![spaces_huDzAu5hmjUdNzCGBBbL_uploads_jrerlmLyZWi5f2Tzb7xY_Screenshot_from_2023-07-10_18-13-43](/documentation/doc/images/deployment_guide/01_vagrant_box.jpg)
+
+Also, before initiating the VM and installing the OS, we'll need to:
+
+- Disable Floppy in the 'Boot Order'
+- Disable audio
+- Disable USB
+- Ensure Network Adapter 1 is set to NAT
+
+<h3><u>Network configurations</h3></u>
+At Network Adapt 1, the following port-forwarding rule must be set.
+
+| Name | Protocol | Host IP | Host Port | Guest IP | Guest Port |
+| - | - | - | - | - | - |
+| SSH | TCP | | **2222** | | 22 |
+
+![Screenshot_from_2023-07-10_18-25-18](uploads/ced8e7b1133d6831e0c203801b6ba448/Screenshot_from_2023-07-10_18-25-18.png)
+
+<h3><u>Installing the OS</h3></u>
+
+For a Vagrant Box, it is generally suggested that the ISO's server version is used, as it is intended to be used via SSH, and any web GUI is expected to be forwarded to the host.
+
+![Screenshot_from_2023-07-10_18-41-49](/documentation/doc/images/deployment_guide/02_vagrant_box.jpg)
+
+![Screenshot_from_2023-07-10_18-42-30](/documentation/doc/images/deployment_guide/03_vagrant_box.jpg)
+
+![Screenshot_from_2023-07-10_18-42-45](/documentation/doc/images/deployment_guide/04_vagrant_box.jpg)
+
+Make sure the disk is not configured as an LVM group!
+
+![Screenshot_from_2023-07-10_18-43-16](/documentation/doc/images/deployment_guide/05_vagrant_box.jpg)
+
+<h3><u>Vagrant ser</h3></u>
+Vagrant expects by default, that in the box's OS exists the user `vagrant` with the password also being `vagrant`.
+
+![Screenshot_from_2023-07-10_18-54-12](/documentation/doc/images/deployment_guide/06_vagrant_box.jpg)
+
+<h3><u>SSH</h3></u>
+
+Vagrant uses SSH to connect to the boxes, so installing it now will save the hassle of doing it later.
+
+![Screenshot_from_2023-07-10_18-54-48](/documentation/doc/images/deployment_guide/07_vagrant_box.jpg)
+
+<h3><u>Features server snaps</h3></u>
+
+Do not install featured server snaps. It will be done manually [later](#12-install-microk8s) to illustrate how to uninstall and reinstall them in case of trouble with.
+
+<h3><u>Updates</h3></u>
+
+Let the system install and upgrade the packages. This operation might take some minutes depending on how old is the Optical Drive ISO image you use and your Internet connection speed.
+
+<h3><u>Upgrade the Ubuntu distribution</h3></u>
+```bash
+sudo apt-get update -y
+sudo apt-get dist-upgrade -y
+```
+- If asked to restart services, restart the default ones proposed.
+- Restart the VM when the installation is completed.
+
+<h3><u>Install VirtualBox Guest Additions</h3></u>
+On VirtualBox Manager, open the VM main screen. If you are running the VM in headless 
+mode, right-click over the VM in the VirtualBox Manager window, and click "Show".
+If a dialog informing about how to leave the interface of the VM is shown, confirm 
+by pressing the "Switch" button. The interface of the VM should appear.
+
+Click the menu "Device > Insert Guest Additions CD image..."
+
+On the VM terminal, type:
+```bash
+sudo apt-get install -y linux-headers-$(uname -r) build-essential dkms
+  # This command might take some minutes depending on your VM specs and your Internet access speed.
+sudo mount /dev/cdrom /mnt/
+cd /mnt/
+sudo ./VBoxLinuxAdditions.run
+  # This command might take some minutes depending on your VM specs.
+sudo reboot
+```
+
+<h3><u>ETSI TFS Installation</h3></u>
+After this, proceed to [1.2. Install Microk8s](#12-install-microk8s), after which, return to this wiki to finish the Vagrant Box creation.
+
+<h3><u>Box configuration and creation</h3></u>
+Make sure the ETSI TFS controller is correctly configured. **You will not be able to change it after!**
+
+It is advisable to do the next configurations from a host's terminal, via a SSH connection.
+```bash
+ssh -p 2222 vagrant@127.0.0.1
+```
+
+<h3><u>Set root password</h3></u>
+Set the root password to `vagrant`.
+```bash
+sudo passwd root
+```
+
+<h3><u>Set the superuser</h3></u>
+Set up the Vagrant user so that it’s able to use sudo without being prompted for a password.
+Anything in the `/etc/sudoers.d/*` directory is included in the sudoers privileges when created by the root user.
+Create a new sudo file.
+```bash
+sudo visudo -f /etc/sudoers.d/vagrant
+```
+and add the following lines
+```text
+# add vagrant user
+vagrant ALL=(ALL) NOPASSWD:ALL
+```
+You can now test that it works by running a simple command.
+```bash
+sudo pwd
+```
+Issuing this command should result in an immediate response without a request for a password.
+
+<h3><u>Install the Vagrant key</h3></u>
+Vagrant uses a default set of SSH keys for you to directly connect to boxes via the CLI command `vagrant ssh`, after which it creates a new set of SSH keys for your new box. Because of this, we need to load the default key to be able to access the box after created.
+```bash
+chmod 0700 /home/vagrant/.ssh
+wget --no-check-certificate https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub -O /home/vagrant/.ssh/authorized_keys
+chmod 0600 /home/vagrant/.ssh/authorized_keys
+chown -R vagrant /home/vagrant/.ssh
+```
+
+<h3><u>Configure the OpenSSH Server</h3></u>
+Edit the `/etc/ssh/sshd_config` file:
+```bash
+sudo vim /etc/ssh/sshd_config
+```
+And uncomment the following line:
+```bash
+AuthorizedKeysFile %h/.ssh/authorized_keys
+```
+Then restart SSH.
+```bash
+sudo service ssh restart
+```
+
+<h3><u>Package the box</h3></u>
+Before you package the box, if you intend to make your box public, it is best to clean your bash history with:
+```bash
+history -c
+```
+Exit the SSH connection, and **at you're host machine**, package the VM:
+```bash
+vagrant package --base teraflowsdncontroller --output teraflowsdncontroller.box
+```
+
+<h3><u>Test run the box</h3></u>
+Add the base box to you local Vagrant box list:
+```bash
+vagrant box add --name teraflowsdncontroller ./teraflowsdncontroller.box
+```
+Now you should try to run it, for that you'll need to create a **Vagrantfile**. For a simple run, this is the minimal required code for this box:
+```ruby
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+Vagrant.configure("2") do |config|
+  config.vm.box = "teraflowsdncontroller"
+  config.vm.box_version = "1.1.0"
+  config.vm.network :forwarded_port, host: 8080 ,guest: 80
+end
+```
+Now you'll be able to spin up the virtual machine by issuing the command:
+```bash
+vagrant up
+```
+And connect to the machine using:
+```bash
+vagrant ssh
+```
+
+<h3><u>Pre-configured boxes</h3></u>
+If you do not wish to create your own Vagrant Box, you can use one of the existing ones created by TFS contributors.
+- [davidjosearaujo/teraflowsdncontroller](https://app.vagrantup.com/davidjosearaujo/boxes/teraflowsdncontroller)
+- ... <!-- Should create and host one at ETSI!! -->
+
+To use them, you simply have to create a Vagrantfile and run `vagrant up controller` in the same directory. The following example Vagrantfile already allows you to do just that, with the bonus of exposing the multiple management GUIs to your `localhost`.
+
+```ruby
+Vagrant.configure("2") do |config|
+  
+  config.vm.define "controller" do |controller|
+    controller.vm.box = "davidjosearaujo/teraflowsdncontroller"
+    controller.vm.network "forwarded_port", guest: 80, host: 8080     # WebUI
+    controller.vm.network "forwarded_port", guest: 8084, host: 50750  # Linkerd Viz Dashboard
+    controller.vm.network "forwarded_port", guest: 8081, host: 8081   # CockroachDB Dashboard
+    controller.vm.network "forwarded_port", guest: 8222, host: 8222   # NATS Dashboard
+    controller.vm.network "forwarded_port", guest: 9000, host: 9000   # QuestDB Dashboard
+    controller.vm.network "forwarded_port", guest: 9090, host: 9090   # Prometheus Dashboard
+    
+    # Setup Linkerd Viz reverse proxy
+    ## Copy config file
+    controller.vm.provision "file" do |f|
+      f.source = "./reverse-proxy-linkerdviz.sh"
+      f.destination = "./reverse-proxy-linkerdviz.sh"
+    end
+    ## Execute configuration file
+    controller.vm.provision "shell" do |s|
+      s.inline = "chmod +x ./reverse-proxy-linkerdviz.sh && ./reverse-proxy-linkerdviz.sh"
+    end
+
+    # Update controller source code to the desired branch
+    if ENV['BRANCH'] != nil
+      controller.vm.provision "shell" do |s|
+        s.inline = "cd ./tfs-ctrl && git pull && git switch " + ENV['BRANCH']
+      end
+    end
+
+  end
+end
+```
+
+This Vagrantfile also allows for **optional repository updates** on startup by running the command with a specified environment variable `BRANCH`
+
+```bash
+BRANCH=develop vagrant up controller
+```
+
+<h3><u>Linkerd DNS rebinding bypass</h3></u>
+Because of Linkerd's security measures against DNS rebinding, a reverse proxy, that modifies the request's header `Host` field, is needed to expose the GUI to the host. The previous Vagrantfile already deploys such configurations, for that, all you need to do is create the `reverse-proxy-linkerdviz.sh` file in the same directory. The content of this file is displayed below.
+
+```bash
+# Install NGINX
+sudo apt update && sudo apt install nginx -y
+
+# NGINX reverse proxy configuration
+echo 'server {
+    listen 8084;
+
+    location / {
+        proxy_pass http://127.0.0.1:50750;
+        proxy_set_header Host localhost;
+        proxy_set_header X-Real-IP $remote_addr;
+        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+        proxy_set_header X-Forwarded-Proto $scheme;
+    }
+}' > /home/vagrant/expose-linkerd
+
+# Create symlink of the NGINX configuration file
+sudo ln -s /home/vagrant/expose-linkerd /etc/nginx/sites-enabled/
+
+# Commit the reverse proxy configurations
+sudo systemctl restart nginx
+
+# Enable start on login
+echo "linkerd viz dashboard &" >> .profile
+
+# Start dashboard
+linkerd viz dashboard &
+
+echo "Linkerd Viz dashboard running!"
+```
 
 ## **1.2. Install MicroK8s**
 
diff --git a/doc/images/deployment_guide/01_vagrant_box.jpg b/doc/images/deployment_guide/01_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a5688203df81289686d01307d2851944fa2c9c0e
Binary files /dev/null and b/doc/images/deployment_guide/01_vagrant_box.jpg differ
diff --git a/doc/images/deployment_guide/02_vagrant_box.jpg b/doc/images/deployment_guide/02_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e7485c4a8a6e64f3c4861d0a5c811bf4b0aa78b5
Binary files /dev/null and b/doc/images/deployment_guide/02_vagrant_box.jpg differ
diff --git a/doc/images/deployment_guide/03_vagrant_box.jpg b/doc/images/deployment_guide/03_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..86075951114ac087a162fedf207e77290adb72c4
Binary files /dev/null and b/doc/images/deployment_guide/03_vagrant_box.jpg differ
diff --git a/doc/images/deployment_guide/04_vagrant_box.jpg b/doc/images/deployment_guide/04_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d427163b1674ba9de302c483186279743f94e66c
Binary files /dev/null and b/doc/images/deployment_guide/04_vagrant_box.jpg differ
diff --git a/doc/images/deployment_guide/05_vagrant_box.jpg b/doc/images/deployment_guide/05_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..eb3aa6dece0d58ab688afab612c0c41d67e4ebea
Binary files /dev/null and b/doc/images/deployment_guide/05_vagrant_box.jpg differ
diff --git a/doc/images/deployment_guide/06_vagrant_box.jpg b/doc/images/deployment_guide/06_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0538bf85f81b221e315d86dad1b398941a2f4374
Binary files /dev/null and b/doc/images/deployment_guide/06_vagrant_box.jpg differ
diff --git a/doc/images/deployment_guide/07_vagrant_box.jpg b/doc/images/deployment_guide/07_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6917ac9f9b8ba7496cea815e5581db5dfffc9937
Binary files /dev/null and b/doc/images/deployment_guide/07_vagrant_box.jpg differ
diff --git a/doc/images/deployment_guide/08_vagrant_box.jpg b/doc/images/deployment_guide/08_vagrant_box.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2c35c2f1f3b2cc5dfac6c8d41e3b880d0c3129f4
Binary files /dev/null and b/doc/images/deployment_guide/08_vagrant_box.jpg differ