wikiroute

networking recipes

User Tools

Site Tools


mooc-riv-labs

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mooc-riv-labs [2021/09/07 15:05] – [-. SDN with ONOS] samermooc-riv-labs [2021/09/07 22:01] (current) samer
Line 21: Line 21:
 </code> </code>
  
-  * Start mininet (use OpenFlow10 for compatibility with ovsctl commands)+  * Start mininet (only OpenFlow10 seems to work)
  
 <code> <code>
-sudo mn --topo tree,2 --mac --switch ovsk,protocols=OpenFlow13 --controller remote,ip=172.17.0.2+sudo mn --topo tree,2 --mac --switch ovsk,protocols=OpenFlow10 --controller remote,ip=172.17.0.2
 </code> </code>
  
Line 103: Line 103:
   * Think about updating FRR to get latest Segment routing features http://docs.frrouting.org/en/latest/pathd.html. PATH is a daemon that handles the installation and deletion of Segment Routing (SR) Policies.   * Think about updating FRR to get latest Segment routing features http://docs.frrouting.org/en/latest/pathd.html. PATH is a daemon that handles the installation and deletion of Segment Routing (SR) Policies.
 </WRAP> </WRAP>
 +
 +===== - Docker Containers  =====
 +
 +Update the apt package index and install packages to allow apt to use a repository over HTTPS:
 +
 +<code>
 +$ sudo apt-get update
 +
 +$ sudo apt-get install \
 +    apt-transport-https \
 +    ca-certificates \
 +    gnupg \
 +    lsb-release
 +</code>
 +
 +Add Docker’s official GPG key:
 +
 +<code>
 +$ wget https://download.docker.com/linux/ubuntu/gpg -O key.txt
 +$ sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg key.txt
 +</code>
 +
 +Use the following command to set up the stable repository
 +
 +<code>
 +echo \
 +  "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
 +  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
 +</code>
 +
 +In order to solve the ''containered.io'' dependency problem, add the following line to the source file ''/etc/apt/sources.list'':
 +
 +<code>
 +deb http://security.ubuntu.com/ubuntu xenial-security main 
 +</code>
 +
 +Update and install.
 +
 +<code>
 +$ sudo apt-get update
 +$ sudo apt-get install containerd.io
 +$ sudo apt-get install docker-ce docker-ce-cli
 +</code>
  
mooc-riv-labs.1631019951.txt.gz · Last modified: 2021/09/07 15:05 by samer