From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1P3YKq-0002uL-0f for garchives@archives.gentoo.org; Wed, 06 Oct 2010 18:03:24 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB48FE0998; Wed, 6 Oct 2010 18:02:45 +0000 (UTC) Received: from mail-gy0-f181.google.com (mail-gy0-f181.google.com [209.85.160.181]) by pigeon.gentoo.org (Postfix) with ESMTP id BBECEE09C9 for ; Wed, 6 Oct 2010 18:02:45 +0000 (UTC) Received: by gyf1 with SMTP id 1so5091708gyf.40 for ; Wed, 06 Oct 2010 11:02:45 -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=561QfTuywJe6sFJfzF1iSag0JlbMBnvGkANpp9o9AQo=; b=Z4BYq0BkLabhymagY2v2oVHbyrivWsr8nPXzf8Mdl/t9WoJD03Q0ZLJkWgLQ4LGltP KPXeX5dWI1kHz980fYAC7u9SfXzNOhNiNK97O1Wc8HRlkifSB8KAZTEggAyabGyoeR9K qYRvHCNMCNFQBX2aB5ttcNT+2b92gw80QRBCo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=TCKhkIQ4RIWR3DTjrgl7SAN7EbAD0/7Kcb+hxRr18fT+OACFWivgp9gztCHTHdMNAK 6bE0woHeIUjahY9i4Na6qqrzWbUhb+pYraGsEaGHKcGdstzZRJH5/Rv20rTNwant22WA uGgMhy8vxb6UMGR+vy9cVnl1b5Dcp7l2qYnqE= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Received: by 10.42.90.82 with SMTP id j18mr13229473icm.64.1286388165306; Wed, 06 Oct 2010 11:02:45 -0700 (PDT) Received: by 10.42.6.130 with HTTP; Wed, 6 Oct 2010 11:02:45 -0700 (PDT) Date: Wed, 6 Oct 2010 11:02:45 -0700 Message-ID: Subject: [gentoo-user] IP aliasing problem From: Grant To: Gentoo mailing list Content-Type: text/plain; charset=ISO-8859-1 X-Archives-Salt: 1527fb4f-f7c0-4a7d-bed7-aa563f074fef X-Archives-Hash: 25282f0941aaaceb9f0d81127e6e1683 I'm trying to use a different SSL cert in apache2 for each of the two domains on my server. I don't want to use SNI or subjectAltName because of lacking browser support and I want to use port 443 for both domains. I think this means I need to use separate IP addresses for each of my domains. I have 5 usable IPs from my host and I've defined 2 of them in /etc/conf.d/net like this: config_eth0=( "1.2.3.1 netmask 255.255.255.0" "1.2.3.2 netmask 255.255.255.0" ) My apache2 config is not working as expected and I think its due to a networking problem because eth0:1 reports no RX or TX stats: # ifconfig eth0 Link encap:Ethernet HWaddr [removed] inet addr:1.2.3.1 Bcast:[removed] Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:46047 errors:0 dropped:0 overruns:0 frame:0 TX packets:65703 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:6131194 (5.8 MiB) TX bytes:82568335 (78.7 MiB) Interrupt:40 eth0:1 Link encap:Ethernet HWaddr [removed] inet addr:1.2.3.2 Bcast:[removed] Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Interrupt:40 Does anyone know how to get this working? - Grant