Hi,

I have a small openbsd router running in my network.
I have vlan10 (my lan), vlan11 (w-lan) and tun0/1 (openvpn tap devices).
I bridged them all toghether on bridge0. Only vlan10 has an ip address. 
(10.1.16.1)
Now I want dhcpd to assign 10.1.16.0/24 on all four interfaces, but it just 
does on vlan10. All i get is Can't listen on vlan11/tap0/tap1. It has no IP 
Address.
Also.. since all interfaces are bridged, shouldn requests on vlan11 or tun0 
reach vlan10 where dhcpd does listen? They do not...

Here is what I have in dhcpd.conf:
shared-network LOCAL-NET {
        option  domain-name "example.org";
        option  domain-name-servers 10.1.32.2;
        option  netbios-name-servers 10.1.16.3;
        subnet 10.1.16.0 netmask 255.255.255.0 {
                option routers 10.1.16.1;

                range 10.1.16.128 10.1.16.254;
        }
}

and in dhcp.interfaces:
vlan10
vlan11
tun0
tun1

is there something special I have to configure?

-- 
Thank you
Chris

Reply via email to