December 2000
Intermediate to advanced
800 pages
22h 41m
English
A shared network statement is used to group two or more subnets. If each department is assigned a subnet of 30 hosts, but a department grows too large and requires two subnets, these two subnets might be grouped together and served by the same DHCP server (see Listing 23.4).
shared-network MARKET-NET {
option domain-name market.void.org ;
option routers 192.168.1.1;
subnet 192.168.1.0 netmask 255.255.255.224 {
range 192.168.1.3 192.168.1.30;
option routers 192.168.1.2
}
subnet 192.168.1.32 netmask 255.255.255.224 {
range 192.168.1.35 192.168.1.62;
option routers 192.168.1.33;
}
}
|
In Listing 23.4, the shared network has its own domain name below void.org of market.void.org. ...
Read now
Unlock full access