![]() |
|
|||||||
| StarOS™ Releases Latest information on new product releases or updates. |
![]() |
|
|
Thread Tools | Display Modes |
|
#51
|
||||
|
||||
|
Here is an updated example working template for ISC dhcpd that takes into account its newfound pickiness about multiple IP addresses on your interfaces.
Note your existing configuration can probably stay roughly the same, just encapsulate your existing "subnet ip netmask { }" entry with "shared-network blahblah { }" and mention the other IP addresses you have on your interface with subnet ip netmask { } entries as shown in the example below. Code:
option domain-name "domain.com";
option domain-name-servers 1.2.3.4, 5.6.7.8;
server-name "ap.domain.com";
get-lease-hostnames true;
deny bootp;
authoritative;
one-lease-per-client true;
ddns-update-style none;
ddns-updates off;
default-lease-time 3600;
max-lease-time 3600;
min-lease-time 3600;
subnet 192.168.4.0 netmask 255.255.255.0 {
range 192.168.4.100 192.168.4.199;
option broadcast-address 192.168.4.255;
option subnet-mask 255.255.255.0;
option routers 192.168.4.1;
}
shared-network My-Multi-Subnet-Interface {
subnet 172.16.0.0 netmask 255.255.255.0 { } # no addresses to hand out
subnet 172.16.1.0 netmask 255.255.255.0 { # 100 addresses
range 172.16.1.100 172.16.1.200;
option routers 172.16.1.1;
}
}
__________________
StarOS Community Wiki: http://staros.tog.net/ |
|
#52
|
||||
|
||||
|
I've also updated the article here in the wiki:
http://staros.tog.net/wiki/DHCP_Setup
__________________
StarOS Community Wiki: http://staros.tog.net/ |
|
#53
|
|||
|
|||
|
Trying to install full duplex on 2 1.4.18 wp188 - 4 sr5 miniPCI cards.
It seems that the FD button has disappeared. I cannot find any reference on the forum, can you help
__________________
Jacques Lagacé Amicus |
|
#54
|
|||
|
|||
|
FD is not yet supported in 1.4.x
__________________
Wiki: http://staros.tog.net/wiki/Main_Page Why not share some of your knowledge with the community? |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| StarV3 v1.3.13 build 2743 has been released | tony | StarOS™ Releases | 25 | 01-24-2008 02:32 PM |
| StarV3 v1.3.8 build 2694 has been released. | tony | StarOS™ Releases | 66 | 01-18-2008 04:04 PM |
| StarV3 v1.3.7 build 2677 has been released. | tony | StarOS™ Releases | 70 | 12-13-2007 09:32 AM |
| StarV3 v1.1.11 build 1741 has been released. | tony | StarOS™ Releases | 49 | 01-28-2007 11:05 PM |
| StarV3 WAR Edition v1.0.0 build 1090 has been released. | tony | StarOS™ Releases | 30 | 06-11-2006 07:49 PM |