Ian Ross wrote:

> Is it possible to change the static range of IP addresses within the
> Dachstein disk firewall to match up with our existing range of ip addresses?
>
> Regards
>
> Ian Ross

Not sure what you mean - but I assume you are talking about dhcpd.
edit /etc/dhcpd.conf and make appropriate changes
The range of IPs assigned statically should be outside of the range statement.
dhcpd will still assign a static ip inside the range but will print out an error
message.

subnet 192.168.1.0 netmask 255.255.255.0 {
    option routers 192.168.1.254;
    option domain-name "private.network";
    option domain-name-servers 192.168.1.254;
    range 192.168.1.10 192.168.1.100;
host windowsbox  {
        hardware ethernet 00:00:d0:d6:de:de;
        fixed-address 192.168.1.5;
        }
)

If what you mean is that your network uses a different set of provate ips:

if you use dnscache:
you will need to change
# cd /etc/dnscache/root/ip

# ls
127.0.0.1  192.168

# touch 172.16.5. or whatever your network is.

Of course you have to make the appropriate changes in network.conf and weblet
for a different set of private ips.

Victor McAllister



_______________________________________________
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user

Reply via email to