Hey,
I'm having trouble getting DHCP relay with vlans to work.
I have two vlans, vlan.0(ge-0/0/1) for the dhcp server and vlan.1(ge-0/0/2) for the client that needs to receive the DHCP reply.
Looking on the traffic on the dhcp server with dhcpdump, it seems like a reply is sent to the correct address however, the client itself does not see it.
When moving the client to vlan.0, the client gets the reply and responds as it should.
My config:
interfaces { ge-0/0/1 { ether-options { auto-negotiation; } unit 0 { family ethernet-switching { port-mode access; vlan { members 0; } } } } ge-0/0/2 { ether-options { auto-negotiation; } unit 0 { family ethernet-switching { port-mode access; vlan { members 1; } } } } vlan { unit 0 { family inet { address 192.168.0.1/24; } } unit 1 { family inet { address 192.168.1.1/24; } } } } forwarding-options { helpers { bootp { server 192.168.0.2; interface { vlan.1; } } } } ethernet-switching-options { secure-access-port { interface ge-0/0/1.0 { dhcp-trusted; } } voip; storm-control { interface all; } } vlans { default { l3-interface vlan.0; } vlan.1 { vlan-id 1; l3-interface vlan.1; } }
Any help is appreciated!