* [gentoo-user] Re: configure wlan0 route metric
2011-04-13 9:33 ` Kfir Lavi
@ 2011-04-13 10:06 ` deadeyes
2011-04-13 11:20 ` Mick
0 siblings, 1 reply; 16+ messages in thread
From: deadeyes @ 2011-04-13 10:06 UTC (permalink / raw
To: gentoo-user
Kfir Lavi <lavi.kfir <at> gmail.com> writes:
> Hi,you can use net-analyzer/ifmetric.I found this solution not satisfying, but
> don't remember why. I guess some corner cases. I have bonded the interfaces on
> my laptop. The bonding driver will prefer using the wired when
>
> it is connected. Here is my /etc/conf.d/net:# eth0config_eth0=( "null" )#
> wlanmodules=( "wpa_supplicant" )wpa_supplicant_wlan0="-Dwext"config_wlan0=(
> "null" )
>
> modules_wlan0=( "!plug" )ifplugd_wlan0="--api-mode=wlan"#
> bondslaves_bond0="eth0 wlan0"dhcpcd_bond0="--noipv4ll --nolink -t
> 15"config_bond0=( "dhcp" )Regards,Kfir
>
Thanks for your response!
Bonding doesn't seem a good solution for me.
I can't find documentation on ifmetric.
Do I need ifplugd to call ifmetric? or can I configure this in /etc/conf.d/net?
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
2011-04-13 10:06 ` [gentoo-user] " deadeyes
@ 2011-04-13 11:20 ` Mick
2011-04-13 11:40 ` deadeyes
0 siblings, 1 reply; 16+ messages in thread
From: Mick @ 2011-04-13 11:20 UTC (permalink / raw
To: gentoo-user
On 13 April 2011 11:06, deadeyes <gvm999@gmail.com> wrote:
> Thanks for your response!
> Bonding doesn't seem a good solution for me.
> I can't find documentation on ifmetric.
> Do I need ifplugd to call ifmetric? or can I configure this in /etc/conf.d/net?
You can define the priority in your /etc/conf.d/net
You can set this per wired/wireless interface; e.g.
metric_eth0="100"
Look at your /etc/conf.d/net.example for more details.
HTH.
--
Regards,
Mick
^ permalink raw reply [flat|nested] 16+ messages in thread
* [gentoo-user] Re: configure wlan0 route metric
2011-04-13 11:20 ` Mick
@ 2011-04-13 11:40 ` deadeyes
2011-04-14 8:13 ` deadeyes
0 siblings, 1 reply; 16+ messages in thread
From: deadeyes @ 2011-04-13 11:40 UTC (permalink / raw
To: gentoo-user
Mick <michaelkintzios <at> gmail.com> writes:
>
> You can define the priority in your /etc/conf.d/net
>
> You can set this per wired/wireless interface; e.g.
>
> metric_eth0="100"
>
> Look at your /etc/conf.d/net.example for more details.
>
> HTH.
No offense, I had found out about this option (and tried it already):
"I found out I can modify the metric for the default route using metric_wlan0."
This however only changes the default route. Not the route for the local network
route.
Also metric_eth0 would give less priority to my wired network, which is not what
I want.
I was searching around the gentoo forums for ifmetric and found this piece of
code that can be added in /etc/conf.d/net:
postup() {
local metric=0
case "${IFACE}" in
eth0) metric=0 ;;
eth1) metric=1 ;;
esac
ifmetric "${IFACE}" "${metric}"
return 0
}
I'll try as soon as I can and add my experience with this.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
[not found] ` <gH6K6-2j1-11@gated-at.bofh.it>
@ 2011-04-13 15:35 ` Indi
2011-04-13 16:03 ` Mick
[not found] ` <gHpWp-7Ds-3@gated-at.bofh.it>
1 sibling, 1 reply; 16+ messages in thread
From: Indi @ 2011-04-13 15:35 UTC (permalink / raw
To: gentoo-user
On Wed, Apr 13, 2011 at 01:50:02PM +0200, deadeyes wrote:
>
> I was searching around the gentoo forums for ifmetric and found this piece of
> code that can be added in /etc/conf.d/net:
> postup() {
> local metric=0
>
> case "${IFACE}" in
> eth0) metric=0 ;;
> eth1) metric=1 ;;
> esac
> ifmetric "${IFACE}" "${metric}"
>
> return 0
> }
>
Hey, that works very well here -- thanks!
Been wanting that solution for some time now.
:)
--
/\ /\
<\ />
^ caveat utilitor
'v-v'
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
2011-04-13 15:35 ` Indi
@ 2011-04-13 16:03 ` Mick
2011-04-13 19:52 ` deadeyes
0 siblings, 1 reply; 16+ messages in thread
From: Mick @ 2011-04-13 16:03 UTC (permalink / raw
To: gentoo-user
On 13 April 2011 16:35, Indi <thebeelzebubtrigger@gmail.com> wrote:
> On Wed, Apr 13, 2011 at 01:50:02PM +0200, deadeyes wrote:
>>
>> I was searching around the gentoo forums for ifmetric and found this piece of
>> code that can be added in /etc/conf.d/net:
>> postup() {
>> local metric=0
>>
>> case "${IFACE}" in
>> eth0) metric=0 ;;
>> eth1) metric=1 ;;
>> esac
>> ifmetric "${IFACE}" "${metric}"
>>
>> return 0
>> }
>>
>
> Hey, that works very well here -- thanks!
> Been wanting that solution for some time now.
> :)
My apologies! It took some time between reading your message and
replying to it - by which time I had forgotten the finer points.
Whether you set NIC priority in the /etc/conf.d/net file or in a post
up script, the result is the same. One NIC will have a higher
priority than another for ALL connections. This is because NICs do
not do NATing. They will send all packets out to the gateway
(192.168.1.1) and the router at the gateway will determine which
packet is forwarded to the Internet and which to the LAN. So, if you
do not want to prioritise one NIC over another, it may be better to
use iptables to route LAN packets via a particular NIC instead.
--
Regards,
Mick
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
[not found] ` <gHaNL-12f-85@gated-at.bofh.it>
@ 2011-04-13 17:07 ` Indi
2011-04-13 18:56 ` Mick
0 siblings, 1 reply; 16+ messages in thread
From: Indi @ 2011-04-13 17:07 UTC (permalink / raw
To: gentoo-user
On Wed, Apr 13, 2011 at 06:10:05PM +0200, Mick wrote:
> On 13 April 2011 16:35, Indi <thebeelzebubtrigger@gmail.com> wrote:
> > On Wed, Apr 13, 2011 at 01:50:02PM +0200, deadeyes wrote:
> >>
> >> I was searching around the gentoo forums for ifmetric and found this piece of
> >> code that can be added in /etc/conf.d/net:
> >> postup() {
> >> local metric=0
> >>
> >> case "${IFACE}" in
> >> eth0) metric=0 ;;
> >> eth1) metric=1 ;;
> >> esac
> >> ifmetric "${IFACE}" "${metric}"
> >>
> >> return 0
> >> }
> >>
> >
> > Hey, that works very well here -- thanks!
> > Been wanting that solution for some time now.
> > :)
>
> My apologies! It took some time between reading your message and
> replying to it - by which time I had forgotten the finer points.
>
> Whether you set NIC priority in the /etc/conf.d/net file or in a post
> up script, the result is the same. One NIC will have a higher
> priority than another for ALL connections. This is because NICs do
> not do NATing. They will send all packets out to the gateway
> (192.168.1.1) and the router at the gateway will determine which
> packet is forwarded to the Internet and which to the LAN. So, if you
> do not want to prioritise one NIC over another, it may be better to
> use iptables to route LAN packets via a particular NIC instead.
>
> --
> Regards,
> Mick
Actually I do want to prioritise one over the other, when both are
connected. Using netplug with one wired and one wireless, and the
referenced script in /etc/conf.d/net.
Am I doing it wrong? :)
--
/\ /\
<\ />
^ caveat utilitor
'v-v'
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
2011-04-13 17:07 ` Indi
@ 2011-04-13 18:56 ` Mick
0 siblings, 0 replies; 16+ messages in thread
From: Mick @ 2011-04-13 18:56 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: Text/Plain, Size: 1860 bytes --]
On Wednesday 13 April 2011 18:07:30 Indi wrote:
> On Wed, Apr 13, 2011 at 06:10:05PM +0200, Mick wrote:
> > On 13 April 2011 16:35, Indi <thebeelzebubtrigger@gmail.com> wrote:
> > > On Wed, Apr 13, 2011 at 01:50:02PM +0200, deadeyes wrote:
> > >> I was searching around the gentoo forums for ifmetric and found this
> > >> piece of code that can be added in /etc/conf.d/net:
> > >> postup() {
> > >> local metric=0
> > >>
> > >> case "${IFACE}" in
> > >> eth0) metric=0 ;;
> > >> eth1) metric=1 ;;
> > >> esac
> > >> ifmetric "${IFACE}" "${metric}"
> > >>
> > >> return 0
> > >> }
> > >
> > > Hey, that works very well here -- thanks!
> > > Been wanting that solution for some time now.
> > >
> > > :)
> >
> > My apologies! It took some time between reading your message and
> > replying to it - by which time I had forgotten the finer points.
> >
> > Whether you set NIC priority in the /etc/conf.d/net file or in a post
> > up script, the result is the same. One NIC will have a higher
> > priority than another for ALL connections. This is because NICs do
> > not do NATing. They will send all packets out to the gateway
> > (192.168.1.1) and the router at the gateway will determine which
> > packet is forwarded to the Internet and which to the LAN. So, if you
> > do not want to prioritise one NIC over another, it may be better to
> > use iptables to route LAN packets via a particular NIC instead.
>
> Actually I do want to prioritise one over the other, when both are
> connected. Using netplug with one wired and one wireless, and the
> referenced script in /etc/conf.d/net.
>
> Am I doing it wrong? :)
No, not at all. It's only that the OP wanted to prioritise the wired
interface against the wireless, but *only* for connections to the LAN.
--
Regards,
Mick
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
[not found] ` <gHdBT-5Tb-3@gated-at.bofh.it>
@ 2011-04-13 19:27 ` Indi
0 siblings, 0 replies; 16+ messages in thread
From: Indi @ 2011-04-13 19:27 UTC (permalink / raw
To: gentoo-user
On Wed, Apr 13, 2011 at 09:10:01PM +0200, Mick wrote:
> On Wednesday 13 April 2011 18:07:30 Indi wrote:
> > On Wed, Apr 13, 2011 at 06:10:05PM +0200, Mick wrote:
> > > On 13 April 2011 16:35, Indi <thebeelzebubtrigger@gmail.com> wrote:
> > > > On Wed, Apr 13, 2011 at 01:50:02PM +0200, deadeyes wrote:
> > > >> I was searching around the gentoo forums for ifmetric and found this
> > > >> piece of code that can be added in /etc/conf.d/net:
> > > >> postup() {
> > > >> local metric=0
> > > >>
> > > >> case "${IFACE}" in
> > > >> eth0) metric=0 ;;
> > > >> eth1) metric=1 ;;
> > > >> esac
> > > >> ifmetric "${IFACE}" "${metric}"
> > > >>
> > > >> return 0
> > > >> }
> > > >
> > > > Hey, that works very well here -- thanks!
> > > > Been wanting that solution for some time now.
> > > >
> > > > :)
> > >
> > > My apologies! It took some time between reading your message and
> > > replying to it - by which time I had forgotten the finer points.
> > >
> > > Whether you set NIC priority in the /etc/conf.d/net file or in a post
> > > up script, the result is the same. One NIC will have a higher
> > > priority than another for ALL connections. This is because NICs do
> > > not do NATing. They will send all packets out to the gateway
> > > (192.168.1.1) and the router at the gateway will determine which
> > > packet is forwarded to the Internet and which to the LAN. So, if you
> > > do not want to prioritise one NIC over another, it may be better to
> > > use iptables to route LAN packets via a particular NIC instead.
> >
> > Actually I do want to prioritise one over the other, when both are
> > connected. Using netplug with one wired and one wireless, and the
> > referenced script in /etc/conf.d/net.
> >
> > Am I doing it wrong? :)
>
> No, not at all. It's only that the OP wanted to prioritise the wired
> interface against the wireless, but *only* for connections to the LAN.
> --
> Regards,
> Mick
Ah, sorry I missed that part. It does seem to do just I wanted though.
--
/\ /\
<\ />
^ caveat utilitor
'v-v'
^ permalink raw reply [flat|nested] 16+ messages in thread
* [gentoo-user] Re: configure wlan0 route metric
2011-04-13 16:03 ` Mick
@ 2011-04-13 19:52 ` deadeyes
2011-04-14 9:50 ` Mick
0 siblings, 1 reply; 16+ messages in thread
From: deadeyes @ 2011-04-13 19:52 UTC (permalink / raw
To: gentoo-user
Mick <michaelkintzios <at> gmail.com> writes:
> >
> > Hey, that works very well here -- thanks!
> > Been wanting that solution for some time now.
> > :)
>
> My apologies! It took some time between reading your message and
> replying to it - by which time I had forgotten the finer points.
>
> Whether you set NIC priority in the /etc/conf.d/net file or in a post
> up script, the result is the same. One NIC will have a higher
> priority than another for ALL connections. This is because NICs do
> not do NATing. They will send all packets out to the gateway
> (192.168.1.1) and the router at the gateway will determine which
> packet is forwarded to the Internet and which to the LAN. So, if you
> do not want to prioritise one NIC over another, it may be better to
> use iptables to route LAN packets via a particular NIC instead.
>
Great to see this helps someone else as well :)
@Mick: I am not sure if I fully understand what you mean. Following the routing
table the most specific route will be used, which is not the default route, but
the route to the local lan. In this case the metric is important as there are
multiple interfaces with the same network.
And what do you mean by setting NIC priority (using the metric_eth0 config
option?) using /etc/conf.d/net or in a post script? Both have different outcomes
it looks to me.
Greetings
^ permalink raw reply [flat|nested] 16+ messages in thread
* [gentoo-user] Re: configure wlan0 route metric
2011-04-13 11:40 ` deadeyes
@ 2011-04-14 8:13 ` deadeyes
2011-04-14 9:53 ` Mick
0 siblings, 1 reply; 16+ messages in thread
From: deadeyes @ 2011-04-14 8:13 UTC (permalink / raw
To: gentoo-user
deadeyes <gvm999 <at> gmail.com> writes:
code that can be added in /etc/conf.d/net:
postup() {
local metric=0
case "${IFACE}" in
eth0) metric=0 ;;
eth1) metric=1 ;;
esac
ifmetric "${IFACE}" "${metric}"
return 0
}
Seems like this works for me as well! :)
Thanks for your responses guys
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
2011-04-13 19:52 ` deadeyes
@ 2011-04-14 9:50 ` Mick
0 siblings, 0 replies; 16+ messages in thread
From: Mick @ 2011-04-14 9:50 UTC (permalink / raw
To: gentoo-user
On 13 April 2011 20:52, deadeyes <gvm999@gmail.com> wrote:
> Mick <michaelkintzios <at> gmail.com> writes:
>> Whether you set NIC priority in the /etc/conf.d/net file or in a post
>> up script, the result is the same. One NIC will have a higher
>> priority than another for ALL connections. This is because NICs do
>> not do NATing. They will send all packets out to the gateway
>> (192.168.1.1) and the router at the gateway will determine which
>> packet is forwarded to the Internet and which to the LAN. So, if you
>> do not want to prioritise one NIC over another, it may be better to
>> use iptables to route LAN packets via a particular NIC instead.
>>
>
> Great to see this helps someone else as well :)
>
> @Mick: I am not sure if I fully understand what you mean. Following the routing
> table the most specific route will be used, which is not the default route, but
> the route to the local lan.
*All* routes have to go through the local LAN. That's where you router is.
Both NICs are in the same subnet (192.168.1.0/24) and use the same
gateway (192.168.1.1). Therefore, the only thing that determines
which NIC your packets will go out of is the NIC's metric setting.
In your first email you show eth0 with a higher priority than wlan0.
All connections will go out eth0, unless eth0 goes down for some
reason, or becomes saturated.
> In this case the metric is important as there are
> multiple interfaces with the same network.
> And what do you mean by setting NIC priority (using the metric_eth0 config
> option?) using /etc/conf.d/net or in a post script? Both have different outcomes
> it looks to me.
Both have the same outcome - set priority for your eth0 and wlan0 NICs,
use the same file - /etc/conf.d/net
and set up the same parameter - metric.
The post up script also sets the lo interface to 0 which is the
default anyway. Unless I misunderstand the file's nomenclature local
stands for Local Loopback (127.0.0.1/255.0.0.0) and by default has
higher priority.
Anyway, that's how I understand this, no doubt some networking guru
will correct me if I got it wrong.
--
Regards,
Mick
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
2011-04-14 8:13 ` deadeyes
@ 2011-04-14 9:53 ` Mick
2011-04-14 20:22 ` deadeyes
0 siblings, 1 reply; 16+ messages in thread
From: Mick @ 2011-04-14 9:53 UTC (permalink / raw
To: gentoo-user
On 14 April 2011 09:13, deadeyes <gvm999@gmail.com> wrote:
> deadeyes <gvm999 <at> gmail.com> writes:
>
> code that can be added in /etc/conf.d/net:
> postup() {
> local metric=0
>
> case "${IFACE}" in
> eth0) metric=0 ;;
> eth1) metric=1 ;;
> esac
> ifmetric "${IFACE}" "${metric}"
>
> return 0
> }
>
> Seems like this works for me as well! :)
It does? I assume that eth1 above is wlan0 in your case.
If you restart both eth0 and wlan0 so as to zero the packet counters,
then start a download/upload from your a machine in your LAN, what
packet counts do you get in ifconfig for each NIC?
--
Regards,
Mick
^ permalink raw reply [flat|nested] 16+ messages in thread
* [gentoo-user] Re: configure wlan0 route metric
2011-04-14 9:53 ` Mick
@ 2011-04-14 20:22 ` deadeyes
0 siblings, 0 replies; 16+ messages in thread
From: deadeyes @ 2011-04-14 20:22 UTC (permalink / raw
To: gentoo-user
Mick <michaelkintzios <at> gmail.com> writes:
>
> It does? I assume that eth1 above is wlan0 in your case.
>
Yes indeed :) it is wlan0.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
[not found] ` <gHrvc-1HW-15@gated-at.bofh.it>
@ 2011-04-14 22:25 ` Indi
0 siblings, 0 replies; 16+ messages in thread
From: Indi @ 2011-04-14 22:25 UTC (permalink / raw
To: gentoo-user
On Thu, Apr 14, 2011 at 12:00:02PM +0200, Mick wrote:
> On 14 April 2011 09:13, deadeyes <gvm999@gmail.com> wrote:
> > deadeyes <gvm999 <at> gmail.com> writes:
> >
> > code that can be added in /etc/conf.d/net:
> > postup() {
> > local metric=0
> >
> > case "${IFACE}" in
> > eth0) metric=0 ;;
> > eth1) metric=1 ;;
> > esac
> > ifmetric "${IFACE}" "${metric}"
> >
> > return 0
> > }
> >
> > Seems like this works for me as well! :)
>
> It does? I assume that eth1 above is wlan0 in your case.
>
On my thinkpad the wireless is eth0, wired is eth1.
Not sure why, but I've had a few machines that work that way.
--
/\ /\
<\ />
^ caveat utilitor
'v-v'
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
[not found] ` <gHDd0-5d8-23@gated-at.bofh.it>
@ 2011-04-15 2:06 ` Indi
2011-04-15 5:08 ` Mick
0 siblings, 1 reply; 16+ messages in thread
From: Indi @ 2011-04-15 2:06 UTC (permalink / raw
To: gentoo-user
On Fri, Apr 15, 2011 at 12:30:02AM +0200, Indi wrote:
> On Thu, Apr 14, 2011 at 12:00:02PM +0200, Mick wrote:
> > On 14 April 2011 09:13, deadeyes <gvm999@gmail.com> wrote:
> > > deadeyes <gvm999 <at> gmail.com> writes:
> > >
> > > code that can be added in /etc/conf.d/net:
> > > postup() {
> > > local metric=0
> > >
> > > case "${IFACE}" in
> > > eth0) metric=0 ;;
> > > eth1) metric=1 ;;
> > > esac
> > > ifmetric "${IFACE}" "${metric}"
> > >
> > > return 0
> > > }
> > >
> > > Seems like this works for me as well! :)
> >
> > It does? I assume that eth1 above is wlan0 in your case.
> >
>
> On my thinkpad the wireless is eth0, wired is eth1.
Oh, I got that backwards, sorry -- wireless is eth1.
:)
--
/\ /\
<\ />
^ caveat utilitor
'v-v'
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] Re: configure wlan0 route metric
2011-04-15 2:06 ` Indi
@ 2011-04-15 5:08 ` Mick
0 siblings, 0 replies; 16+ messages in thread
From: Mick @ 2011-04-15 5:08 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: Text/Plain, Size: 968 bytes --]
On Friday 15 April 2011 03:06:57 Indi wrote:
> On Fri, Apr 15, 2011 at 12:30:02AM +0200, Indi wrote:
> > On Thu, Apr 14, 2011 at 12:00:02PM +0200, Mick wrote:
> > > On 14 April 2011 09:13, deadeyes <gvm999@gmail.com> wrote:
> > > > deadeyes <gvm999 <at> gmail.com> writes:
> > > >
> > > > code that can be added in /etc/conf.d/net:
> > > > postup() {
> > > > local metric=0
> > > >
> > > > case "${IFACE}" in
> > > > eth0) metric=0 ;;
> > > > eth1) metric=1 ;;
> > > > esac
> > > > ifmetric "${IFACE}" "${metric}"
> > > >
> > > > return 0
> > > > }
> > > >
> > > > Seems like this works for me as well! :)
> > >
> > > It does? I assume that eth1 above is wlan0 in your case.
> >
> > On my thinkpad the wireless is eth0, wired is eth1.
>
> Oh, I got that backwards, sorry -- wireless is eth1.
Different drivers name the wireless interface using different names (eth1,
wlan0, ath0, etc.)
--
Regards,
Mick
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2011-04-15 5:10 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <gHbTt-2Ui-33@gated-at.bofh.it>
[not found] ` <gHbTt-2Ui-45@gated-at.bofh.it>
[not found] ` <gHbTt-2Ui-31@gated-at.bofh.it>
[not found] ` <gHdBT-5Tb-3@gated-at.bofh.it>
2011-04-13 19:27 ` [gentoo-user] Re: configure wlan0 route metric Indi
[not found] <gHakF-8vF-15@gated-at.bofh.it>
[not found] ` <gHakF-8vF-17@gated-at.bofh.it>
[not found] ` <gHakG-8vF-19@gated-at.bofh.it>
[not found] ` <gHakG-8vF-21@gated-at.bofh.it>
[not found] ` <gHakG-8vF-23@gated-at.bofh.it>
[not found] ` <gHakF-8vF-13@gated-at.bofh.it>
[not found] ` <gHaNL-12f-85@gated-at.bofh.it>
2011-04-13 17:07 ` Indi
2011-04-13 18:56 ` Mick
[not found] ` <gHDd0-5d8-25@gated-at.bofh.it>
[not found] ` <gHDd0-5d8-27@gated-at.bofh.it>
[not found] ` <gHDd0-5d8-23@gated-at.bofh.it>
2011-04-15 2:06 ` Indi
2011-04-15 5:08 ` Mick
[not found] <gGTjR-4Xq-33@gated-at.bofh.it>
[not found] ` <gH4Ii-7li-33@gated-at.bofh.it>
[not found] ` <gH5kZ-8uC-5@gated-at.bofh.it>
[not found] ` <gH6qK-1Rf-19@gated-at.bofh.it>
[not found] ` <gH6K6-2j1-11@gated-at.bofh.it>
2011-04-13 15:35 ` Indi
2011-04-13 16:03 ` Mick
2011-04-13 19:52 ` deadeyes
2011-04-14 9:50 ` Mick
[not found] ` <gHpWp-7Ds-3@gated-at.bofh.it>
[not found] ` <gHrvc-1HW-15@gated-at.bofh.it>
2011-04-14 22:25 ` Indi
2011-04-12 21:14 [gentoo-user] " deadeyes
2011-04-13 9:33 ` Kfir Lavi
2011-04-13 10:06 ` [gentoo-user] " deadeyes
2011-04-13 11:20 ` Mick
2011-04-13 11:40 ` deadeyes
2011-04-14 8:13 ` deadeyes
2011-04-14 9:53 ` Mick
2011-04-14 20:22 ` deadeyes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox