Rexxer

Some tips for me and other

Коммутаторы АТ8000S/24 и медленная выдача адресов по DHCP

Имеется некоторое кол-во AT8000S в стэке.

Все, вроде бы, неплохо, но DHCP ужОс как медленно работает.

Задал вопрос на форуме AT, и , вот, что мне посоветовали:

выберите клиентские порты и на них напишите по аналогии:
interface range ethernet all
spanning-tree disable
exit
interface range ethernet all
spanning-tree portfast
exit
interface range ethernet all
spanning-tree bpdu filtering
exit

После данных манипуляций DHCP заработал как надо.

Спасибо Butch3r за совет.

Еще немного инофрмации:


BPDUs are the messages exchanged between switches to calculate the spanning tree topology. BPDU filter is a feature used to filter sending or receiving BPDUs on a switchport.

It is extremely useful on those ports which are configured as portfast ports as there is no need to send or receive any BPDU messages on of these ports.

BPDU filter can be configured globally or under the interface level. When configured globally all portfast enabled ports stop sending and receiving BPDUs, but if a BPDU is received on the port it gets out of the portfast state and normally participate in the spanning tree calculations.

Global mode configuration:

spanning-tree portfast bpdufilter default

Enabling BPDU filtering in the interface level stops sending or receiving BPDU on this interface; this is the same as disabling spanning tree on the interface. This is a risky choice unless you are sure that no switch can ever be connected to this port.

Interface mode configuration:

spanning-tree bpdufilter enable


Leave a Reply