sexta-feira, 19 de março de 2010

Frame Relay Multilink (MFR)

1.1      Funcinamento do Multilink Frame Relay FRF.16

A feature Multilink Frame Relay prove um modo efetivo de aumentar a taxa de transferencia de um link adicionando multiplas interfaces seriais agregando-as em um único link. O Multilink Frame Relay é suportado em User-to-Network Interfaces (UNI) e em Network-to-Network Interfaces (NNI).
O Multilink Frame Relay permite crier uma interface virtual chamada bundle que desempenha as mesmas funções de uma interface física.
O bundle é criado da união de links físicos chamados de bundle links. Os Bundle links (interfaces físicas) são invisiveis para a camada de enlace Frame Relay, a funcionalidade Frame Relay não pode ser configurada nessas interfaces, todas as funcionalidades devem ser configuradas na interface virtual bundle.
Ambas as extremidades do bundle link enviam mensagens hello em intervalos regulares. Quando é recebido um hello, o peer responde com um ack. Caso não tenha resposta, é reenviado até expirer e o bundle ser considerado down.
As vantagens do uso do Multilink Frame Relay são descritas abaixo:
·         Combina múltiplas interfaces físicas em uma interface agrupada (Bundle) podendo projetar uma interface Frame Relay com maior taxa.
·         Melhor resiliência para falhas, pois quando um link falha a interface virtual que agrupa as demais continua UP transmitindo pelos demais links.
Suas restrições são:
·         Endereçamento Frame Relay extendido não é suportado (DLCI com 23 bits);
·         Fragmentação não é suportada;
·         Feature é suportada nas interfaces 6-port channelized T3 line card interfaces e 2-port channelized OC-3 linecard interfaces;
·         Máximo de 32 links por grupo de multilink;
·         Máximo de 200 DLCIs por grupo.

2        Cenário

2.1      Objetivo

Estabelecer conectividade IP entre todos os roteadores, sendo que o roteador PE2 deverá ser central. A conexão deverá ser estabelecida usando duas interfaces seriais dentro de um multilink frame relay com cada elemento.
Os DLCIs usados são aleatórios.
·         O endereçamento IP deverá ser:
·         Conexão PE1 e PE2: 12.12.12.0/30;
·         Conexão PE3 e PE2: 23.23.23.0/30;
·         Conexão PE4 e PE2: 24.24.24.0/30.

2.2      Topologia


Figure-01:              Topologia

2.3      IOS utilizados

·         PE1 – c7200-ik9o3s-mz.123-1a.bin
·         PE2 – c7200-ik9o3s-mz.123-1a.bin
·         PE3 – c7200-ik9o3s-mz.123-1a.bin
·         PE4 – c7200-ik9o3s-mz.123-1a.bin

2.4      Descrição do Cenário

Estabelecer a comunicação IP entre 4 roteadores (PE1, PE2, PE3 e PE4), sendo que um roteador é central a todas as conexões (PE2) e provê roteamento para os demais PE’s. A comunicação dos roteadores de borda (PE1, PE3 e PE4) com o roteador central deverá ser feita usando a tecnologia Multilink Frame Relay FRF.16 com 2 links seriais em cada conexão.
Neste cenário são avaliadas as configurações de Multilink Frame Relay FRF.16.
Sugerem-se as seguintes atividades:
·         Teste de conectividade (PING) entre os roteadores;
·         Alteração dos parâmetros da interface Frame Relay (DLCI);
·         Adicionar e remover novas interfaces ao Multilink Frame Relay.

2.5      Configuração dos PE’s

A configuração dos roteadores segue a linha de criação de uma interface virtual (Bundle) chamada “MFR”. Após é criada uma sub-interface seguindo o mesmo processo de uma interdace point-to-point frame-relay para configurar o DLCI. Nas interfaces físicas são adcionados os comandos que referenciam a interface virtual criada dentro do “frame-relay interface-dlci ”.
Como no frame-relay um roteador tem que atual como DCE e outro como o DTE, em um lado da conexão um roteador deverá adicionar a configuração de “frame-relay intf-type DCE”.

2.6      Observações e Bugs

Documentação:

2.7      Comandos Importantes de Verificação

