Mainos / Advertisement:

Ero sivun ”RouterOS DHCP/en” versioiden välillä

Kohteesta Taisto
Siirry navigaatioon Siirry hakuun
(Ak: Uusi sivu: With DHCP (Dynamic Host Configuration Protocol) it is easy to manage and assign IP-addresses for client devices in your network. Mikrotik RouterOS has DHCP client and DHCP server s...)
(Ak: Uusi sivu: * Interface = Port to ask for the DHCP settings from * disable no = Enable feature)
 
(10 välissä olevaa versiota samalta käyttäjältä ei näytetä)
Rivi 6: Rivi 6:
 
== DHCP Server ==
 
== DHCP Server ==
  
Varmista että sinulla on kiinteä IP-osoite määritetty Mikrotikin reitittimeen. Käytämme tässä esimerkissä 192.168.100.0/24 verkkoa. Mikrotikissä on asetettu verkon ensimmäinen IP-osoite 192.168.100.1/24. Huomaathan että Mikrotik jakaa aina DHCP poolin loppupäästä ei alkupäästä niin kuin normaalisti.
+
Make sure you have defined a static IP address for the Mikrotik router. In our example we use the 192.168.100.0 /24 network. In Mikrotik we have assigned the first address of the network to be 192.168.100.1 /24. Note, that Mikrotik starts assigning addresses from the address pool's end instead of the start like most DHCP servers.
  
1. Luodaan DHCP pool. Tässä poolissa jaetaan esimerkissämme 192.168.100.10 ja 192.168.100.200 väliltä.  
+
1. We create a DHCP pool. In our example the pool assigns addresses between 192.168.100.10 and 192.167.100.200.  
  
 
   /ip pool add name=dhcp_pool address=192.168.100.10-192.168.100.200
 
   /ip pool add name=dhcp_pool address=192.168.100.10-192.168.100.200
Rivi 17: Rivi 17:
 
</gallery>
 
</gallery>
  
2. Luodaan uusi DHCP:n jako asetukset. Tähän määritetään verkon oletusyhdyskäytävä ja DNS palvelimet.
+
2. We create the settings for the new DHCP pool. In the settings we define the default gateway and DNS servers.
  
 
  /ip dhcp-server network add address=192.168.100.0/24 gateway=192.168.100.1 netmask=24 dns-server=192.168.100.1
 
  /ip dhcp-server network add address=192.168.100.0/24 gateway=192.168.100.1 netmask=24 dns-server=192.168.100.1
Rivi 26: Rivi 26:
 
</gallery>
 
</gallery>
  
3. Luodaan DHCP server. Tähän määritetään mihin porttiin DHCP jaetaan ja mistä poolista (lisätään juuri äskettäin luotu pool) ja lease time (varausaika).
+
3. We create the DHCP server. Here we define which ports will get their addresses by DHCP and from which pool (we add the pool we just created) as well as lease time (time until an assigned address is released, once the device the address has been given to is disconnected.).
  
 
   /ip dhcp-server add name=dhcp-server interface=ether1 lease-time=24:00:00 address-pool=dhcp_pool
 
   /ip dhcp-server add name=dhcp-server interface=ether1 lease-time=24:00:00 address-pool=dhcp_pool
Rivi 35: Rivi 35:
  
  
=== DHCP varaus ===
+
=== DHCP Exclusion ===
  
DHCP varauksella voit määrittää DHCP palvelimelle asiakaslaitteen MAC-osoitteen. Kun määritetty MAC-osoite yhdistää verkkoon jossa DHCP palvelin on, tämä antaa ennalta määritetyn IP-osoitteen kyseiselle asiakaslaitteelle.
+
With DHCP Exclusion you can define certain IP addresses to only be given to devices with a specific MAC address. When a device with the defined MAC address is connected to the network, it will be given the predefined address from the DHCP server.
  
 
   /ip dhcp-server lease add address=192.168.100.100 mac-address=11:22:33:44:55:66
 
   /ip dhcp-server lease add address=192.168.100.100 mac-address=11:22:33:44:55:66
