Hi:
Suppose if I have a DHCP server with a pool of address from 192.168.0.1-192.168.0.100
And for interface em0 I want to request the address of 192.168.0.50, is this possible with FreeBSD?
I know I can do:
in dhclient.conf on other OS, is there a similar command like this for FreeBSD?
Or do I simply just do:
?
Thanks
Bill
Suppose if I have a DHCP server with a pool of address from 192.168.0.1-192.168.0.100
And for interface em0 I want to request the address of 192.168.0.50, is this possible with FreeBSD?
I know I can do:
Code:
interface "em0" {
send host-name "myhostname";
send dhcp-requested-address 192.168.0.50;
}
in dhclient.conf on other OS, is there a similar command like this for FreeBSD?
Or do I simply just do:
Code:
ifconfig em0 192.168.0.50
Thanks
Bill