From owner-freebsd-questions@FreeBSD.ORG Sun May 23 21:24:23 2010 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 616C31065670 for ; Sun, 23 May 2010 21:24:23 +0000 (UTC) (envelope-from woodquinn@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id B236F8FC08 for ; Sun, 23 May 2010 21:24:22 +0000 (UTC) Received: by fxm4 with SMTP id 4so2762609fxm.13 for ; Sun, 23 May 2010 14:24:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=4/aAAEzE6kXvNBySRS7j05/KeePKUn+R50W5Krg658g=; b=Rmct59MJS8zmgeQ+kG0L+4pUwYKNUfmn17xoV/bOGAQIhEMTpF7O6+LYtg3NOAB5+1 ri63OMPGDvXhQjF8ADhzZmubNpytrz7Fi+giJf+VMCAaU5SmV1NEjLWe+CCcvzV/04wo OvR0a7wZf+t5Ti1YvHCFZjBW644hWVIz9v0OU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=lOCEWZKPloVAT2kWCssRnyoFjsvk0aLN5P6BsCVd/lgjQF6eYDvNuthPRybXOim1Ho m2kCZ7QwSLzaeozK1dDJNTknXBfalqZzLG0OCxY71jPqir3btYQhF5S7G3lPeN2R/KAd ORUuYvNtqVOgs3QAq/oxRkKX6eQ7Ao69nQ2+E= MIME-Version: 1.0 Received: by 10.102.15.22 with SMTP id 22mr3823578muo.7.1274648352570; Sun, 23 May 2010 13:59:12 -0700 (PDT) Received: by 10.103.243.10 with HTTP; Sun, 23 May 2010 13:59:12 -0700 (PDT) Date: Sun, 23 May 2010 20:59:12 +0000 Message-ID: From: Quinn Wood To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Failover with Static IP 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: Sun, 23 May 2010 21:24:23 -0000 Is it possible to set up failover (wired NIC master and wireless NIC failover) with a static IP address instead of DHCP? This is what I tried but it didn't work (I have no network associations, neither wired nor wireless.) echo 'if_ath_load="YES" wlan_wep_load="YES" wlan_ccmp_load="YES" wlan_tkip_load="YES" if_lagg_load="YES" ' >> /boot/loader.conf echo 'hostname="copymy-laptop" ifconfig_re0="inet 192.168.0.50 netmask 255.255.255.0" ifconfig_re0="up" ifconfig_ath0="ether 00:1F:16:6B:1D:9D" wlans_ath0="wlan0" ifconfig_wlan0="ssid Curiodyne wepmode on weptxkey 1 wepkey 1:0xB21BD91F79" cloned_interfaces="lagg0" ifconfig_lagg0="laggproto failover laggport re0 laggport wlan0 inet 192.168.0.50 netmask 255.255.255.0" defaultrouter="192.168.0.1"' >> /etc/rc.conf echo 'nameserver 192.168.0.1' >> /etc/resolv.conf This is ALL I did, after a fresh install of a base 8.0 system and nothing else configured. Let me know if I did something wrong...