Прошивку получил. После enable dhcp_local_relay (при отключенных правилах блокирующих broadcast) - Relay работает, broadcast DHCP-запросы дальше не передаются.
Разрешаем broadcast DHCP-запросы:
create access_profile ip source_ip 255.255.255.255 destination_ip 255.255.255.255 udp src_port 0xFFFF profile_id 3
config access_profile profile_id 3 add access_id 1 ip source_ip 0.0.0.0 destination_ip 255.255.255.255 udp src_port 68 port 1-48 permit
Запрещаем broadcast трафик, кроме ARP:
create access_profile ethernet destination_mac FF-FF-FF-FF-FF-FF ethernet_type profile_id 4
config access_profile profile_id 4 add access_id 1 ethernet destination_mac FF-FF-FF-FF-FF-FF ethernet_type 0x806 port 1-52 permit
config access_profile profile_id 4 add access_id 2 ethernet destination_mac FF-FF-FF-FF-FF-FF ethernet_type 0x800 port 1-52 deny
Relay работает, broadcast DHCP-запросы дальше передаются.
Вопрос: Как заблокировать broadcast, чтобы DHCP Relay работал?
|