PE1#show frame-relay multilink
Bundle: MFR12, State = up, class = A, fragmentation disabled
 BID = MFR12
 Bundle links:
  Serial1/1, HW state = up, link state = Up, LID = Serial1/1
  Serial1/0, HW state = up, link state = Up, LID = Serial1/0

3        Configuração

3.1      PE1

interface MFR12
!
interface MFR12.1 point-to-point
 ip address 12.12.12.1 255.255.255.0
 frame-relay interface-dlci 102  
!
interface Serial1/0
 no shutdown 
 encapsulation frame-relay MFR12
!
interface Serial1/1
 no shutdown 
 encapsulation frame-relay MFR12
!
ip route 0.0.0.0 0.0.0.0 MFR12.1
!

3.2      PE2

!
interface MFR12
 frame-relay intf-type dce
!
interface MFR12.1 point-to-point
 ip address 12.12.12.2 255.255.255.0
 frame-relay interface-dlci 102  
!
interface MFR23
 frame-relay intf-type dce
!
interface MFR23.1 point-to-point
 ip address 23.23.23.2 255.255.255.0
 frame-relay interface-dlci 203  
!
interface MFR24
 frame-relay intf-type dce
!
interface MFR24.1 point-to-point
 ip address 24.24.24.2 255.255.255.0
 frame-relay interface-dlci 204
!
interface Serial1/0
 no shutdown   
 encapsulation frame-relay MFR12
!
interface Serial1/1
 no shutdown   
 encapsulation frame-relay MFR12
!
interface Serial1/2
 no shutdown   
 encapsulation frame-relay MFR23
!
interface Serial1/3
 no shutdown   
 encapsulation frame-relay MFR23
!
interface Serial1/4
 no shutdown   
 encapsulation frame-relay MFR24
!
interface Serial1/5
 no shutdown   
 encapsulation frame-relay MFR24
!

3.3      PE3

!
interface MFR23
!
interface MFR23.1 point-to-point
 ip address 23.23.23.3 255.255.255.0
 frame-relay interface-dlci 203  
!
interface Serial1/2
 no shutdown 
 encapsulation frame-relay MFR23
!
interface Serial1/3
 no shutdown 
 encapsulation frame-relay MFR23
!
ip route 0.0.0.0 0.0.0.0 MFR23.1
!

3.4      PE4

!
interface MFR24
!
interface MFR24.1 point-to-point
 ip address 24.24.24.4 255.255.255.0
 frame-relay interface-dlci 204
!
interface Serial1/4
 no shutdown 
 encapsulation frame-relay MFR24
!
interface Serial1/5
 no shutdown 
 encapsulation frame-relay MFR24
!
ip route 0.0.0.0 0.0.0.0 MFR24.1
!

6 comentários:

Anônimo disse...

I do not even understand how I finished up right here, but I believed this submit
used to be great. I do not realize who you are but definitely you're going to a well-known blogger for those who are not already. Cheers!

Here is my webpage: canadian online casino
my site > online casino

Anônimo disse...

Hello there! Quick question that's totally off topic. Do you know how to make your site mobile friendly? My website looks weird when browsing from my apple iphone. I'm trying to find a theme or plugin that might be able to fix this issue.

If you have any suggestions, please share. With thanks!


Also visit my web blog :: Demands of Mobile Apps

Anônimo disse...

Hi! I've been following your site for some time now and finally got the bravery to go ahead and give you a shout out from Porter Tx! Just wanted to say keep up the great work!

My web page :: EDM

Anônimo disse...

This blog was... how do you say it? Relevant!! Finally I have found something which helped me.
Cheers!

Also visit my site; xxx tube

Anônimo disse...

I for all time emailed this weblog post page to all my contacts, because if like to
read it next my links will too.

Stop by my page www.pissingpussies.org

Anônimo disse...

hey there and thank you for your info – I've definitely picked up something new from right here. I did however expertise several technical points using this website, since I experienced to reload the website many times previous to I could get it to load correctly. I had been wondering if your web host is OK? Not that I am complaining, but slow loading instances times will often affect your placement in google and can damage your high-quality score if ads and marketing with Adwords. Well I'm
adding this RSS to my e-mail and can look out for much more of your respective exciting content.

Ensure that you update this again very soon.

Feel free to visit my blog ... cartoon free get hot porn
porn.com - -