Changeset 2362


Ignore:
Timestamp:
Jul 5, 2009, 8:21:41 PM (15 years ago)
Author:
broder
Message:

Revert the server identifier in the DHCP server. Including the server
ID implies that we're capable of handling unicast communication with
DHCP clients, which we're currently not.

This reverts commit 2361.

Location:
trunk/packages/invirt-dhcp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-dhcp/debian/changelog

    r2361 r2362  
    1 invirt-dhcp (0.0.3) unstable; urgency=low
    2 
    3   * Include the server identifier field in DHCPOFFERs (LP: #395696).
    4 
    5  -- Evan Broder <broder@mit.edu>  Sun, 05 Jul 2009 17:15:09 -0700
    6 
    71invirt-dhcp (0.0.2) unstable; urgency=low
    82
  • trunk/packages/invirt-dhcp/invirt-dhcpserver

    r2361 r2362  
    88from pydhcplib.type_strlist import strlist
    99import socket
    10 import os
    1110import IN
    1211
     
    2019                'router': config.dhcp.gateway,
    2120                'domain_name_server': ','.join(config.dhcp.dns),
    22                 'ip_address_lease_time': 60*60*24,
    23                 'server_identifier': socket.gethostbyname(os.uname()[1])}
     21                'ip_address_lease_time': 60*60*24}
    2422
    2523class DhcpBackend:
Note: See TracChangeset for help on using the changeset viewer.