NetReg: Making NetReg work with global & non-global subnets

New Message Reply Date view Thread view Subject view Author view Attachment view

From: Lang, Mike (mike.lang@uconn.edu)
Date: Wed May 23 2001 - 08:30:29 CDT


Just want to make sure I'm going about this the right way.

In order to use NetReg with a globally routed subnet and a non-globally
routed subnet I would:

1.) Set up a multi-netted vlan on the router such as:
        137.99.156.0/24 [Global Subnet]
        10.4.1.0/24 [Non-Global Subnet]

2.) Is this how the dhcp.conf would look?
        fake-dns -> 137.99.156.20
        real-dns -> 137.99.156.30

subnet 10.4.1.0 netmask 255.255.255.0 {
  option routers 10.4.1.1;
  # Unknown clients get this pool.
  pool {
    option domain-name-servers 137.99.156.20;
    max-lease-time 120;
    default-lease-time 120;
    range 10.4.1.2 10.4.1.254;
    allow unknown clients;
  }
}

subnet 137.99.156.0 netmask 255.255.255.0 {
  option routers 137.99.156.1;
  # Known clients get this pool.
  pool {
    option domain-name-servers 137.99.156.30;
    max-lease-time 28800;
    default-lease-time 28800;
    range 137.99.156.2 137.99.156.254;
    deny unknown clients;
  }
}

Is this correct? Is this the best way to implement NetReg on networks?
When I define different globally-routed subnets should I mult-net with the
same temp (10-space) subnet?

Let me know what you think!

- Mike
**********************************************************************
To unsubscribe from this list, send an e-mail message to
majordomo@southwestern.edu containing a single line with the words:
unsubscribe netreg
Send requests for assistance to: owner-netreg@southwestern.edu
**********************************************************************


New Message Reply Date view Thread view Subject view Author view Attachment view

This archive was generated by hypermail 2.1.4 : Thu Aug 12 2004 - 12:01:35 CDT