My Opera is closing 1st of March

M.I.T = Multimedia IT dept.

Subscribe to RSS feed

linux dhcp setup for dhcp relay from L3 switch

, ,

(delivery of IPs is determined by which VLAN of the dhcp request is from)

subnet 192.168.2.0 netmask 255.255.255.0 {
range 192.168.2.10 192.168.2.20;
option routers 192.168.2.2;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.2.255;
option domain-name-servers 168.95.1.1, 139.175.10.20;
option domain-name "vic2";
default-lease-time 604800;
max-lease-time 259200;
}

subnet 192.168.4.0 netmask 255.255.255.0 {
range 192.168.4.10 192.168.4.20;
option routers 192.168.4.1;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.4.255;
option domain-name-servers 168.95.1.1, 139.175.10.20;
option domain-name "vic4";
default-lease-time 604800;
max-lease-time 259200;
}

# Static routes are also needed for the DHCP server
# ip route add 192.168.6.0/24 dev eth1
# ip route add 192.168.4.0/24 dev eth1
February 2014
M T W T F S S
January 2014March 2014
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