From owner-freebsd-net@FreeBSD.ORG Mon May 3 19:53:54 2010 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FBCD106566C for ; Mon, 3 May 2010 19:53:54 +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 3C9648FC15 for ; Mon, 3 May 2010 19:53:53 +0000 (UTC) Received: from maia.hub.org (maia-4.hub.org [200.46.204.183]) by hub.org (Postfix) with ESMTP id 6AB273455A4B for ; Mon, 3 May 2010 16:37:27 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by maia.hub.org (mx1.hub.org [200.46.204.183]) (amavisd-maia, port 10024) with ESMTP id 12913-08 for ; Mon, 3 May 2010 19:37:27 +0000 (UTC) Received: by hub.org (Postfix, from userid 1002) id 3608F34559BB; Mon, 3 May 2010 16:37:27 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id 341423455986 for ; Mon, 3 May 2010 16:37:27 -0300 (ADT) Date: Mon, 3 May 2010 16:37:27 -0300 (ADT) From: "Marc G. Fournier" X-X-Sender: scrappy@hub.org To: freebsd-net@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 + zebra == Can't bind to stream socket X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2010 19:53:54 -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 ...