I plan to use the mikrotik for VLAN and the dhcp from server. I am looking for any resources / tutorial for this implementation .
You need to include more about your topology.
I would like to create a basic network infrastructure, on which a server will provide the dhcp to few vlans
On top of the manual, there is also the VLAN tutorial by @pcunite. If these resources are not enough to answer your questions, give a detailed description of the desired configuration (vlan <=> port mappings, subnet <=> vlan mappings etc.).
A dhcp server needs to be
- linked to an L3 interface with an assigned IP address
- linked to at least one address pool configured under /ip pool
- enabled
In order that the clients would get a useful configuration, an /ip dhcp-server network item must exist, linking the subnet address to parameters like default-gateway, dns-server etc. So whenever the server leases out an address from a pool or a static lease, it matches the address against these items, and provides these parameters found in a matching item in its DHCPOFFER and DHCPACK sent to the client.
:global MainInterface [/ip dhcp-server get number=0 interface]
/interface vlan
add name="VLAN101" interface=$MainInterface vlan-id=101
/ip pool
add name="Pool 101" range=192.168.101.100-192.168.101.150
/ip dhcp-server
add address-pool="Pool 101" authoritative=after-2sec-delay disabled=no interface=VLAN101 name=VLAN101
/ip dhcp-server network
add address=192.168.101.0/24 comment=101 dns-server=192.168.101.1 gateway=192.168.101.1
/ip address
add address=192.168.101.1/24 interface=VLAN101 network=192.168.101.0
Then you need to figure out your firewall Filter and Nat