01-29-2020 06:41 AM
Hi,
Have hit an issue with a VSP8600 hitting the limit set in regards to how many DHCP relay forwarding addresses are allowed, which is 1024.
The DHCP configuration has been configured providing DHCP relay addresses per VLAN. The list varies per VLAN, from 6 to 2 address.
Doing some calculations, say there was 6 forwarders per VLAN, something like the below could be quite plausible:
Using that format, at just 170 VLANs you would bust the limit. Even if I reduced it too four you would still bust the limit at 256 VLANs, which seems exceedingly low!
In this particular case I am converting from EOS to VOSS, which uses the same method of configuration but EOS didn’t any limitation concerns.
In EXOS as another example, you can just configure the 6 individual relay addresses and configure which VLANs to use it. You also have the flexibility of defining what VLANs use what forwarders, thereby essentially reducing the 1024 forwarder addresses to just 6.
So I see a few options:
Currently running the recommended VOSS version of 6.3.2.0
Here is an example of the DHCP relay configuration:
int vlan 2
ip address 10.133.174.2/24
ip directed-broadcast enable
ip dhcp-relay
ip dhcp-relay mode dhcp
exit
ip dhcp-relay fwd-path 10.133.174.2 10.133.80.6 enable
ip dhcp-relay fwd-path 10.133.174.2 10.133.80.24 enable
ip dhcp-relay fwd-path 10.133.174.2 10.133.80.215 enable
ip dhcp-relay fwd-path 10.133.174.2 10.133.80.249 enable
ip dhcp-relay fwd-path 10.133.174.2 10.133.80.201 enable
ip dhcp-relay fwd-path 10.133.174.2 10.133.80.91 enable
ip dhcp-relay fwd-path 10.133.174.2 10.133.80.93 enable
int vlan 10
ip address 192.168.45.2/29
ip directed-broadcast enable
ip dhcp-relay
ip dhcp-relay mode dhcp
exit
ip dhcp-relay fwd-path 192.168.45.2 10.133.124.91 enable
ip dhcp-relay fwd-path 192.168.45.2 10.133.124.93 enable
Many thanks in advance.