Ubuntu Pastebin

Paste from suntux at Wed, 15 Jun 2016 15:22:12 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
/etc/dhcp/dhcp.conf

ddns-update-style none;
option domain-name-servers 8.8.8.8, 4.4.4.4;

option subnet-mask 255.255.255.0;
option broadcast-address 192.168.137.255;
option routers 192.168.137.1;

option ntp-servers 192.168.137.1;
option netbios-name-servers 192.168.137.1;
option netbios-node-type 2;
default-lease-time 86400;
max-lease-time 86400;


subnet 192.168.137.0 netmask 255.255.255.0 {
range 192.168.137.10 192.168.137.100
option domain-name-servers 192.168.137.1, 8.8.8.8;
}
Download as text