Results 1 to 5 of 5

Thread: Method to config DHCP server

  1. #1
    Join Date
    Nov 2009
    Posts
    335

    Method to config DHCP server

    Hello,
    I have a network of switches manageables which access has supervision is configured in DHCP. What methods are there for some switch automatically be placed in a sub-network and another in another? are there specific fields in the DHCP to do this?

  2. #2
    Join Date
    Apr 2008
    Posts
    3,424

    re: Method to config DHCP server

    Hi
    I do not understand your request or you can switch your DHCP servers are used for IP addresses to PCs that log into the switch. Either they are DHCP clients to be managed by an SNMP manager . It seems to me to be a bad idea because they may have different IP addresses of a boot to the other and therefore the management will not be simple. The IP address management of a switch should be fixed (and if possible in a VLAN / network administration different from the VLAN / network PC users). Hope this information helps you.

  3. #3
    Join Date
    Nov 2009
    Posts
    335

    re: Method to config DHCP server

    Hi
    I'll try to explain a little more deeply my problem. I have manageable switches that are on a network. Initially, the switch is configured as DHCP client with a default configuration and supervision is available without VLANs. What I would like to make is that the switch should go get that automatically configure a TFTP server. I was thinking to use the Boot File Name field of the DHCP protocol to know where to get the right file on the TFTP server and then configure the switch. But the problem is that the server must identify the type of switch him back to the DHCP request in the proper name of the configuration file. It's almost the same principle that freebox and another not? VLAN administration will therefore not tagged him and other services will be tagged cons. There may be problems to use the non-VLAN tagged him for the administration?

  4. #4
    Join Date
    Apr 2008
    Posts
    3,339

    re: Method to config DHCP server

    Hi
    You can configure your DHCP server so to assign a certain IP address based on MAC address
    Code:
    Swt host (
                    hardware ethernet xx: xx: xx: xx: xx: xx;
                    fixed 192.168.0.2;
            )
    You can also assign a certain pool of addresses you based on part of the manufacturer identifier, by defining a class:
    Code:
    Match if substring (option vendor-class-identifier, 0, 8) = "twiglight"
    Then you specify that your pool belongs to this class:
    Code:
    pool (
           range 192.168.0.2 192.168.0.80;
           allow members of "twiglight";
           deny members of "Classe";
        )

  5. #5
    Join Date
    Nov 2009
    Posts
    335

    re: Method to config DHCP server

    Hi
    Thank you very much. The second solution for me was good, but you know how to do this also in Windows Server 2008 (maybe I should change the section of forum?)? I feel that in WS2008, it uses the class-class user-information to the filter.
    I would therefore
    1 - assign an ip address according to the fields DHCP vendor-class-identifier
    2 - DHCP server returns the file name config in the field Boot File Name
    What do you think of this method for managing devices on my network? I might have problems (security and otherwise)?

Similar Threads

  1. How to Install DHCP server on Windows Server 2008
    By Elizabeth Allen in forum Small Business Server
    Replies: 2
    Last Post: 24-01-2011, 04:52 AM
  2. Replies: 3
    Last Post: 02-11-2010, 10:36 AM
  3. How to Install and Configure DHCP Server in Ubuntu Server
    By Anirvinya in forum Operating Systems
    Replies: 5
    Last Post: 10-02-2010, 04:29 AM
  4. how to migrate DHCP settings from server 2003 to server 2008
    By Imran in forum Windows Server Help
    Replies: 3
    Last Post: 01-09-2009, 12:57 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,165,256.39601 seconds with 16 queries