- eth0 - Intel
- eth1 - RTL8139
- eth2 - 3Com 3C590
- [root@dhcp]# ifconfig
-a
eth0 Link
encap:Ethernet
HWaddr 00:A0:C9:26:82:F6
inet addr:142.103.234.199 Bcast:142.103.234.255
Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:10 Base address:0xa000
eth1 Link
encap:Ethernet
HWaddr 00:50:BA:56:01:F4
inet addr:142.103.235.59 Bcast:142.103.235.255
Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:9 Base address:0x1f00
eth2 Link
encap:Ethernet
HWaddr 00:A0:24:59:DA:83
inet addr:142.103.236.5 Bcast:142.103.236.63
Mask:255.255.255.192
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:11 Base address:0x7f80
- /etc/dhcpd.conf
- option
domain-name-servers
142.103.236.1, 142.103.1.1, 137.82.1.1;
deny unknown-clients;
option
ntp-servers
137.82.1.3; # ntp.ubc.ca
option
time-offset
-28800; # Pacific
Standard
Time
shared-network "RESEARCH" {
subnet 142.103.234.0 netmask
255.255.255.0
{
option
routers
142.103.234.254; # default
gateway
option
subnet-mask
255.255.255.0;
option broadcast-address
142.103.234.255;
option
domain-name
"physics.ubc.ca";
default-lease-time 21600;
max-lease-time 604800;
#
#
Alex MacKay
host zodiac {
option host-name "zodiac.physics.ubc.ca";
hardware ethernet 00:10:a4:f7:90:9b;
fixed-address 142.103.234.1;
}
}
subnet 142.103.236.128 netmask
255.255.255.128
{
option
routers
142.103.236.254; # default
gateway
option
subnet-mask
255.255.255.128;
option broadcast-address
142.103.236.255;
option
domain-name
"astro.ubc.ca";
default-lease-time 21600;
max-lease-time 604800;
#
#
Paul Hickson
host alcor {
option host-name "alcor.physics.ubc.ca";
hardware ethernet 08:00:46:0f:2f:3b;
fixed-address 142.103.236.179;
}
}
}
shared-network "ADMIN" {
subnet 142.103.236.0 netmask
255.255.255.192
{
option
routers
142.103.236.62; # default
gateway
option
subnet-mask
255.255.255.192;
option broadcast-address
142.103.236.63;
option
domain-name
"physics.ubc.ca";
default-lease-time 21600;
max-lease-time 604800;
#
host rover {
option host-name "rover.physics.ubc.ca";
hardware ethernet 00:10:a4:f4:a6:0c;
fixed-address 142.103.236.50;
}
}
}
shared-network "TEACHING" {
subnet 142.103.235.0 netmask
255.255.255.0
{
option
routers
142.103.235.254; # default
gateway
option
subnet-mask
255.255.255.0;
option broadcast-address
142.103.235.255;
option
domain-name
"physics.ubc.ca";
default-lease-time 21600;
max-lease-time 604800;
#
host rovert{
option host-name "rovert.physics.ubc.ca";
hardware ethernet 00:10:a4:f4:a6:0c;
fixed-address 142.103.235.238;
}
}
}