From owner-freebsd-questions@FreeBSD.ORG Tue May 4 14:31:35 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9AC71065673 for ; Tue, 4 May 2010 14:31:35 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id A477D8FC12 for ; Tue, 4 May 2010 14:31:35 +0000 (UTC) Received: from maia.hub.org (maia-3.hub.org [200.46.204.243]) by hub.org (Postfix) with ESMTP id B50103455A43 for ; Tue, 4 May 2010 11:31:33 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by maia.hub.org (mx1.hub.org [200.46.204.243]) (amavisd-maia, port 10024) with ESMTP id 03041-02 for ; Tue, 4 May 2010 14:31:33 +0000 (UTC) Received: by hub.org (Postfix, from userid 1002) id 8F4D53455A3D; Tue, 4 May 2010 11:31:33 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id 8EF823455A16 for ; Tue, 4 May 2010 11:31:33 -0300 (ADT) Date: Tue, 4 May 2010 11:31:33 -0300 (ADT) From: "Marc G. Fournier" X-X-Sender: scrappy@hub.org To: freebsd-questions@freebsd.org Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: 6-STABLE + quagga/zebra == Can't bind to stream socket 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: Tue, 04 May 2010 14:31:35 -0000 In order to deal with a lack of layer 3 switch, last week I installed Quagga/OSPF on all of my servers, and got it configured. Works *great* on my 7.x servers, but, using the same config (and port), my 6-STABLE boxes all generate the same error when I try and start up zebra: 2010/05/01 01:44:18 ZEBRA: Can't bind to stream socket: Can't assign requested address 2010/05/01 01:44:18 ZEBRA: zebra can't provice full functionality due to above error 2010/05/01 01:44:18 ZEBRA: Zebra 0.99.15 starting: vty@2601 So ospfd isn't able to announce / receive routes ... My zebra.conf file looks like: ! interface em0 no shutdown ip address 200.46.204.60/24 ! interface em1 ! interface lo0 ! ip route 0.0.0.0/0 200.46.208.1 ! ip forwarding ! line vty The top bit of ifconfig shows: ifconfig em0 | less em0: flags=8943 mtu 1500 options=1b inet 200.46.204.60 netmask 0xffffff00 broadcast 200.46.204.255 inet 200.46.208.60 netmask 0xffffff00 broadcast 200.46.208.255 inet 192.168.1.7 netmask 0xffffff00 broadcast 192.168.1.255 inet 200.46.204.183 netmask 0xffffffff broadcast 200.46.204.183 Other then appropriate interface/IP on the 7-STABLE boxes, the 7-STABLE boxes all work fine ... is there an issue with em/fxp devices and zebra on 6-STABLE/i386? Or am I overlooking something in my config? Thx ...