ситуация следующего рода
две каталисты 3560G 3560E (cat_106 и cat_107 соответственно) к cat_106 подключен сервак 192.168.100.6 к порту 19, который в свою очередь засунут в vlan 100 (этот влан анонсирован на соседнюю каталисту cat_107)
cat_106#sh run int gi0/19
Building configuration...
Current configuration : 65 bytes
!
interface GigabitEthernet0/19
switchport access vlan 100
end
при попытке пинга на сервак получаем тишину
cat_106#ping 192.168.100.6
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.100.6, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
тем временем на cat_107 делаем
cat_107#clear arp-cache
cat_107#ping 192.168.100.6
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.100.6, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
cat_107#sh arp | in 192.168.100.6
Internet 192.168.100.6 0 001e.0bdc.1858 ARPA Vlan100
делаем следующие действия на cat_106
cat_106#conf t
Enter configuration commands, one per line. End with CNTL/Z.
cat_106(config)#int vlan 204
cat_106(config-if)#ip add 192.168.204.1 255.255.255.0
cat_106(config-if)#int gi0/19
cat_106(config-if)#sw acce vlan 204
% Access VLAN does not exist. Creating vlan 204
cat_106(config-if)#end
cat_106#ping 192.168.204.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.204.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms
cat_106#
при этом на cat_106 подключены другие сервера подключенные к vlan 100, они видятся нормально и с cat_106 и c cat_107
анонсирование Vlan 100 с обеих каталист
cat_106#sh run in port-channel 1
Building configuration...
Current configuration : 127 bytes
!
interface Port-channel1
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 100
switchport mode trunk
end
cat_106#sh run int gi0/10
Building configuration...
Current configuration : 165 bytes
!
interface GigabitEthernet0/10
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 100
switchport mode trunk
channel-group 1 mode desirable
end
cat_106#sh run int gi0/12
Building configuration...
Current configuration : 165 bytes
!
interface GigabitEthernet0/12
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 100
switchport mode trunk
channel-group 1 mode desirable
end
cat_107#sh run in port-channel 1
Building configuration...
Current configuration : 127 bytes
!
interface Port-channel1
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 100
switchport mode trunk
end
interface GigabitEthernet0/11
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 100
switchport mode trunk
channel-group 1 mode auto
!
interface GigabitEthernet0/12
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 100
switchport mode trunk
channel-group 1 mode auto
!
в чем грабли?