what about DHCP

Zeus

Registered
I'm lookin for a DHCP server in Mac OS X ... where to find it ? is built in os x ??
and how to make my ethernet to have 2 ip address ??

thanks
 
to do these things, you'll need to first enable the root user in the netinfo control panel, or become farmilliar with the command 'sudo'.

Logged in as an admin-level user, launch the application located in /Applications/Utilities called Terminal (not to be confused with 'Console').

once in, type ifconfig -a
you will see all your network interfaces come up.
here's how to add an alias to a given interface.
I'll use en1 for example:
Code:
%sudo ifconfig en1 alias 192.168.1.166
now ifconfig -a will show two ip addresses for en1.

As for DHCP, you need what is refered to as 'dhcpd'. I've heard of people getting the bsd dhcpd to compile on osx. Maybe someone will post a link here to a how to - I've never done it.

don't dispair - I've gotten routers booting off my mac with bootpd and tftpd - I know it can be done!
 
Back
Top