В сети есть dhcp-server , который находиться в 5-ом vlan . Есть абоненты которые тоже находятся в 5-ом vlan . Свичи 3528.
Так вот проблема в том что, когда абонент пытается получить ip по dhcp , то он его получает, но после ~30 секундной задержки и это критично.
На 1 свиче куда подключен dhcp-server (дальше пошел транком на 2-й свич)
Код:
# VLAN
enable pvid auto_assign
config vlan default delete 1:1-1:24
config vlan default advertisement disable
create vlan IP-TV tag 5
config vlan IP-TV add tagged 1:18-1:19
# DhcpServerScreening
config filter dhcp_server ports all state disable
config filter dhcp_server illegal_server_log_suppress_duration 5min
config filter dhcp_server trap disable
config filter dhcp_server log disable
# DHCP_LOCAL_RELAY
disable dhcp_local_relay
# DHCP_RELAY
disable dhcp_relay
config dhcp_relay hops 4 time 0
config dhcp_relay option_82 state disable
config dhcp_relay option_82 check disable
config dhcp_relay option_82 policy replace
config dhcp_relay option_82 remote_id default
config dhcp_relay option_60 state disable
config dhcp_relay option_61 state disable
config dhcp_relay option_60 default mode drop
config dhcp_relay option_61 default drop
На 2 свиче куда подключены абоненты (untagged)
Код:
#VLAN
enable pvid auto_assign
config vlan default delete 1:1-1:26,2:1-2:26
config vlan default advertisement disable
create vlan IPTV-5 tag 5
config vlan IPTV-5 add tagged 1:26,2:26
config vlan IPTV-5 add untagged 1:1-1:24,2:1-2-24 advertisement disable
# DhcpServerScreening
config filter dhcp_server ports all state disable
config filter dhcp_server ports 1:1-1:24,2:1-2:24 state enable
config filter dhcp_server illegal_server_log_suppress_duration 5min
config filter dhcp_server trap_log disable
# DHCP_LOCAL_RELAY
disable dhcp_local_relay
# DHCP_RELAY
disable dhcp_relay
config dhcp_relay hops 4 time 0
config dhcp_relay option_82 state disable
config dhcp_relay option_82 check disable
config dhcp_relay option_82 policy replace
config dhcp_relay option_82 remote_id default
config dhcp_relay option_60 state disable
config dhcp_relay option_61 state disable
config dhcp_relay option_60 default mode drop
config dhcp_relay option_61 default drop
Так вот вопрос такой: Почему происходит задержка ~30 сек. dhcp-запроса, ведь сервер и абоненты находятся в одном широковещательном сегменте? Смотрел tcpdump-ом на dhcp-servere, нет dhcp-запросов в течении ~30 сек.