Re: Setting up network

2005-04-01 Thread Daniel Bye
On Thu, Mar 31, 2005 at 10:26:13PM -0500, Anthony M. Agelastos wrote: Hello all, While we are on the topic, after the hostname and domain have been setup from the initial installation, how can they be changed? I went through the FreeBSD manual and some Google searching and did not come

Setting up network

2005-03-31 Thread Jonathan Arnold
Something I've never been able to figure out. When installing a new machine, and you come to the Network Configuration dialog, what do you put in for the Host: and Domain: if it is a machine on an internal network (ie., 192.168.1.149)? Does it matter? Just give it a simple hostname and be done

Re: Setting up network

2005-03-31 Thread Tomas Quintero
Essentially, the host is the 'name of the machine' if you will. So if you want, you can name it betty, or uberserver1. It doesn't matter. For that fact, as far as I really know, nor does the domain matter. However commonly when naming servers and such, they have corresponding names and domains so

Re: Setting up network

2005-03-31 Thread Charles Swiger
On Mar 31, 2005, at 4:52 PM, Jonathan Arnold wrote: Something I've never been able to figure out. When installing a new machine, and you come to the Network Configuration dialog, what do you put in for the Host: and Domain: if it is a machine on an internal network (ie., 192.168.1.149)? Does it

Re: Setting up network

2005-03-31 Thread Marty Landman
At 05:13 PM 3/31/2005, Tomas Quintero wrote: In short, no, the names do not matter for your internal home network. I would just add that on your internal network you may literally use any valid name. I have an office network and several of the boxes run apache, providing me with a web

Re: Setting up network

2005-03-31 Thread Anthony M. Agelastos
Hello all, While we are on the topic, after the hostname and domain have been setup from the initial installation, how can they be changed? I went through the FreeBSD manual and some Google searching and did not come up with anything that made any sense. I assume there are files to be edited,

Re: setting up network virtual hosts (ifconfig)

2004-03-09 Thread Matthew Seaman
On Mon, Mar 08, 2004 at 04:50:47PM -0800, Jason Williams wrote: e.g. something like this works fine here : # /etc/rc.local : ifconfig fxp0 alias 192.168.2.222 netmask 0x That seemed to have done the trick, manually. Im guessing, I could put the same thing in my rc.conf file, but

Re: setting up network virtual hosts (ifconfig)

2004-03-09 Thread Chuck Swiger
Jason Williams wrote: That seemed to have done the trick, manually. Im guessing, I could put the same thing in my rc.conf file, but with proper syntax: ifconfig_fxp0_alias0=inet 192.168.2.222 netmask 0xff On a side note, if you set something up in rc.conf, how can you manually start it

setting up network virtual hosts (ifconfig)

2004-03-08 Thread Jason Williams
Hello everyone, Just was wondering about setting up virtual hosts on NIC cards on my FreeBSD box. I read the handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/configtuning-virtual-hosts.html Seems simple enough, but I seemed to be having a bit of a problem. For instance, I

Re: setting up network virtual hosts (ifconfig)

2004-03-08 Thread albi
On Mon, 08 Mar 2004 16:07:41 -0800 Jason Williams [EMAIL PROTECTED] wrote: For instance, I had this in my rc.conf: ifconfig_fxp0=inet 192.168.1.91 netmask 255.255.255.0 and tried to add this: ifconfig_fxp0_alias0=inet 192.168.1.75 netmask 255.255.255.0 e.g. something like this works fine

Re: setting up network virtual hosts (ifconfig)

2004-03-08 Thread Jason Williams
e.g. something like this works fine here : # /etc/rc.local : ifconfig fxp0 alias 192.168.2.222 netmask 0x That seemed to have done the trick, manually. Im guessing, I could put the same thing in my rc.conf file, but with proper syntax: ifconfig_fxp0_alias0=inet 192.168.2.222 netmask

Re: setting up network virtual hosts (ifconfig)

2004-03-08 Thread Mike Maltese
On a side note, if you set something up in rc.conf, how can you manually start it without having to reboot? Well that depends on what it is, but if you want to just go through everything you can do this: # shutdown now This will put you in single-user mode. Hit enter for the default shell,

Re: setting up network virtual hosts (ifconfig)

2004-03-08 Thread Jason Williams
Well that depends on what it is, but if you want to just go through everything you can do this: # shutdown now This will put you in single-user mode. Hit enter for the default shell, then just log out (Ctrl-D) and that will fire up init and run through the rc system again. What if you are doing

Re: setting up network virtual hosts (ifconfig)

2004-03-08 Thread Mike Maltese
What if you are doing this remotely? :) Any other way to get around that? Not unless you're connected to another machine and connected to the target box through a serial console. In this case you're probably better of making the change manually. What is it you want to reconfigure?