AIX DHCP Server and W2K Clients: help!

Ask a Question related to AIX, Design and Development.

  1. #1

    Default AIX DHCP Server and W2K Clients: help!

    Hi,

    I am trying to set up a "simple" AIX DHCP server directly connected to
    W2K/NT Clients (no routers). Everything is properly connected, but the
    W2k client always return "unable to reach DHCP server". I am using AIX
    4.3.3.11.

    Using the DHCPSD log file, we can clearly see the DHCP protocol being
    done correctly (DISCOVER-OFFER-REQUEST-ACK), but the server ACK
    doesn't seem to be well received by the client. Here is a portion of
    the log file:
    ----
    [...]
    incoming message size = 300 bytes
    incoming DISCOVER message
    Found client record for 1-00065bc52900
    found address 10.11.12.25 in record
    [...]
    Using address 10.11.12.25 for 1-00065bc52900
    Address, 10.11.12.25 , for 1-00065bc52900 is valid
    [...]
    building OFFER message
    transmitting 300 bytes to 10.11.12.25:68
    [...]
    incoming message size = 307 bytes
    incoming REQUEST message
    client REQUEST from SELECT state
    Found client record for 1-00065bc52900
    found address 10.11.12.25 in record
    Binding client to 10.11.12.25
    building ACK message
    transmitting 300 bytes to 10.11.12.25:68
    exiting, returning 0
    waiting to receive data ...
    incoming message size = 307 bytes
    incoming REQUEST message
    client REQUEST from SELECT state
    Found client record for 1-00065bc52900
    found address 10.11.12.25 in record
    Binding client to 10.11.12.25
    building ACK message
    transmitting 300 bytes to 10.11.12.25:68
    exiting, returning 0
    waiting to receive data ...
    incoming message size = 307 bytes
    incoming REQUEST message
    client REQUEST from SELECT state
    [...]
    ------
    The client is always requesting the IP address and finally timeout.
    What's wrong?

    I've read that we need to add a 255.255.255.255 route to the host when
    using Windows DHCP clients. How can we do this in AIX? When I try
    "route add -host 255.255.255.255 -interface en1", it says
    "255.255.255.255: bad value".

    Can anybody help me?

    Thank you

    Martin

    Here is the dhcpsd.cnf that I use:
    #
    numLogFiles 1
    logFileSize 1000
    logFileName dhcpsd.log
    logItem SYSERR
    logItem OBJERR
    logItem PROTERR
    logItem WARNING
    logItem EVENT
    logItem ACTION
    logItem INFO
    logItem ACNTING
    logItem TRACE
    #
    #
    leaseTimeDefault 30 minutes
    leaseExpireInterval 3 minutes
    supportBOOTP no
    supportUnlistedClients no
    #
    #
    #
    option 3 10.11.12.1
    option 28 10.11.12.255
    option 33 255.255.255.255:255.255.255.255
    #
    network 10.11.12.0 10.11.12.10-10.11.12.50
    {
    client 1 00065bc52900 10.11.12.25 #
    client 1 00c03a120350 10.11.12.15 #
    }
    #
    Martin Trudeau Guest

  2. Similar Questions and Discussions

    1. Difference between dhcp clients
      Which of the dhcp client is the best for a router/firewall? dhcp-client, dhcp3-client, dhcpcd or udhcpc? Nic Cola -- Kettering's Observation:...
    2. dhcp server spans different subnets?
      I have a dhcp server sitting on a particular subnet. I would like a dhcp server for another subnet. Can the same server do it. How would this be...
    3. XP ICS DHCP Clients list
      I have ICS running on one of my XP Pro boxes so two other XP Pro boxes (one a wired desktop with a static IP and the other a wireless laptop with a...
    4. Cannot find DHCP server
      Can you ping the dhcp server? What device is actually performing dhcp?Are you running with a hub or a router? Are you using one of the XP machines...
    5. DHCP server problems
      On Tue, 01 Jul 2003 14:45:29 -0700, Bob Law <blaw@mkisserve.com> wrote: Your router is on a different subnet. Do you have a route defined to...
  3. #2

    Default Re: AIX DHCP Server and W2K Clients: help!

    Hello gtheir. Was just looking at your logfile, and was wondering what is
    going on within the W2k clients. Obviously, I can see that there is
    interactions between the /dev/eth0 interface, but does W2k have a debug mode so
    you could send us a trace of the TCP/ip data? Also, if not using a router, I
    would expect that you're using a hub? What firewall software are you using?
    One thing to check is to whether the propper UDP ports are open (don't remember
    specifically what they are for DHCP), but if not correctly configured, you
    won't have any success, since DHCP uses UDP to send/recv broadcast messages.
    Also, does the dhcp server advertise dns, etc. to the clients? Just something
    to think about here.
    --Erik
    Eriklovesleona Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139