Rivi 45: Rivi 45:
 
</gallery>
 
</gallery>
  
=== Mikrotik ja Windows Deployment Services ===
+
=== Mikrotik and Windows Deployment Services ===
  
Tässä esimerkki miten saa Mikrotikin DHCP:n toimimaan WDS:n kanssa. Määritä kuvankaappausten perusteella lisäasetukset DHCP palvelulle.
+
Here is an example how you can get Mikrotik DHCP to work with WDS. Define additional settings to your DHCP server in the same fashion as the pictures.
  
   Next Server = WDS-palvelimen IP-osoite
+
   Next Server = WDS server IP address
   Boot File Name = Tiedosto joka ladataan ensimmäisenä WDS palvelimesta
+
   Boot File Name = File which is first loaded from the WDS server
 
   DHCP Options = 060 PXEClient
 
   DHCP Options = 060 PXEClient
  
Rivi 60: Rivi 60:
 
== DHCP Client ==
 
== DHCP Client ==
  
DHCP Client ominaisuus mahdollistaa Mikrotikin verkkoasetusten hakemisen DHCP palvelimelta.
+
The DHCP Client feature enables Mikrotik to get it's network settings from a DHCP server.
  
 
   /ip dhcp-client add interface=ether1 disable=no
 
   /ip dhcp-client add interface=ether1 disable=no
  
* Interface = Portti josta pyydetään DHCP paketit
+
* Interface = Port to ask for the DHCP settings from
* disable no = Otetaan käyttöön
+
* disable no = Enable feature
  
 
<gallery>
 
<gallery>

Nykyinen versio 21. elokuuta 2015 kello 07.35

Muut kielet:
English • ‎suomi


With DHCP (Dynamic Host Configuration Protocol) it is easy to manage and assign IP-addresses for client devices in your network. Mikrotik RouterOS has DHCP client and DHCP server support.

DHCP Server

Make sure you have defined a static IP address for the Mikrotik router. In our example we use the 192.168.100.0 /24 network. In Mikrotik we have assigned the first address of the network to be 192.168.100.1 /24. Note, that Mikrotik starts assigning addresses from the address pool's end instead of the start like most DHCP servers.

1. We create a DHCP pool. In our example the pool assigns addresses between 192.168.100.10 and 192.167.100.200.

 /ip pool add name=dhcp_pool address=192.168.100.10-192.168.100.200

2. We create the settings for the new DHCP pool. In the settings we define the default gateway and DNS servers.

/ip dhcp-server network add address=192.168.100.0/24 gateway=192.168.100.1 netmask=24 dns-server=192.168.100.1

3. We create the DHCP server. Here we define which ports will get their addresses by DHCP and from which pool (we add the pool we just created) as well as lease time (time until an assigned address is released, once the device the address has been given to is disconnected.).

 /ip dhcp-server add name=dhcp-server interface=ether1 lease-time=24:00:00 address-pool=dhcp_pool


DHCP Exclusion

With DHCP Exclusion you can define certain IP addresses to only be given to devices with a specific MAC address. When a device with the defined MAC address is connected to the network, it will be given the predefined address from the DHCP server.

 /ip dhcp-server lease add address=192.168.100.100 mac-address=11:22:33:44:55:66

Mikrotik and Windows Deployment Services

Here is an example how you can get Mikrotik DHCP to work with WDS. Define additional settings to your DHCP server in the same fashion as the pictures.

 Next Server = WDS server IP address
 Boot File Name = File which is first loaded from the WDS server
 DHCP Options = 060 PXEClient

DHCP Client

The DHCP Client feature enables Mikrotik to get it's network settings from a DHCP server.

 /ip dhcp-client add interface=ether1 disable=no
  • Interface = Port to ask for the DHCP settings from
  • disable no = Enable feature
Mainos / Advertisement: