02-18-2014 01:05 PM - edited 03-04-2019 10:22 PM
Prezados,
Tenho, um Switch ME 3400, estou usando o link: http://www.cisco.com/c/en/us/td/docs/switches/metro/me3400/software/release/12-2_25_seg_seg1/configuration/guide/3400scg/swintro.html para configura-lo porem não estou consiguindo consigo.
Quero deixa-lo no modo Switching,
Abilitei todas as porta e coloquei todas na mesma vlan, verificando a tabela mac ele reconheci os host conectado a ele, os 2 host estão no mesmo intervalo ip, porem um não pinga o outro.
Quem tiver um tutorial de configuração basica desse swithc eu agradeço,
Solved! Go to Solution.
02-18-2014 04:58 PM
Hi Jose,
If you are used to normal switches like 3550s, 2960s et etc,
you will be used to just configuring the interfaces into a vlan
and that the devices in the same vlan can normally ping each
other.
Something along these lines:-
!
vlan 10
name data10
!
vlan 20
name data20
!
vlan 30
name vlan 30
!
int range f0/1 - 6
switchport mode access
switchport access vlan 10
!
!
int range f0/7 - 12
switchport mode access
switchport access vlan 20
!
!
int range f0/13 - 18
switchport mode access
switchport access vlan 30
!
int f0/24
switchport mode trunk
switchport trunk vlan allowed 1,10,20,30
!
When you deploy a 3400 the default operation
of the switch is different.
The switch sets all fast ethernet interfaces
into UNI operation, this is like isolated private
vlan working.
Hence although the interface are in the same IP (layer3)
subnet they can not communicate with each other.
You have 2 choices in you want to allow the the devicesto
be able to ping each other.
1)Change the vlan to a private community
Something like this:-
!
vlan 100
private-vlan primary
exit
vlan 10
private-vlan community
exit
vlan 100
private-vlan association 10
!
interface range f0/1 - 6
no shutdown
switchport mode private-vlan host
switchport private-vlan host-association 100 10
end
You can only set upto 8 UNI interfaces into the same community
private vlan.
2) Change all the interfaces to be NNI port types
!
int range f0/ - 24
port-type nni
switchport mode access
switchport access vlan 30
!
IMPORTANT if you want do this you need to have
the "metro IP access" image of IOS running.
If you only have the base image you can only change
up to a max of 4 fastethernet interfaces to NNI.
All the info I have tried to explain here in in the link
you have quoted
Hope this helps
Regards,
Alex.
Please rate useful posts.
02-18-2014 04:58 PM
Hi Jose,
If you are used to normal switches like 3550s, 2960s et etc,
you will be used to just configuring the interfaces into a vlan
and that the devices in the same vlan can normally ping each
other.
Something along these lines:-
!
vlan 10
name data10
!
vlan 20
name data20
!
vlan 30
name vlan 30
!
int range f0/1 - 6
switchport mode access
switchport access vlan 10
!
!
int range f0/7 - 12
switchport mode access
switchport access vlan 20
!
!
int range f0/13 - 18
switchport mode access
switchport access vlan 30
!
int f0/24
switchport mode trunk
switchport trunk vlan allowed 1,10,20,30
!
When you deploy a 3400 the default operation
of the switch is different.
The switch sets all fast ethernet interfaces
into UNI operation, this is like isolated private
vlan working.
Hence although the interface are in the same IP (layer3)
subnet they can not communicate with each other.
You have 2 choices in you want to allow the the devicesto
be able to ping each other.
1)Change the vlan to a private community
Something like this:-
!
vlan 100
private-vlan primary
exit
vlan 10
private-vlan community
exit
vlan 100
private-vlan association 10
!
interface range f0/1 - 6
no shutdown
switchport mode private-vlan host
switchport private-vlan host-association 100 10
end
You can only set upto 8 UNI interfaces into the same community
private vlan.
2) Change all the interfaces to be NNI port types
!
int range f0/ - 24
port-type nni
switchport mode access
switchport access vlan 30
!
IMPORTANT if you want do this you need to have
the "metro IP access" image of IOS running.
If you only have the base image you can only change
up to a max of 4 fastethernet interfaces to NNI.
All the info I have tried to explain here in in the link
you have quoted
Hope this helps
Regards,
Alex.
Please rate useful posts.
02-19-2014 05:23 AM
Alex, Muito abrigado.
Deus abencoe...
02-19-2014 08:30 PM
You could also do the following
vlan 10
uni-vlan community
Sent from Cisco Technical Support iPhone App
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide