* how to set pppoe source mac address?
@ 2007-01-19 15:03 Joakim Tjernlund
0 siblings, 0 replies; 4+ messages in thread
From: Joakim Tjernlund @ 2007-01-19 15:03 UTC (permalink / raw)
To: netdev
I have several pppoe i/f's over one eth0 i/f and I want to set the
source mac address used by each pppoe i/f to a unique mac address from
user space.
Is this possible? If so, how do I do that?
Jocke
^ permalink raw reply [flat|nested] 4+ messages in thread
* how to set pppoe source mac address?
@ 2007-10-21 13:33 Joakim Tjernlund
2007-10-21 17:50 ` Patrick McHardy
0 siblings, 1 reply; 4+ messages in thread
From: Joakim Tjernlund @ 2007-10-21 13:33 UTC (permalink / raw)
To: netdev
I have several pppoe i/f's over one eth i/f and I want to set the
source mac address used by each pppoe i/f to a unique mac address from
user space.
Is this possible? If so, how do I do that?
Jocke
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: how to set pppoe source mac address?
2007-10-21 13:33 how to set pppoe source mac address? Joakim Tjernlund
@ 2007-10-21 17:50 ` Patrick McHardy
2007-10-21 19:05 ` Joakim Tjernlund
0 siblings, 1 reply; 4+ messages in thread
From: Patrick McHardy @ 2007-10-21 17:50 UTC (permalink / raw)
To: Joakim Tjernlund; +Cc: netdev
Joakim Tjernlund wrote:
> I have several pppoe i/f's over one eth i/f and I want to set the
> source mac address used by each pppoe i/f to a unique mac address from
> user space.
>
> Is this possible? If so, how do I do that?
Try the macvlan driver.
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: how to set pppoe source mac address?
2007-10-21 17:50 ` Patrick McHardy
@ 2007-10-21 19:05 ` Joakim Tjernlund
0 siblings, 0 replies; 4+ messages in thread
From: Joakim Tjernlund @ 2007-10-21 19:05 UTC (permalink / raw)
To: 'Patrick McHardy'; +Cc: netdev
> -----Original Message-----
> From: Patrick McHardy [mailto:kaber@trash.net]
> Sent: den 21 oktober 2007 19:51
> To: Joakim Tjernlund
> Cc: netdev@vger.kernel.org
> Subject: Re: how to set pppoe source mac address?
>
> Joakim Tjernlund wrote:
> > I have several pppoe i/f's over one eth i/f and I want to set the
> > source mac address used by each pppoe i/f to a unique mac
> address from
> > user space.
> >
> > Is this possible? If so, how do I do that?
>
>
> Try the macvlan driver.
>
Thanks, but I can't see that it will help.
I am looking for something like this that I currently have added
to pppoe_ioctl() in pppoe.c:
case PPPOEIOCSSRCMAC:
{
struct relay_source_mac smac;
err = -EBUSY;
if (sk->sk_state & (PPPOX_BOUND|PPPOX_ZOMBIE|PPPOX_DEAD))
break;
err = -ENOTCONN;
if (!(sk->sk_state & PPPOX_CONNECTED))
break;
err = -EFAULT;
if (copy_from_user(&smac, (void *) arg, sizeof(smac)))
break;
memcpy(po->srcmac, smac.srcmac, ETH_ALEN);
err = 0;
break;
}
then changed the call to hard_header in __pppoe_xmit() to
dev->hard_header(skb, dev, ETH_P_PPP_SES,
po->pppoe_pa.remote,
po->srcmac, data_len);
Would a new ioctl(PPPOEIOCSSRCMAC) to pppoe be acceptable?
Jocke
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-10-21 19:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-21 13:33 how to set pppoe source mac address? Joakim Tjernlund
2007-10-21 17:50 ` Patrick McHardy
2007-10-21 19:05 ` Joakim Tjernlund
-- strict thread matches above, loose matches on Subject: below --
2007-01-19 15:03 Joakim Tjernlund
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).