domingo, 24 de novembro de 2013

Roteamento entre Vlans com servidor e cliente VTP, Com roteador fixo

Malta,cheguei com mais uma aula para vocês,  hoje vou mostrar como configurar Vlans e o Roteamentos entre as Vlans no modo não tradicional, ou com roteador fixo, Com o Switch catalyst 2690 e com o Roteador Cisco 1841.

Quatro Vlans, na topologia abaixo:

 
Por defeito as interfaces( portas do switches) ficam activadas.

VTP  SERVIDOR
switch>en
Switch#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#hostname SSERVIDOR
SSERVIDOR(config)#vtp mode server
Device mode already VTP SERVER.
SSERVIDOR(config)#vtp domain NKIAMBI
Changing VTP domain name from NULL to NKIAMBI
SSERVIDOR(config)#vtp password NKIAMBI
Setting device VLAN database password to NKIAMBI
SSERVIDOR(config)#exi
SSERVIDOR#
%SYS-5-CONFIG_I: Configured from console by console

SSERVIDOR#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
SSERVIDOR(config)#vlan 5
SSERVIDOR(config-vlan)#name compras
SSERVIDOR(config-vlan)#vlan 6
SSERVIDOR(config-vlan)#name entregas
SSERVIDOR(config-vlan)#vlan 7
SSERVIDOR(config-vlan)#name marketing
SSERVIDOR(config-vlan)#vlan 8
SSERVIDOR(config-vlan)#name funcionarios
SSERVIDOR(config-vlan)#^Z
SSERVIDOR#
%SYS-5-CONFIG_I: Configured from console by console

SSERVIDOR#sh vlan brief

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/1, Fa0/2, Fa0/3, Fa0/4
                                                Fa0/5, Fa0/6, Fa0/7, Fa0/8
                                                Fa0/9, Fa0/10, Fa0/11, Fa0/12
                                                Fa0/13, Fa0/14, Fa0/15, Fa0/16
                                                Fa0/17, Fa0/18, Fa0/19, Fa0/20
                                                Fa0/21, Fa0/22, Fa0/23, Fa0/24
                                                Gig1/1, Gig1/2
5    compras                          active   
6    entregas                         active   
7    marketing                        active   
8    funcionarios                     active   
1002 fddi-default                     active   
1003 token-ring-default               active   
1004 fddinet-default                  active   
1005 trnet-default                    active   
SSERVIDOR#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
SSERVIDOR(config)#int fa0/1
SSERVIDOR(config-if)#switchport mode trunk
SSERVIDOR(config)#int f0/2
SSERVIDOR(config-if)#switchport mode trunk
SSERVIDOR(config-if)#^Z

SSERVIDOR#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
SSERVIDOR(config)#int range fa0/3-10
SSERVIDOR(config-if-range)#switchport mode access
SSERVIDOR(config-if-range)#switchport access vlan 5
SSERVIDOR(config-if-range)#int range fa0/11-20
SSERVIDOR(config-if-range)#switchport mode access
SSERVIDOR(config-if-range)#switchport access vlan 6

VTP CLIENTE

Switch>en
Switch#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#hostname SCLIENTE
SCLIENTE(config)#^exit

SCLIENTE(config)#vtp mode client
Setting device to VTP CLIENT mode.
SCLIENTE(config)#vtp domain NKIAMBI
Domain name already set to NKIAMBI.
SCLIENTE(config)#vtp password NKIAMBI
Setting device VLAN database password to NKIAMBI
SCLIENTE(config)#^Z

SCLIENTE#sh vlan brief

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/2, Fa0/3, Fa0/4, Fa0/5
                                                Fa0/6, Fa0/7, Fa0/8, Fa0/9
                                                Fa0/10, Fa0/11, Fa0/12, Fa0/13
                                                Fa0/14, Fa0/15, Fa0/16, Fa0/17
                                                Fa0/18, Fa0/19, Fa0/20, Fa0/21
                                                Fa0/22, Fa0/23, Fa0/24, Gig1/1
                                                Gig1/2
5    compras                          active   
6    entregas                         active   
7    marketing                        active   
8    funcionarios                     active   
1002 fddi-default                     active   
1003 token-ring-default               active   
1004 fddinet-default                  active   
1005 trnet-default                    active 
 
SCLIENTE#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
SCLIENTE(config)#int range fa0/1-6
SCLIENTE(config-if-range)#switchport mode access
SCLIENTE(config-if-range)#switchport access vlan 7
SCLIENTE(config-if-range)#int range fa0/11-15
SCLIENTE(config-if-range)#switchport mode access
SCLIENTE(config-if-range)#switchport access vlan 8
SCLIENTE(config-if-range)#^Z
SCLIENTE#
%SYS-5-CONFIG_I: Configured from console by console

