Re: How do I permanently set the numerical ip in dmesg?

2008-11-24 Thread Fbsd1

Mike Price wrote:

How do I permanently set the numerical ip in dmesg?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"




If you mean the ip address to get from your isp? You have to purchase an 
 permanently assigned ip address from your ISP. If you mean ip address 
on a private Lan. You do that in your gateway dhcp server.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How do I permanently set the numerical ip in dmesg?

2008-11-24 Thread Kevin Kinsey

Mike Price wrote:

How do I permanently set the numerical ip in dmesg?


Hmm, I'm not sure what you are asking, *exactly*, because
dmesg(8) simply prints the collected messages given by the OS
kernel beginning with the most recent boot-up.

However, and I think maybe I'm correct in this guess, if
you are asking how to make the system remember the IP address
for an interface "across a reboot", try adding a line like
this to the file /etc/rc.conf:

ifconfig_xl0="192.168.0.1 netmask 255.255.255.0"

where "xl0" is the name of the interface.  You can
read the manpage for ifconfig(8) ("man ifconfig") and
possible the manpage for rc.conf(5) for more information.

HTH,

Kevin Kinsey
--
Many hands make light work.
-- John Heywood
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"