A apresentação está carregando. Por favor, espere

A apresentação está carregando. Por favor, espere

Exercícios de Roteamento BackBone IP

Apresentações semelhantes


Apresentação em tema: "Exercícios de Roteamento BackBone IP"— Transcrição da apresentação:

1 Exercícios de Roteamento BackBone IP
Nome dos Alunos

2 Pacote Quagga Utilitários: zebra: deamon de integração com o S.O.
TCP 2601 ripd: implementa o protocolo RIP TCP 2602 ospfd: implementa o protocolo OSPF TCP 2604 bgpd: implementa o protocolo BGP TCP 2605

3 Instalação do Quagga PASSO 1: inicializa e máquina virtual
linux32.redes nome_vm PASSO 2: na máquina local login: root senha: vazio ifconfig eth etiqueta PASSO 3: cheque a configuração wget /~jamhour/pacotes/quagga_rpm.tar.gz tar -xzf quagga_rpm.tar.gz cd quagga_rpm ./install.sh

4 Inicialização dos Serviços
Inicialização Zebra cd /etc/quagga zebra -d telnet 2601 Inicialização do Serviço RIP ripd -d -f ripd.conf.sample telnet 2602 enable configure terminal

5 Exercício 1: BGP Ponto de Troca (IXP/ PTT) AS2 AS1 AS5 AS6 2 1 5 6 AS4
/24 /24 /24 /24 /24 /24 /24 /24 AS2 AS1 AS5 AS6 peer transit 2 1 Ponto de Troca (IXP/ PTT) 5 6 peer peer /24 /24 /24 /24 /24 /24 /24 /24 AS4 AS3 peer AS7 AS8 peer 4 3 7 8 peer transit /24 /24 /24 /24 /24 /24 peer AS9 AS10 AS11 peer peer 9 10 11

6 Arquivo de Configuração
! ! Zebra configuration saved from vty ! /06/14 15:24:48 hostname ospfd password zebra log stdout router bgp 1 bgp router-id network /24 network /24 neighbor remote-as 2 neighbor remote-as 3 neighbor remote-as 5 neighbor remote-as 7 line vty

7 Entrega do Exercício 1 Para cada bancada, crie um aquivo zip contendo os seguintes arquivos: a) Arquivo de configuração dos dois nós da bancada enable config term write b) Tabela de rotas dos dois nós da bancada: route -n >> rotasA.txt

8 VConfig Permite criar interfaces virtuais no linux que efetuam marcação com tags de VLANs: modprobe 8021q vlan add eth0 2 ifconfig eth netmask up vlan delete eth0.2 vlan 2 switch vlan 3 trunk trunk vlan 4 eth0.2 eth0.3 eth0.3 eth0.4 eth0.4 eth0.5 vlan 5

9 Exercício 2: RIP 192.168.5.0/26 192.168.1.0/25 192.168.1.128/25 VLAN 2
/8 1 2 /25 /25 VLAN 4 VLAN 5 3 4 /25 /25 VLAN 6 VLAN 7 5 6 /25 /25 VLAN 8 VLAN 9 7 8 /26 /26 /25 VLAN 10 VLAN 11 VLAN 12 9 10 11

10 Exemplo de arquivo de script
#!/bin/bash if [ $# -eq 0 ]; then echo “Digite a opcao após o script” echo "1=G1, 2=G2, 3=Restaurar" exit fi if [ $1 -eq 1 ]; then echo "Configuracao de G1" vconfig eth0 add 2 vconfig eth0 add 3 ifconfig eth netmask ifconfig eth netmask elif [ $1 -eq 2]; then echo "Esqueci de configurar G2" else vconfig del eth0.2 vconfig del eth0.3 service network restart echo "Restaurar"

11 Exemplo de arquivo de configuração
! ! Zebra configuration saved from vty ! /05/31 15:31:31 hostname ripd password zebra log stdout interface eth0 ip rip authentication mode text ip rip authentication string teste2 interface eth0.2 ip rip authentication string teste router rip redistribute kernel redistribute static network /0 line vty

12 Entrega do Exercício 2 Para cada bancada, crie um arquivo zip contendo os seguintes arquivos: a) Arquivo de configuração ripd.conf b) Tabela de rotas route -n >> rotasrip.txt

13 Exercício 3: OSPF Area 1 Area 2 Area 3 Area 4 Area 5 192.168.5.0/26
/25 /25 VLAN 2 VLAN 3 /8 1 2 Area 2 /25 /25 VLAN 4 VLAN 5 3 4 Area 3 /25 /25 VLAN 6 VLAN 7 5 6 Area 4 /25 /25 VLAN 8 VLAN 9 7 8 Area 5 /26 /26 /25 VLAN 10 VLAN 11 VLAN 12 9 10 11

14 Arquivo de Configuração (impares)
! ! Zebra configuration saved from vty ! /06/14 15:24:48 hostname ospfd password zebra log stdout !interface eth0 ! ip ospf cost 100 router ospf ospf router-id redistribute kernel redistribute static network /24 area line vty

15 Arquivo de Configuração (pares)
! ! Zebra configuration saved from vty ! /06/14 15:24:48 hostname ospfd password zebra log stdout router ospf ospf router-id redistribute kernel redistribute static network /8 area network /24 area area range /24 line vty

16 Alterando o custo da Interface
telnet IP_VM 2604 senha zebra enable configure terminal interface eth0 ospf cost 100 exit write file show ip opsf database show ip ospf neighbor

17 Entrega do Exercício 3 Para cada bancada, crie um aquivo zip contendo os seguintes arquivos: a) Arquivo de configuração ospfd.conf b) Tabela de rotas route -n >> rotasA.txt


Carregar ppt "Exercícios de Roteamento BackBone IP"

Apresentações semelhantes


Anúncios Google