From owner-freebsd-questions@FreeBSD.ORG Fri Mar 25 12:56:34 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 579231065674 for ; Fri, 25 Mar 2011 12:56:34 +0000 (UTC) (envelope-from jalmberg@identry.com) Received: from out2a.electric.net (smtp-out-31.electric.net [72.35.23.31]) by mx1.freebsd.org (Postfix) with ESMTP id 186308FC08 for ; Fri, 25 Mar 2011 12:56:33 +0000 (UTC) Received: from 1Q369A-0007uQ-Vn by out2a.electric.net with emc1-ok (Exim 4.72) (envelope-from ) id 1Q369B-0007vH-Ts for freebsd-questions@freebsd.org; Fri, 25 Mar 2011 05:29:45 -0700 Received: by emcmailer; Fri, 25 Mar 2011 05:29:45 -0700 Received: from [10.86.5.46] (helo=fuse246.electric.net) by out2a.electric.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1Q369A-0007uQ-Vn for freebsd-questions@freebsd.org; Fri, 25 Mar 2011 05:29:44 -0700 Received: from mailanyone.net by fuse246.electric.net with esmtpa (MailAnyone extSMTP jalmberg@identry.com) id 1Q3699-0006o3-JC for freebsd-questions@freebsd.org; Fri, 25 Mar 2011 05:29:44 -0700 Message-ID: <4D8C8AC7.9020209@identry.com> Date: Fri, 25 Mar 2011 08:29:59 -0400 From: John Almberg User-Agent: Postbox 2.1.4 (Macintosh/20110308) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Outbound-IP: 10.86.5.46 X-Env-From: jalmberg@identry.com X-PolicySMART: 1184787 X-Virus-Status: Scanned by VirusSMART (c) Subject: IP Address not working? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 12:56:34 -0000 I have a Freebsd box that has had just one IP address for a long time. I am trying to add another to run a website with it's own IP, ssl cert, etc. I've added IP addresses to boxes before without problem, but either this box has a problem, or I've forgotten something important (probably the latter.) on# uname -a FreeBSD on.identry.com 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 07:18:07 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 I have the new address (66.111.0.251) configured: on# ifconfig em0: flags=8843 metric 0 mtu 1500 options=19b ether 00:0e:0c:ea:af:c2 inet 66.111.0.250 netmask 0xffffffc0 broadcast 66.111.0.255 inet 66.111.0.251 netmask 0xffffffff broadcast 66.111.0.251 media: Ethernet autoselect (100baseTX ) status: active The interface responds to pings: $ ping 66.111.0.251 PING 66.111.0.251 (66.111.0.251): 56 data bytes 64 bytes from 66.111.0.251: icmp_seq=0 ttl=20 time=16.474 ms And IFF I am logged into the server I can access the website using lynx, or by using telnet to access the page: on# telnet test.gradedstamps.com 80 Trying 66.111.0.251... Connected to test.gradedstamps.com. Escape character is '^]'. GET /test.html HTTP/1.1 host: test.gradedstamps.com HTTP/1.1 200 OK Date: Fri, 25 Mar 2011 12:25:40 GMT Server: Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8e PHP/5.2.12 with Suhosin-Patch Last-Modified: Fri, 25 Mar 2011 12:17:16 GMT ETag: "439155-63-49f4d93188b00" Accept-Ranges: bytes Content-Length: 99 Content-Type: text/html Test Page Hello, world However, I cannot access the website from outside the box, even with PF turned off: ~ 510 $ telnet test.gradedstamps.com 80 Trying 66.111.0.251... telnet: connect to address 66.111.0.251: Connection refused telnet: Unable to connect to remote host ~ 511 $ I'm stumped. Can anyone give me a clue where to look next? Thanks: John