SCLIENTE#show vtp status
VTP Version                     : 2
Configuration Revision          : 8
Maximum VLANs supported locally : 255
Number of existing VLANs        : 9
VTP Operating Mode              : Client
VTP Domain Name                 : NKIAMBI
VTP Pruning Mode                : Disabled
VTP V2 Mode                     : Disabled
VTP Traps Generation            : Disabled
MD5 digest                      : 0x0B 0xBD 0x0B 0x11 0xFB 0x5A 0xF7 0xF5
Configuration last modified by 0.0.0.0 at 3-1-93 01:24:12
SCLIENTE#

SCLIENTE(config)#int fa0/1
SCLIENTE(config-if)#switchport mode trunk

SCLIENTE(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
^Z
SCLIENTE#
%SYS-5-CONFIG_I: Configured from console by console

SCLIENTE#show vlan brief

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/7, Fa0/8, Fa0/9, Fa0/10
                                                Fa0/16, Fa0/17, Fa0/18, Fa0/19
                                                Fa0/20, Fa0/21, Fa0/22, Fa0/23
                                                Fa0/24, Gig1/1, Gig1/2
5    compras                          active   
6    entregas                         active   
7    marketing                        active    Fa0/2, Fa0/3, Fa0/4, Fa0/5
                                                Fa0/6
8    funcionarios                     active    Fa0/11, Fa0/12, Fa0/13, Fa0/14
                                                Fa0/15
1002 fddi-default                     active   
1003 token-ring-default               active   
1004 fddinet-default                  active   
1005 trnet-default                    active   
SCLIENTE#

CONFIGURAÇÔES DO ROTEADOR

Router>EN
Router#CONFIG
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R1
R1(config)#int fa0/0.5
R1(config-subif)#encapsulation dot1q 5
R1(config-subif)#ip add 192.168.1.1 255.255.255.240
R1(config-subif)#exi
R1(config)#int fa0/0.6
R1(config-subif)#encapsulation dot1q 6
R1(config-subif)#ip add 192.168.1.17 255.255.255.240
R1(config-subif)#exit
R1(config)#int fa0/0.7
R1(config-subif)#encapsulation dot1q 7
R1(config-subif)#ip add 192.168.1.33 255.255.255.240
R1(config-subif)#exi
R1(config)#int fa0/0.8
R1(config-subif)#encapsulation dot1q 8
R1(config-subif)#ip add 192.168.1.49 255.255.255.240
R1(config-subif)#exi
R1(config)#end

R1#
R1#config t
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#int fa0/0
R1(config-if)#no shut
 R1#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route

Gateway of last resort is not set

     192.168.1.0/28 is subnetted, 4 subnets
C       192.168.1.0 is directly connected, FastEthernet0/0.5
C       192.168.1.16 is directly connected, FastEthernet0/0.6
C       192.168.1.32 is directly connected, FastEthernet0/0.7
C       192.168.1.48 is directly connected, FastEthernet0/0.8

Depois da Configuração, topologia a baixo:




Espero que vos seje util, Obrigado

Caso de duvida não hesitem, escrevam
      d-conecta@outlook.com


sábado, 16 de novembro de 2013

Como configurar roteamento entre Vlans, modo tradicional

Malta, tudo porreiro?? hoje vou mostrar a vocês como configurar VLANs no switch cisco catalyst 2960 e não só, como configurar o roteamento entre as referidas vlans no modo tradicional com o  roteador cisco 1841.

a Topologia abaixo:



Lembrem-se que, roteamento entre vlans no modo tradicional o numero de vlans é limitado devido o numero de portas ethernet que o roteador disponibiliza porque cada vlan vai ocupar uma porta ethernet, neste caso no maximo duas vlans, com o roteador cisco 1841.

Configurações:

Switch>en
Switch#config t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#hostname S1
S1(config)#vlan 4
S1(config-vlan)#name convidados
S1(config-vlan)#vlan 8
S1(config-vlan)#name Internos
S1(config-vlan)#exi

Atribuindo portas de acesso

S1(config)#int range fa0/5-6
S1(config-if-range)#switchport mode access
S1(config-if-range)#switchport access vlan 4
S1(config-if-range)#switchport mode access
S1(config-if-range)#int range fa0/11-12
S1(config-if-range)#switchport mode access
S1(config-if-range)#switchport access vlan 8
S1(config-if-range)#exi
S1(config)#end


S1#sh vlan brief

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                    active    Fa0/1, Fa0/2, Fa0/3, Fa0/4
                                                Fa0/7, Fa0/8, Fa0/9, Fa0/10
                                                Fa0/13, Fa0/14, Fa0/15, Fa0/16
                                                Fa0/17, Fa0/18, Fa0/19, Fa0/20
                                                Fa0/21, Fa0/22, Fa0/23, Fa0/24
                                                Gig1/1, Gig1/2
4    convidados             active    Fa0/5, Fa0/6
8    Internos                  active    Fa0/11, Fa0/12
1002 fddi-default          active  
1003 token-ring-default       active  
1004 fddinet-default            active  
1005 trnet-default               active  
S1#

Configurando portas de acesso ao roteador

S1#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
S1(config)#int fa0/1
S1(config-if)#switchport access vlan 4
S1(config-if)#ex
S1(config)#int fa0/2
S1(config-if)#switchport access vlan 8
S1(config-if)#ex

Configurando o Roteador

Router>en
Router#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname roteador1
Roteador1(config)#int fa0/0
Roteador1(config-if)#ip add 192.168.4.1 255.255.255.0
Roteador1(config-if)#no shutdown
Roteador1(config-if)#ex
Roteador1(config)#int fa0/1
Roteador1(config-if)#ip add 192.168.8.1 255.255.255.0
Roteador1(config-if)#no shutdown
Roteador1(config-if)#ex
Roteador1(config)#
Obs: os endereços atribuidos nas portas(interfaces) fa0/0 e fa0/1 são os endereços do gateway de cada vlan

roteador1#sh ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route

Gateway of last resort is not set

C    192.168.4.0/24 is directly connected, FastEthernet0/0
C    192.168.8.0/24 is directly connected, FastEthernet0/1

Para testar, fiz um ping no host da vlan 4 e assim foi com sucesso...

a topologia a abixo no estado funcional:


okay,esta foi mais uma aula espero que vos seje util  e aprendam qualquer coisa.

Em caso de duvida esta disponivel o correio electronico:
d-conecta@outlook.com

sexta-feira, 8 de novembro de 2013

VLANs no switch Catalyst 2960 com servidor DHCP em cada VLAN

Olá! Malta, hoje vou mostrar a vocês como comfigurar vlans  no switch 2960 da cisco com servidores DHCP, em vez de atribuir os endereços manualmente aos hosts das VLANs, o servidor DHCP se encarregará em atribuir os endereços automaticamente.


A topologia abaixo:

Configurações do switch. 
Obs: Aqui so postei a configuração de um switch e o mesmo deve ser feito no outro switch.

Switch#CONFIG T
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#HOSTNAME S2
S2(config)#VLAN 2
S2(config-vlan)#NAME DIREÇÃO
S2(config-vlan)#VLAN 3
S2(config-vlan)#NAME DANIEL
S2(config-vlan)#VLAN 4
S2(config-vlan)#NAME VISITANTES
S2(config-vlan)#END
S2#
%SYS-5-CONFIG_I: Configured from console by console


S2#SHOW VLAN BRIEF

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/1, Fa0/2, Fa0/3, Fa0/4
                                                Fa0/5, Fa0/6, Fa0/7, Fa0/8
                                                Fa0/9, Fa0/10, Fa0/11, Fa0/12
                                                Fa0/13, Fa0/14, Fa0/15, Fa0/16
                                                Fa0/17, Fa0/18, Fa0/19, Fa0/20
                                                Fa0/21, Fa0/22, Fa0/23, Fa0/24
                                                Gig1/1, Gig1/2
2    DIREÇÂO                                 active    
3    DANIEL                              active    
4    VISITANTES                          active    
1002 fddi-default                        active    
1003 token-ring-default              active    
1004 fddinet-default                   active    
1005 trnet-default                      active    
S2#CONFIG T
Enter configuration commands, one per line.  End with CNTL/Z.
S2(config)#INT RANGE FA0/1-11
S2(config-if-range)#INT RANGE FA0/1-10
S2(config-if-range)#SWITCHPORT MODE ACCESS
S2(config-if-range)#SWITCHPORT ACCESS  VLAN 2
S2(config-if-range)#INT RANGE FA0/11-20
S2(config-if-range)#SWITCHPORT MODE ACCESS
S2(config-if-range)#SWITCHPORT ACCESS  VLAN 3
S2(config-if-range)#INT RANGE FA0/21-24
S2(config-if-range)#SWITCHPORT MODE ACCESS
S2(config-if-range)#SWITCHPORT ACCESS  VLAN 4
S2(config-if-range)#END
S2#
%SYS-5-CONFIG_I: Configured from console by console

S2#SHOW VLAN BRIEF

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Gig1/1, Gig1/2
2    DIREÇÂO                            active    Fa0/1, Fa0/2, Fa0/3, Fa0/4
                                                Fa0/5, Fa0/6, Fa0/7, Fa0/8
                                                Fa0/9, Fa0/10
3    DANIEL                          active    Fa0/11, Fa0/12, Fa0/13, Fa0/14
                                                Fa0/15, Fa0/16, Fa0/17, Fa0/18
                                                Fa0/19, Fa0/20
4    VISITANTES                          active    Fa0/21, Fa0/22, Fa0/23, Fa0/24
1002 fddi-default                     active    
1003 token-ring-default               active    
1004 fddinet-default                  active    
1005 trnet-default                    active    
S2#CONFIG T
Enter configuration commands, one per line.  End with CNTL/Z.
S2(config)#INT RANGE FA0/1-24
S2(config-if-range)#NO SHUTDOWN

S2(config-if-range)#END
S2#
%SYS-5-CONFIG_I: Configured from console by console

S2#COPY R
S2#COPY Running-config S
S2#COPY Running-config Startup-config 
Destination filename [startup-config]? 
Building configuration...
[OK]
S2#CONFIG T
Enter configuration commands, one per line.  End with CNTL/Z.

S2(config)#INT FA0/1
S2(config-if)#SWITCHPORT MODE TRUNK

S2(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

S2(config-if)#SWITCHPORT TRUNK ALLOWED VLAN 2,3,4
S2(config-if)#END
S2#
%SYS-5-CONFIG_I: Configured from console by console

S2#

Configuração dos servidores

Passos:
1. Dé um click a direita no servidor na opção desktop, ip configuration, aparecerá a seguinte janela:

2.Preencha os campos ip address, subnet mask e default Gateway e feche a janela. 
3. Clique em config , DHCP e aparecerá a seguinte janela:


4. Coloque o Gateway da subrede, e em Start ip address especifique onde o servidor começará a atribuir a contagem dos IPs, e lembrem-se que não deve ser 1 nem 0 porque o endereço q termina com 1 é o gateway da rede e o que termina com 0 é o endereço da rede. e por fim clique em service ON para habilitar o servidor.


Okay. esta foi mais uma aula, espero q tirem proveito nela.

domingo, 3 de novembro de 2013

Como configurar o D-link DWR 113 no modo 3G ou 4G


Passos:
1º Ligar o computador ao router com um cabo utp direito.

2º Vai menu Iniciar, na barra procurar digite CMD, quando o promp abir digite ipconfig

3º Procure a placa de ligação local ou Ethernet. 

4º Pegue o endereço ip do gateway encontrado, abra um navegador e entre neste endereço e aparecerá a seguinte janela:


5º No user name digite ``admin`` e clique ENTER e aparecerá a seguinte janela:
6º Apartir daqui a gente esta dentro da CLI do router. Clique em `` Manual Internet Connection Setup e aparecerá a janela  onde farás as configurações.

7º Em internet connection is escolha 3G, e por baixo em 3G Internet connection Type prencha-os com os parametro do seu modem 3G ou 4G, tal como a figura abaixo:
8º E clique save settings, e  faça logout ,desligue a alimentação do router e coloque o MODEM 3G ou 4G na porta usb, torne a ligar a alimentação e espere um minuto e meio pra que o modem conecte a 
internet.



Obrigado, espero que vos seje util...


sábado, 2 de novembro de 2013

Como criar VLAN no switch cisco catalyst 2960 sem servidor vtp

Com um cabo console e um programa Emulador de Terminal, entre na CLI do switch e começe ja a criar as sua VLANs.

Esta é a Topologia da rede na imagem abaixo:
Aqui estão as configurações super simples e básicas


Switch>en
Switch#config
Configuring from terminal, memory, or network [terminal]? 
Enter configuration commands, one per line. End with CNTL/Z.

Declarando  as VLANs
Switch(config)#vlan 2
Switch(config-vlan)#name vendas
Switch(config-vlan)#vlan 3
Switch(config-vlan)#name markting
Switch(config-vlan)#ex

comandos de acesso e  atribuição das vlans nas interfaces
Switch(config)#int range fa0/1-3
Switch(config-if-range)#switchport mode access
Switch(config-if-range)#switchport access vlan 2
Switch(config-if-range)#int range fa0/4-5
Switch(config-if-range)#switchport mode access
Switch(config-if-range)#switchport access vlan 3
Switch(config-if-range)#ex
Switch(config)#end

Ligação de tronco
Switch#config t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#int fa0/1
Switch(config-if)#switchport mode trunk
Switch(config-if)#switchport trunk allowed vlan 2,3
Switch(config-if)#ex
Switch(config)#int range fa0/1-5
Switch(config-if-range)#no shut

Obrigado, espero que este Tutorial tenha vos ajudado...