From 792ceb5f66c2dc13f7cfc4e1e34936e56dbfe2dd Mon Sep 17 00:00:00 2001 From: Cleber Jorge Amaral Date: Mon, 24 Apr 2017 13:48:48 -0300 Subject: [PATCH] Create lab.conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Estrutura básica da rede 0. Possui um roteador de borda e 3 switches. A meta é criar 3 vlans, utilizar conceitos de STP e LAG. --- lab.conf | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 lab.conf diff --git a/lab.conf b/lab.conf new file mode 100644 index 0000000..6a3dabd --- /dev/null +++ b/lab.conf @@ -0,0 +1,41 @@ +# Global +global[compact]=False +global[mem]=32 +global[vm]=4 +global[clean]=True +global[path]=/tmp/Redes8aIntegrado/lab + +# Equipamentos +## Roteadores +r0rot0[type]=router +## Switches +r0swi0[type]=switch +r0swi1[type]=switch +r0swi2[type]=switch +## Servidores +r0srv0[type]=generic +## Estações de trabalho +r0est0[type]=generic +r0est1[type]=generic +r0est2[type]=generic + +# Enlaces +r0rot0[eth0]=r0rot0-r0swi0 +r0swi0[eth0]=r0rot0-r0swi0 +# +r0swi0[eth1]=r0swi0-r0swi1 +r0swi1[eth1]=r0swi0-r0swi1 +r0swi0[eth2]=r0swi0-r0swi2 +r0swi2[eth2]=r0swi0-r0swi2 +r0swi1[eth0]=r0swi1-r0swi2 +r0swi2[eth0]=r0swi1-r0swi2 +# +r0swi1[eth2]=r0swi1-r0srv0 +r0srv0[eth0]=r0swi1-r0srv0 +# +r0swi2[eth3]=r0swi2-r0est0 +r0est0[eth0]=r0swi2-r0est0 +r0swi2[eth4]=r0swi2-r0est1 +r0est1[eth0]=r0swi2-r0est1 +r0swi2[eth5]=r0swi2-r0est2 +r0est2[eth0]=r0swi2-r0est2