Riverstone Networks WICT1-12 Network Router User Manual


 
17-58 Riverstone Networks RS Switch Router User Guide Release 8.0
Configuring L3 Label Switched Paths MPLS Configuration
Configuring Shared Networks with Cisco Network Registrar
Network Registrar supports multiple logical subnets on the same physical network segment. If you have several logical
subnets on the same physical network (for example, 192.168.1 and 192.168.46), you might want to configure DHCP
so that it offers addresses from both pools. By pooling addresses, you can combine two class C networks, or a Class B
and Class C network.
To join two logical subnets, first create two scopes, then select one to be the primary and the other to be the secondary.
Any client on the physical network will then obtain a lease from either scope on a round-robin basis (as long as the
client does not have a reservation or previous lease information).
1.
Create a second scope that you want to make a secondary scope.
option routers 160.10.1.1;
option time-servers 150.10.1.2;
option ntp-servers 150.10.1.2;
next-server 150.10.1.2;
option time-offset -25200;
}
shared-network MULTIPLE-ISP {
#AOL
#ip-range 160.11.1.10-160.11.5.254
subnet 160.11.0.0 netmask 255.255.0.0 {
option routers 160.10.1.1;
option domain-name-servers xxx.xxx.xxx.xxx;
option domain-name "AOL.com"
}
host AOL1 { hardware ethernet 00:e0:6f:02:f5:09;
fixed-address 160.11.1.10;
}
#ATT
#ip-range 160.12.1.10-160.12.5.254
subnet 160.12.0.0 netmask 255.255.0.0 {
option routers 160.10.1.1;
option domain-name-servers xxx.xxx.xxx.xxx;
option domain-name "ATT.com"
}
host ATT { hardware ethernet 00:a0:7f:32:f4:09;
fixed-address 160.12.1.10;
}
}