There are some warning message while doing /etc/init.d/networking restart
Code:
Internet Systems Consortium DHCP Client V3.1.1
Copyright 2004-2008 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/
/etc/dhcp3/dhclient.conf line 25: semicolon expected.
supercede interface-mtu
^
/etc/dhcp3/dhclient.conf line 26: semicolon expected.
}
^
/etc/dhcp3/dhclient.conf line 32: unterminated interface declaration.
^
Here's my /etc/dhcp3/dhclient.conf
Code:
# Configuration file for /sbin/dhclient, which is included in Debian's
# dhcp3-client package.
#
# This is a sample configuration file for dhclient. See dhclient.conf's
# man page for more information about the syntax of this file
# and a more comprehensive list of the parameters understood by
# dhclient.
#
# Normally, if the DHCP server provides reasonable information and does
# not leave anything out (like the domain name, for example), then
# few changes must be made to this file, if any.
#
option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
send host-name "<hostname>";
#send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
#send dhcp-lease-time 3600;
#supersede domain-name "fugue.com home.vix.com";
#prepend domain-name-servers 127.0.0.1;
#new
interface "eth0" {
default interface-mtu 1400;
supercede interface-mtu 1400; line 25
} line 26
#new -- end here
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope, interface-mtu,
rfc3442-classless-static-routes, ntp-servers; line 32
Is there something wrong with the syntax? Also, what is the problem in line 32?

Originally Posted by
Iowan
The mtu option may only be available when using manual configuration in /etc/network/interfaces.
Thanks for your reminder.
Bookmarks