Re: troubleshooting network settings

2006-06-08 Thread Malcolm Fitzgerald
On 08/06/2006, at 12:06 AM, Alex Zbyslaw wrote: Malcolm Fitzgerald wrote: Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22 (KPackage

Re: troubleshooting network settings

2006-06-08 Thread Alex Zbyslaw
Malcolm Fitzgerald wrote: On 08/06/2006, at 12:06 AM, Alex Zbyslaw wrote: Malcolm Fitzgerald wrote: On 29/05/2006, at 11:37 PM, Kevin Kinsey wrote: Hmm, is that all? Unusual; I'd think the loopback _should_ be set up correctly. `ifconfig lo0 inet 127.0.0.1 netmask 255.255.255.0` ??

Re: troubleshooting network settings

2006-06-07 Thread Malcolm Fitzgerald
Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22 (KPackage tries to use ssh) On 29/05/2006, at 11:37 PM, Kevin Kinsey wrote: Hmm, is

Re: troubleshooting network settings

2006-06-07 Thread Alex Zbyslaw
Malcolm Fitzgerald wrote: Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22 (KPackage tries to use ssh) On 29/05/2006, at 11:37 PM,

RE: troubleshooting network settings

2006-06-07 Thread Steve Bertrand
Hmm, is that all? Unusual; I'd think the loopback _should_ be set up correctly. `ifconfig lo0 inet 127.0.0.1 netmask 255.255.255.0` ?? If that fixes it, then we have to figure out *why* it's not being doing automatically. Problem during init/rc, most likely ... weird.

Re: troubleshooting network settings

2006-06-07 Thread Malcolm Fitzgerald
On 08/06/2006, at 2:42 AM, Steve Bertrand wrote: Hmm, is that all? Unusual; I'd think the loopback _should_ be set up correctly. `ifconfig lo0 inet 127.0.0.1 netmask 255.255.255.0` ?? If that fixes it, then we have to figure out *why* it's not being doing automatically. Problem

Re: troubleshooting network settings

2006-06-01 Thread Mark Evenson
Malcolm Fitzgerald wrote: On 31/05/2006, at 11:30 PM, Steve Bertrand wrote: Take a look at the 'ServerName' directive in your httpd.conf file. Try uncommenting said directive, and put your IP address beside it. This line is already in place ServerName 127.0.0.1:80 I can confirm this

RE: troubleshooting network settings

2006-06-01 Thread Steve Bertrand
Take a look at the 'ServerName' directive in your httpd.conf file. Try uncommenting said directive, and put your IP address beside it. This line is already in place ServerName 127.0.0.1:80 What about something like: ServerName 192.168.1.10:80 ...or whatever your LAN/WAN IP is?

Re: troubleshooting network settings

2006-06-01 Thread Malcolm Fitzgerald
On 02/06/2006, at 10:54 AM, Steve Bertrand wrote: Take a look at the 'ServerName' directive in your httpd.conf file. Try uncommenting said directive, and put your IP address beside it. This line is already in place ServerName 127.0.0.1:80 What about something like: ServerName

RE: troubleshooting network settings

2006-05-31 Thread Steve Bertrand
There we have it. Apache is unable to resolve bsd-box. This hostname should be resolvable, otherwise Apache will not work. Adding it to /etc/hosts is the easiest way: 192.168.1.104 bsd-box bsd-box.yourdomain.com This line was already in /etc/hosts; 127.0.0.1

Re: troubleshooting network settings

2006-05-31 Thread Malcolm Fitzgerald
On 31/05/2006, at 11:30 PM, Steve Bertrand wrote: Take a look at the 'ServerName' directive in your httpd.conf file. Try uncommenting said directive, and put your IP address beside it. This line is already in place ServerName 127.0.0.1:80 malcolm

Re: troubleshooting network settings

2006-05-30 Thread Kevin Kinsey
Malcolm Fitzgerald wrote: Malcolm Fitzgerald wrote: Running that command returns this: ifconfig: -inet: bad value Bah! I'm on the road too much lately. No dash before inet ... KDK -- At social gatherings, I would amuse everyone by standing uponst the coffee table and striking

Re: troubleshooting network settings

2006-05-30 Thread Malcolm Fitzgerald
On 30/05/2006, at 10:29 PM, Kevin Kinsey wrote: Malcolm Fitzgerald wrote: Malcolm Fitzgerald wrote: Running that command returns this: ifconfig: -inet: bad value Bah! I'm on the road too much lately. No dash before inet ... here's the output bsd-box# ifconfig lo0 inet 127.0.0.1

Re: troubleshooting network settings

2006-05-30 Thread Jorn Argelo
Malcolm Fitzgerald wrote: On 30/05/2006, at 10:29 PM, Kevin Kinsey wrote: Malcolm Fitzgerald wrote: Malcolm Fitzgerald wrote: Running that command returns this: ifconfig: -inet: bad value Bah! I'm on the road too much lately. No dash before inet ... here's the output [snip] [Tue

Re: troubleshooting network settings

2006-05-30 Thread Kevin Kinsey
Malcolm Fitzgerald wrote: On 30/05/2006, at 10:29 PM, Kevin Kinsey wrote: Malcolm Fitzgerald wrote: Malcolm Fitzgerald wrote: Running that command returns this: ifconfig: -inet: bad value Bah! I'm on the road too much lately. No dash before inet ... here's the output bsd-box#

Re: troubleshooting network settings

2006-05-30 Thread Malcolm Fitzgerald
bsd-box# ifconfig lo0 inet 127.0.0.1 netmask 255.255.255.0 bsd-box# ifconfig -a rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500 options=8VLAN_MTU inet6 fe80::2e0:4cff:fe08:e02a%rl0 prefixlen 64 scopeid 0x1 inet 192.168.1.104 netmask 0xff00 broadcast 192.168.1.255 ether

Re: troubleshooting network settings

2006-05-29 Thread GiL Virtucio
Sent: Monday, May 29, 2006 9:48 AM Subject: Re: troubleshooting network settings Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22

Re: troubleshooting network settings

2006-05-29 Thread Kevin Kinsey
Malcolm Fitzgerald wrote: On 29/05/2006, at 1:10 PM, Kevin Kinsey wrote: Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22 (KPackage

Re: troubleshooting network settings

2006-05-29 Thread Malcolm Fitzgerald
On 29/05/2006, at 11:37 PM, Kevin Kinsey wrote: Malcolm Fitzgerald wrote: On 29/05/2006, at 1:10 PM, Kevin Kinsey wrote: Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!)

troubleshooting network settings

2006-05-28 Thread Malcolm Fitzgerald
I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22 (KPackage tries to use ssh) What can cause these problems? How can I troubleshoot them? I am very new to freeBSD,

Re: troubleshooting network settings

2006-05-28 Thread Kouji Ito
Check /etc/rc.conf inetd_enable=YES Check /etc/inetd.conf sshstream tcp nowait root/usr/sbin/sshd sshd -i -4 Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is

Re: troubleshooting network settings

2006-05-28 Thread Malcolm Fitzgerald
Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22 (KPackage tries to use ssh) What can cause these problems? How can I troubleshoot them? I

Re: troubleshooting network settings

2006-05-28 Thread Kouji Ito
Sorry. (1) Commented /etc/inetd.conf #sshstream tcp nowait root/usr/sbin/sshd sshd -i -4 (2) Add /etc/rc.conf sshd_enable=YES (3) Send HUP signal to inetd # pkill -HUP inetd (4) Start sshd # cd /etc/rc.d # sh sshd start (5) Try ssh login # ssh

Re: troubleshooting network settings

2006-05-28 Thread YTResearch
Do you have the firewall enabled in rc.conf (ipfw)? On May 28, 2006, at 5:34 PM, Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22

Re: troubleshooting network settings

2006-05-28 Thread Kevin Kinsey
Malcolm Fitzgerald wrote: I am running freeBSD v6.0 security on a home network behind an adsl router. I cannot connect to localhost from a browser (apache is running!) I cannot connect to localhost port 22 (KPackage tries to use ssh) What can cause these problems? How can I troubleshoot them?