Skip to content

Commit

Permalink
Create lab.conf
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cleberjamaral committed Apr 24, 2017
1 parent f57260d commit 792ceb5
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions 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

0 comments on commit 792ceb5

Please sign in to comment.